Archive for 1 月, 2012

Linux建立Swap分区文件并自动mount

目的:建立一个2G大小的swap分区,并在系统启动时自动mount。
系统环境:RedHat53

1. dd if=/dev/zero of=/swapfile bs=1k count=2048000
2. mkswap /swapfile
3. swapon /swapfile
4. 修改/etc/fstab使其启动时自动mount:
在/etc/fstab中增加如下语句:
/swapfile                             swap                                        swap        defaults                0 0
5. 搞定!

评论

kloxo更新后出现:Starting httpd: Syntax error on line 12 of /home/apache/conf/defaults/_default.conf

Starting httpd: Syntax error on line 12 of /home/apache/conf/defaults/_default.conf:
UserDir “enable” keyword requires a list of usernames

修改

/usr/local/lxlabs/kloxo/httpdocs/lib/domain/web/driver/web__apachelib.php

文件中,把所有

$string .= “\t\tUserDir enabled\n”

改成

$string .= “\t\tUserDir enabled *\n”

运行:

/script/fixweb

service httpd restart

评论