1.
linux有7种运行级别,0-6,最常用的为1 3 5
0关机
1为单用户
2为无网无图
3有网无图
4保留
5 有网有图
6重启
vim /etc/inittab
图1
2.控制引导
vim /boot/grub/grub.conf
default=0 默认第一个内核
timeout=5 倒计时5秒 -1为永久等待
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux (2.6.32-71.el6.x86_64)
root (hd0,0)
kernel /vmlinuz-2.6.32-71.el6.x86_64 ro root=/dev/mapper/vgsrv-root rd_LVM_LV=vgsrv/root rd_LVM_LV=vgsrv/swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto rhgb quiet
initrd /initramfs-2.6.32-71.el6.x86_64.img
3.grub加密
[root@desktop12 Desktop]# grub-md5-crypt
Password:
Retype password:
$1$xGQK01$3X9yepRobN6kyDZZ4S4eP1
复制加密的密码到
password --md5 $1$FSUEU/$uhUUc8USBK5QAXc.BfW4m.
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux (2.6.32-71.el6.x86_64)
root (hd0,0)
kernel /vmlinuz-2.6.32-71.el6.x86_64 ro root=/dev/mapper/vol0-root rd_LVM_LV=vol0/root rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto rhgb quiet
initrd /initramfs-2.6.32-71.el6.x86_64.img
title Re-install Red Hat Enterprise Linux
root (hd0,0)
kernel /vmlinuz-anaconda ks= ksdevice=eth0 noipv6
initrd /initrd-anaconda.img
title Wipe out workstation
root (hd0,0)
kernel /vmlinuz-anaconda ks= ksdevice=eth0 noipv6
initrd /initrd-anaconda.img
password --md5 $1$FSUEU/$uhUUc8USBK5QAXc.BfW4m.
加在不同的地方有不同的效果
4.
yum install rdesktop -y 远程链接左面
yum install evince -y
yum install emacs -y
yum install gpm -y 文本界面鼠标取得,左键为拉黑为复制,右键为粘贴
安装linux自带的PDF阅读器
cat /etc/issue 查看当前系统的版本
serverU win
ln -s /var/ftp/pub . 创建链接到本目录
yum install system-config-firewall -y
rpm -q httpd 查看httpd的包是否安装
5.查看selinux安全上下文
[root@server12 html]# ll -Z
-rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 index.html
lrwxrwxrwx. root root unconfined_u:object_r:httpd_sys_content_t:s0 pub -> /var/ftp/pub
policycoreutils-gui是selinux的GUI管理界面
/etc/vsftpd/vsftpd.conf为FTP的位置文件
lftp -u ccc 1.1.1.1 以用户ccc登录FTP1.1.1.1
yum install gedit -y安装编辑器
nano也可以编辑文件
dd if=/dev/zero of=/dev/vdb1 破坏掉分区重启
在开机自动挂载里改成1,2
系统会提示输入root密码 输入后会得到一个BASH
这是文件系统是只读的,不能创建东西,需要
mount -o remount,rw /
进去之后将自动挂载的那行删掉
然后就可以进来
阅读(1255) | 评论(0) | 转发(0) |