博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux为启动菜单加密码
阅读量:6438 次
发布时间:2019-06-23

本文共 1621 字,大约阅读时间需要 5 分钟。

  hot3.png

为启动加密码:
grub-md5-crypt
Password:     <==输入密码
Retype password:     <==再输入一次
$1$6kWUD1$AIZWzT3Ye6CAF0aYceWxr1
复制这个MD5密码
 
vim /boot/grub/menu.lst
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
#          initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.18-164.el5)
       
password --md5 $1$6kWUD1$AIZWzT3Ye6CAF0aYceWxr1
        root (hd0,0)
        kernel /vmlinuz-2.6.18-164.el5 ro root=/dev/VolGroup00/LogVol00 rhgb qui
et
        initrd /initrd-2.6.18-164.el5.img
 
说明:此项功能还是可以破解的,因为用户可以通过编辑模式(e)进入菜单,按(d)删除密码字段并按下b就能通过启动流程
 
这样可以避免:
vim /boot/grub/menu.lst
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
#          initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
password --md5 $1$6kWUD1$AIZWzT3Ye6CAF0aYceWxr1
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.18-164.el5)
       
 
        password --md5 $1$6kWUD1$AIZWzT3Ye6CAF0aYceWxr1
        root (hd0,0)
        kernel /vmlinuz-2.6.18-164.el5 ro root=/dev/VolGroup00/LogVol00 rhgb qui
et
        initrd /initrd-2.6.18-164.el5.img
 
这个实验可以避免你的menu.lst在启动过程中被改乱

转载于:https://my.oschina.net/f91jty/blog/168364

你可能感兴趣的文章
MalformedObjectNameException: Invalid character '' in value part of property
查看>>
Hadoop格式化HDFS报错java.net.UnknownHostException: localhost.localdomain: localhost.localdomain
查看>>
android 40 Io编程
查看>>
编译器错误消息: CS0234: 命名空间“Purple”中不存在类型或命名空间名称“Model”(是否缺少程序集引用?)...
查看>>
天津政府应急系统之GIS一张图(arcgis api for flex)讲解(五)地图切换以及图层显示模块...
查看>>
STL之Vector(不定长数组)
查看>>
Python下科学计算包numpy和SciPy的安装【原创】
查看>>
I.MX6 android 设置 默认 动态桌面
查看>>
工作流数据库表设计-ASP.NET
查看>>
了解这23种设计模式
查看>>
linux程序调试命令strace
查看>>
代码中使用StoryBoard和DoubleAnimation的方法
查看>>
数据结构 线性表链式队列
查看>>
无法使用内置管理员账户打开Microsoft Edge
查看>>
EasyUI DataGrid编辑单元格时使用combogrid
查看>>
python oracle使用心得
查看>>
准备着手学习python
查看>>
OOP几大原则【转】
查看>>
ExtJs--09--javascript对象的方法的3种写法 prototype通过原型设置方法效率最好
查看>>
磁盘镜像工具Guymager
查看>>