修改LILO
如果使用LILO引导开机,那么需要照下面的格式修改/etc/lilo.conf:
# vi /etc/lilo.conf prompt timeout=50 boot=/dev/hda map=/boot/map install=/boot/boot.b linear image=/boot/vmlinuz-2.4.7-10 label=linux root=/dev/hda5 read-only image=/boot/vmlinuz-2.4.21-lvs label=lvs root=/dev/hda5 read-only #添加以上这一段 other=/dev/hda1 label=win table=/dev/had # 结束编辑退出 # lilo //重新运行LILO生效
如果是用GRUB引导,需要设定好/boot/grub.conf
default=1 timeout=10 splashimage=(hd0,0)/boot/grub/splash.xpm.gz title Linux (2.4.7-10) root (hd0,0) kernel /boot/vmlinuz-2.4.7-10 ro root=LABEL=/initrd /boot/initrd-2.4.7-10.img title LVS (2.4.21-lvs) root (hd0,0) kernel /boot/vmlinuz-2.4.21-lvs ro root=LABEL=/initrd /boot/initrd-2.4.21-lvs.img title Windows map (hd0) (hd1) map (hd1) (hd0) root (hd1,0) chainloader (hd1,0)+1 makeactive boot
重新开机,选择LVS内核启动机器,查看开机过程有无错误发生,然后检查 /proc/sys/net/ipv4/conf/all/hidden是否存在。如果不存在,说明编译中有问题,建议用户重新再编译。如果一切顺利,那么可以安装ipvsadm的二进制软件包。安装后可以用下面的命令检验,如果出现以下提示,说明安装成功:
# ipvsadm // IPVS的管理软件 IP Virtual Server version 1.0.9 (size=4096) Prot LocalAddress:Port Scheduler Flags -> RemoteAddress:Port Forward Weight ActiveConn InActConn
(参考链接: http://linux.ccidnet.com/art/741/20070108/995957_1.html)
|