第十二周 1、简述linux操作系统启动流程
centos6之前
1.bios通电自检(POST)
2.加载bios的硬件设备,获取第一个启动设备
3.读取MBR的引导加载程序(grub)的启动信息
4.加载核心操作系统的核心信息,核心开始解压缩,并尝试驱动所有的硬件设备
5.核心执行init程序,并获取默认的运行信息
6.init程序执行/etc/rc.d/rc.sysinit文件,重新挂载根文件系统
7.启动核心的外挂模块
8.init执行运行的各个批处理文件
9.init执行/etc/rc.d/rc.local文件
10.执行/bin/login程序,等待用户登录
11.登录之后开始以shell控制主机
centos7之后
1. UEFi或BIOS初始化,运行POST开机自检
2. 选择启动设备
3. 引导装载程序, centos7是grub2,加载装载程序的配置文件:
/etc/grub.d/
/etc/default/grub
/boot/grub2/grub.cfg
4. 加载initramfs驱动模块
5. 加载内核选项
6. 内核初始化,centos7使用systemd代替init
7. 执行initrd.target所有单元,包括挂载/etc/fstab
8. 从initramfs根文件系统切换到磁盘根目录
9. systemd执行默认target配置,配置文件/etc/systemd/system/default.target
10. systemd执行sysinit.target初始化系统及basic.target准备操作系统
11. systemd启动multi-user.target下的本机与服务器服务
12. systemd执行multi-user.target下的/etc/rc.d/rc.local
13. Systemd执行multi-user.target下的getty.target及登录服务
14. systemd执行graphical需要的服务
2、制作一个只运行shell的linux系统
1.创建分区
[root@localhost ~]#fdisk /dev/sdc
[root@localhost ~]#mkfs.ext4 /dev/sdc1
[root@localhost ~]#mkfs.ext4 /dev/sdc2
2.挂载BOOT
[root@localhost ~]# mkdir /mnt/boot
[root@localhost ~]# mount /dev/sdc1 /mnt/boot
3.安装grub
[root@localhost ~]# grub-install --root-directory=/mnt/ /dev/sdc
4.准备内核和initramfs文件
[root@localhost ~]# cp /boot/vmlinuz-2.6.32-754.el6.x86_64 /mnt/boot/vmlinuz
[root@localhost ~]# cp /boot/initramfs-2.6.32-754.el6.x86_64.img
/mnt/boot/initramfs.img
建立grub.conf
[root@localhost ~]# vim /mnt/boot/grub/grub.cfg
default=0
timeout=6
title bash linux
root (hd0,0)
kernel /vmlinuz root=/dev/sda2 selinux=0 init=/bin/bash
initrd /initramfs.img
5.准备相关程序和库
[root@localhost ~]# mkdir /mnt/sysroot
[root@localhost ~]# mount /dev/sdc2 /mnt/sysroot/
[root@localhost ~]# mkdir -pv /mnt/sysroot/{boot,dev,sys,proc,etc,lib,lib64,bin,sbin,tmp,var,usr,opt,home,root
[root@localhost ~]# ethtool -i ens192
[root@localhost ~]# modinfo -n e1000
/lib/modules/2.6.32-754.el6.x86_64/kernel/drivers/net/e1000/e1000.ko
[root@localhost ~]# cp /lib/modules/2.6.32-
754.el6.x86_64/kernel/drivers/net/e1000/e1000.ko /mnt/sysroot/lib/
[root@localhost ~]# chroot /mnt/sysroot
6.准备新的虚拟机,将vmdk文件拷过去启动即可
3、总结systemctl管理命令及system unit文件格式
systemctl命令
systemctl command name。service
command包括start,stop,restart,status,enable,disable等
例如:
systemctl start network 开启网络服务
systemctl enable network 网络服务开机自启
system unit
system unit文件是服务所用文件,一般用于服务开机自启
一般包含三部分 [unit],[service],[install]
[init]
定义与unit类型无关的通用选项;提供unit的描述信息,unit行为及依赖关系等;常用选项:description(描述信息),after(定义启动次序)
[service]
与特定类型相关的专用选项;此处为service类型。常用选项:type(定义影响ExecStart及相关参数的功能的unit进程启动类型
)
[install]
定义由“systemctl enable”以及“systemctl disable”命令在实现服务启用或禁用时用到的一些选项。常用选项:alias(别名)
范例:
[root@localhost ~]# cat /usr/lib/systemd/system/sshd.service
[Unit]
Description=OpenSSH server daemon
Documentation=man:sshd(8) man:sshd_config(5)
After=network.target sshd-keygen.service
Wants=sshd-keygen.service
[Service]
Type=notify
EnvironmentFile=/etc/sysconfig/sshd
ExecStart=/usr/sbin/sshd -D $OPTIONS
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure
RestartSec=42s
[Install]
WantedBy=multi-user.target
4、破解centos7 密码
救援模式下破解root密码
1.启动时按任意键暂停启动
2.按e键进入编辑模式
3.将光标移至linux开始的行,添加内核参数rd.break
4.按crtl+x 启动
5.输入
mount -o remount,rw /sysroot
chroot /sysroot
passwd root
exit
reboot
单用户下破解root密码
1.启动时按任意键暂停启动
2.按e键进入编辑模式
3.将光标移至linux开始的行,改为rw init=/sysroot/bin/sh
4.按crtl+x启动
5.输入
chroot /sysroot
passwd root
exit
reboot