其他分享
首页 > 其他分享> > chapter01作业

chapter01作业

作者:互联网

1、请用命令查出ifconfig命令程序的绝对路径[root@localhost ~]# which ifconfig

答:/usr/sbin/ifconfig

2、请用命令展示以下命令哪些是内部命令,哪些是外部命令?(cd \ pwd \ ls \ ifconfig \ du)[root@localhost ~]#

答:cd 是 shell 内嵌(由此可见该命令cd'为内部命令)

      pwd 是 shell 内嵌(由此可见该命令pwd为内部命令)

      ls 是 `ls --color=auto' 的别名(由此可见该命令ls为外部命令)

      ifconfig 是 /usr/sbin/ifconfig (由此可见该命令ifconfig为外部命令)

      du 是 /usr/bin/du (由此可见该命令du为外部命令)

3、请在/下创建目录abc请在/下创建目录/liangjian/liyunlong/weiheshang/duanpeng请在/abc下一次创建1000个目录,名字自己拟定。

答:[root@localhost ~]# mkdir /abc

       [root@localhost /]# mkdir -pv /liangjian/liyunlong/weiheshang/duanpeng

       mkdir: 已创建目录 "/liangjian"

       mkdir: 已创建目录 "/liangjian/liyunlong"

       mkdir: 已创建目录 "/liangjian/liyunlong/weiheshang"

       mkdir: 已创建目录 "/liangjian/liyunlong/weiheshang/duanpeng"

     

       [root@localhost liyunlong]# mkdir /abc/{1..1000}

4、请用绝对路径方式切换到/liangjian/liyunlong/weiheshang/duanpeng 目录下并用pwd查看当前的路径,请用上级目录名".."方式切换到 /liangjian/liyunlong           

答:[root@localhost /]# cd /liangjian/liyunlong/weiheshang/duanpeng

       [root@localhost duanpeng]# pwd

      /liangjian/liyunlong/weiheshang/duanpeng

      [root@localhost duanpeng]# cd ..

      [root@localhost weiheshang]# cd ..

      [root@localhost liyunlong]# pwd

     /liangjian/liyunlong

     [root@localhost liyunlong]#

 

5、请一次删除/abc下一次创建的1000个目录,请在/abc下用touch再创建20个以stu开头的普通可读文档,文档后缀为.txt

答:[root@localhost ~]# rm -rf /abc/{1..1000}

      [root@localhost ~]# ls /abc/

      [root@localhost ~]#

 

      [root@localhost ~]# touch /abc/stu{1..20}.txt

      [root@localhost ~]# ls /abc/

      stu10.txt  stu12.txt  stu14.txt  stu16.txt  stu18.txt  stu1.txt   stu2.txt  stu4.txt  stu6.txt  stu8.txt

      stu11.txt  stu13.txt  stu15.txt  stu17.txt  stu19.txt  stu20.txt  stu3.txt  stu5.txt  stu7.txt  stu9.txt

6、请用cp命令将/boot/目录下以vmlinuz开头的文件拷贝到/abc下,并以查看他们占磁盘的空间大小。

答:[root@localhost ~]# cp /boot/vmlinuz* /abc/

       [root@localhost ~]# ls /abc/

       stu10.txt  stu14.txt  stu18.txt  stu2.txt  stu6.txt  vmlinuz-0-rescue-33213c366c264aabbfe9dec78d0c4721

       stu11.txt  stu15.txt  stu19.txt  stu3.txt  stu7.txt  vmlinuz-3.10.0-693.el7.x86_64

       stu12.txt  stu16.txt  stu1.txt   stu4.txt  stu8.txt

       stu13.txt  stu17.txt  stu20.txt  stu5.txt  stu9.txt

 

       [root@localhost ~]# du -h /boot/vmlinuz*

       5.7M /boot/vmlinuz-0-rescue-33213c366c264aabbfe9dec78d0c4721

       5.7M /boot/vmlinuz-3.10.0-693.el7.x86_64

 

 

 

7、将其中一个vmlinuz开头的文件改名为kgc,另外一个剪切到/tmp目录下

答:[root@localhost ~]# mv /abc/vmlinuz-0-rescue-33213c366c264aabbfe9dec78d0c4721 /abc/kgc

       [root@localhost ~]# ls /abc/

       kgc        stu12.txt  stu15.txt  stu18.txt  stu20.txt  stu4.txt  stu7.txt  vmlinuz-3.10.0-693.el7.x86_64

       stu10.txt  stu13.txt  stu16.txt  stu19.txt  stu2.txt   stu5.txt  stu8.txt

       stu11.txt  stu14.txt  stu17.txt  stu1.txt   stu3.txt   stu6.txt  stu9.txt

 

      [root@localhost ~]# mv /boot/vmlinuz-3.10.0-693.el7.x86_64 /tmp/

 

 

 

8、查看/tmp/目录下以vmlinuz开头文件的详细状态信息。

答:[root@localhost ~]# stat /tmp/vmlinuz*

      文件:"/tmp/vmlinuz-3.10.0-693.el7.x86_64"

      大小:5877760    块:11480      IO 块:4096   普通文件

   设备:fd00h/64768d Inode:33677539    硬链接:1

   权限:(0755/-rwxr-xr-x)  Uid:(    0/    root)   Gid:(    0/    root)

   环境:system_u:object_r:boot_t:s0

   最近访问:2019-07-23 10:10:02.218661271 +0800

   最近更改:2017-08-23 05:21:49.000000000 +0800

   最近改动:2019-07-24 09:33:12.141757314 +0800

   创建时间:-

 

 

9、用find命令查找/tmp目录下以vmlinuz开头及大小超过1M的文件

答:[root@localhost ~]# find /tmp/ -size +1M -a -name vmlinuz*

       /tmp/vmlinuz-3.10.0-693.el7.x86_64

 

标签:abc,liyunlong,作业,vmlinuz,chapter01,txt,root,localhost
来源: https://www.cnblogs.com/shinian12138/p/11236056.html