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
chapter01的更多相关文章
- springboot-shiro chapter01——创建springboot webmvc环境
简介:本章提供了springboot简单例子,主要包含以下内容 1.pom.xml依赖资源 2.springboot配置 3.web应用spring mvc 环境: IDEA15+ JDK1.8+ M ...
- 【GISER&&Painter】Chapter01:WebGL渲染初体验
基于上一篇OpenGL的渲染原理,这两周又陆续接触了一些关于WebGL绘图的一些内容,因为刚入门,很多东西又很晦涩,所以特意花了小半天的时间整理了一下,特此记录. 零 画一个多边形吧! 把一个多边形 ...
- chapter01作业
1. 请用命令查出ifconfig命令程序的绝对路径 [root@localhost chen]# which ifconfig /usr/sbin/ifconfig 2.请用命令展示以下命令哪些是内 ...
- chapter01图像基本操作
刚刚开始学习opencv,来记录一下自己的学习笔记,也向各位大牛虚心求教 一.图片的基本知识 只要是彩色的图片都有三个颜色通道,即RGB,用三个矩阵来表示. 三个矩阵的同一个坐标位置上的数值描述的是一 ...
- Atitit.可视化与报表原理与概论
Atitit.可视化与报表原理与概论 1. 信息可视化1 2. Gui可视化1 3. 报表系统(三大图表,金字塔,组织结构图等)1 4. <可视化数据>目录3 5. 可视化的具体实现(c ...
- Epub基础知识介绍
转载自:http://www.cnblogs.com/linlf03/archive/2011/12/13/2286218.html 一.什么是epub epub是一个完全开放和免费的电子书标准.它可 ...
- Linux(Ubuntu 14.04) setting up OpenGL
1. Install c/c++ compilation package. 2. install openGL and freeGlut library sudo apt-get install me ...
- GitBook制作电子书详细教程(命令行版)
GitBook 是一款基于 Node.js 开发的开源的工具,可以通过命令行的方式创建电子书项目,再使用 MarkDown 编写电子书内容,然后生成 PDF.ePub.mobi 格式的电子书,或生成一 ...
- 总结六条对我们学习Linux系统有用的忠告
接触linux需要的是端正自己的态度,这个玩意可不是一天两天就能拿得下的.学习个基础,能装系统.能装常见服务.能编译.能配置存储空间.能配置系统参数.能简单查看系统负载等基本够用.但这些只保证能做机房 ...
随机推荐
- Android项目开发之--------地铁时光机(一,搭建主框架)
一:先看一下框架搭建后的效果图 , 二:框架结构 (1)底部导航栏采用的是: MainActivity(主框架), MsgFragment(首页), HistoryFragment(历史清单 ...
- HBase 学习之路(四)—— HBase集群环境配置
一.集群规划 这里搭建一个3节点的HBase集群,其中三台主机上均为Regin Server.同时为了保证高可用,除了在hadoop001上部署主Master服务外,还在hadoop002上部署备用的 ...
- MyBatis从入门到精通(三):MyBatis XML方式的基本用法之多表查询
最近在读刘增辉老师所著的<MyBatis从入门到精通>一书,很有收获,于是将自己学习的过程以博客形式输出,如有错误,欢迎指正,如帮助到你,不胜荣幸! 1. 多表查询 上篇博客中,我们示例的 ...
- 如何在VPS上搭建WordPress博客网站(史上最全图文教程)
由于现在很多人仍然使用共享主机,所以我决定写这篇教程,教你如何设置自己的虚拟专用服务器(VPS),以便为启动一个 WordPress 网站准备好所有必要的服务. 为什么共享托管不是最好的选择? 你的 ...
- Oracle Awr报告_awr报告解读_基础简要信息
导出 关于awr报告的导出,上一篇博客已经进行过讲述了.博客链接地址:https://www.cnblogs.com/liyasong/p/oracle_report1.html 这里就不再赘述. ...
- 常用的方法论-SWOT
- flask 请求上下文源码(转)
本篇阅读目录 一.flask请求上下文源码解读 二.http聊天室(单聊/群聊)- 基于gevent-websocket 回到顶部 转:https://www.cnblogs.com/li-li/p/ ...
- Nginx代理和负载均衡实验
一.构建两个tomcat容器并启动 [root@localhost bin]# ps -ef|grep tomcat root : pts/ :: /usr/bin/java -Djava.util. ...
- C# Linq 笛卡尔积
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...
- PKIX:unable to find valid certification path to requested target
1.Communications link failure,The last packet successfully received from the server was * **millisec ...