1.为LILO增加开机口令
在/etc/lilo.conf文件中增加选项,从而使LILO启动时要求输入口令,以加强系统的安全性。具体设置如下:
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
time-out=60 #等待1分钟
prompt
default=linux
password=
#口令设置
image=/boot/vmlinuz-2.2.14-12
label=linux
initrd=/boot/initrd-2.2.14-12.img
root=/dev/hda6
read-only
此时需注意,由于在LILO中口令是以明码方式存放的,所以还需要将
lilo.conf的文件属性设置为只有root可以读写。
# chmod 600 /etc/lilo.conf
当然,还需要进行如下设置,使
lilo.conf的修改生...[ 查看全文 ]