第九周技术作业

1、编写脚本,接受二个位置参数,magedu和/www,判断系统是否有magedu,如果没有则自动创建magedu用户,并自动设置家目录为/www。

[root@localhost scripts]# vim addmage.sh 
#!/bin/bash
if [ "$1" == "magedu" -a "$2" == "/www" ];then
   id $1 &> /dev/null && echo "$1 is exists" || { useradd -d $2 $1;echo "$1 is created and home directory is $2"; }
else
    echo "please input magedu and /www"
fi
[root@localhost scripts]# bash -n addmage.sh 
[root@localhost scripts]# bash -x addmage.sh 1 2
+ '[' 1 == magedu -a 2 == /www ']'
+ echo 'please input magedu and /www'
please input magedu and /www
[root@localhost scripts]# bash -x addmage.sh magedu /www
+ '[' magedu == magedu -a /www == /www ']'
+ id magedu
+ useradd -d /www magedu
+ echo 'magedu is created and home directory is /www'
magedu is created and home directory is /www
[root@localhost scripts]# id maedu
id: maedu: no such user
[root@localhost scripts]# id magedu
uid=1001(magedu) gid=1001(magedu) groups=1001(magedu)
[root@localhost scripts]# getent passwd|grep magedu
magedu:x:1001:1001::/www:/bin/bash

2、使用expect实现自动登录系统。

[root@localhost scripts]# vim expect.sh 
#!/usr/bin/expect
set ip [lindex $argv 0]
set user [lindex $argv 1]
set password [lindex $argv 2]
set timeout 10
spawn ssh $user@$ip
expect {
"yes/no" { send "yes\n";exp_continue }
"password" { send "$password\n" }
}
expect eof
interact    
[root@localhost scripts]# expect expect.sh 192.168.58.128 root awzqsex123
spawn ssh [email protected]
[email protected]'s password: 
Last login: Tue Aug 11 18:50:26 2020 from 192.168.58.132
[root@centos6 ~]# ifconfig 
eth0      Link encap:Ethernet  HWaddr 00:0C:29:30:26:91  
          inet addr:192.168.58.128  Bcast:192.168.58.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe30:2691/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:995 errors:0 dropped:0 overruns:0 frame:0
          TX packets:870 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:155411 (151.7 KiB)  TX bytes:143827 (140.4 KiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:8 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:480 (480.0 b)  TX bytes:480 (480.0 b)

3、简述linux操作系统启动流程

第一步:POST:Power-On-Self-Test 加电自检,加载BIOS对硬件情况进行检测。
第二步:启动第一个有引导程序的设备,读取MBR。
第三步:加载bootload,启动用户需要的内核。
第四步:加载内核,探测可识别到的硬件设备,依靠ramdisk辅助的伪根系统文件,加载驱动模块,只读挂载rootfs根文件系统,运行用户空间第一个进程/sbin/init。
第五步:读取/etc/inittab文件,识别Linux的运行级别。
第六步:执行/etc/rc.d/rc.sysinit初始化运行脚本,设定初始环境的相关配置。
第七步:启动内核模块,执行不同运行级别的脚本程序。
第八步:执行/etc/rc.d/rc.local,执行用户自定义需要启动的服务。
第九步:启动mingetty,进入系统登陆界面。
第十步:执行/bin/login程序,用户登录。

4、破解centos7 密码。

1.启动时任意键暂停启动


image.png

2.按e键进入编辑模式


image.png

3.将光标移动linux16开始的行,添加内核参数rd.break 或者改为 rw init=/sysroot/bin/sh


image.png

4.按ctrl-x启动


image.png

5.mount –o remount,rw /sysroot
6.chroot /sysroot
7.passwd root


image.png

8.touch /.autorelabel //未启用SELinux可省略
9.exit
10.reboot,登录成功


image.png

你可能感兴趣的:(第九周技术作业)