1、截取登录成功界面
2、进入用户主目录后切换root用户
su root //输入管理员密码切换到root用户
3、在该目录下新建名为teacher和students的文件夹
mkdir teacher students //使用mkdir创建文件夹
ls -a /home/roots //ls -a用于查看是否创建成功
4、在teacher文件夹下新建名为Wangquan和Xiongfanshu的文件,并更新其时间。
[root@localhost roots]# cd /home/roots/teacher //cd跳转到teacher文件夹
[root@localhost teacher]# touch Wangquan Xiongfanshu //touch创建文件并更新时间
[root@localhost teacher]# cd /home/roots //cd跳转到roots文件夹
[root@localhost roots]# ls -l teacher //ls -l检查是否创建文件和更新时间
总用量 0
-rw-r--r--. 1 root root 0 11月 8 21:54 Wangquan
-rw-r--r--. 1 root root 0 11月 8 21:54 Xiongfanshu
5、在students文件夹下新建名为Liwentao、Weiweiyao、Wangxuanren的文件,并分别更新这三个的访问时间为2010、2001和2019
[root@localhost roots]# cd /home/roots/students
[root@localhost students]# touch Liwentao Weiweiyao Wangxuanren
[root@localhost students]# touch -a -t 201011082207 Liwentao //touch -a -t 年月日时间 文件名
[root@localhost students]# touch -a -t 200111082207 Weiweiyao //修改访问时间
[root@localhost students]# touch -a -t 201911082208 Wangxuanren
[root@localhost students]# cd /home/roots
[root@localhost roots]# ls -l students
总用量 0
-rw-r--r--. 1 root root 0 11月 8 22:05 Liwentao
-rw-r--r--. 1 root root 0 11月 8 22:05 Wangxuanren
-rw-r--r--. 1 root root 0 11月 8 22:05 Weiweiyao
6、移动teacher文件夹至students文件夹里面
[root@localhost roots]# mv teacher students/ //mv 源文件名 目标文件名
[root@localhost roots]# ls -l students
总用量 0
-rw-r--r--. 1 root root 0 11月 8 22:05 Liwentao
drwxr-xr-x. 2 root root 41 11月 8 21:54 teacher
-rw-r--r--. 1 root root 0 11月 8 22:05 Wangxuanren
-rw-r--r--. 1 root root 0 11月 8 22:05 Weiweiyao
7、将teacher文件夹里面的Wangquan、Xiongfanshu这俩个文件删除
[root@localhost roots]# cd /home/roots/students/teacher
[root@localhost teacher]# rm Wangquan Xiongfanshu //rm 需删除的文件名
rm:是否删除普通空文件 "Wangquan"?y //输入y回车确认删除
rm:是否删除普通空文件 "Xiongfanshu"?y
[root@localhost teacher]# cd /home/roots/students
[root@localhost students]# ls -a teacher
. ..
8、回到以你的名字为名的文件夹,删除students文件夹里面的空目录
[root@localhost students]# cd /home/roots
[root@localhost roots]# ls -a students
. .. Liwentao teacher Wangxuanren Weiweiyao
[root@localhost roots]# rmdir /home/roots/students/teacher //rmdir删除空目录
[root@localhost roots]# ls -a students
. .. Liwentao Wangxuanren Weiweiyao
9、将students文件夹里面的Weiweiyao改名为Fengjie
[root@localhost roots]# cd /home/roots/students
[root@localhost students]# mv Weiweiyao Fengjie //mv亦可以修改文件名
[root@localhost students]# cd /home/roots
[root@localhost roots]# ls -a students
. .. Fengjie Liwentao Wangxuanren
10、回到以你的名字为名的文件夹,打印其目录结构
[root@localhost roots]# cd /home
[root@localhost home]# ls -a roots
. .bash_profile .dbus .mozilla 模板 下载
.. .bashrc .esd_auth .redhat 视频 音乐
.bash_history .cache .ICEauthority students 图片 桌面
.bash_logout .config .local 公共 文档
[root@localhost home]# cd /home/roots
[root@localhost roots]# ls -a students
. .. Fengjie Liwentao Wangxuanren
11、查找teacher目录下的Xiongfanshu文件
[root@localhost roots]# cd /home/roots/students
[root@localhost students]# find teacher -name "Xiongfanshu"
find: ‘teacher’: 没有那个文件或目录
12、在student目录下查找超过4k的文件
[root@localhost roots]# find students -type f -size +4k
//没有超过4k的文件
[root@localhost roots]# find students -type f -size -4k
students/Liwentao
students/Wangxuanren
students/Fengjie
标签:练习题,students,基础,roots,Linux,home,root,teacher,localhost
From: https://blog.csdn.net/weixin_73787152/article/details/143635432