码迷,mamicode.com
首页 > 其他好文 > 详细

高端运维班第一次作业

时间:2016-12-12 15:16:18      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:数据中心   服务器   计算机   linux   工作站   

1、按系列罗列Linux的发行版,并描述不同发行版之间的联系与区别

*Linux发行版=Linux内核+商业软件

linux的发行版:

RedHat、Fedora、suse(Novell)、红旗、debian、Ubuntu、centos

不同发行版之间的联系和区别:

Red Hat ,是redhat自己的发行的企业版,是redhat的一个重要节点。

Fedore是一款基于linux的操作系统,也是一组维持计算机正常运行的软件集合。由红帽公司赞助。

suse linux,针对个人用户。

红旗linux的发行版,包括桌面版、工作站版、数据中心服务器版、HA集群版和红旗嵌入式linux等产品,是中国较大、较成熟的linux发行版之一。

debian,三大发行版中唯一以社区形式运作,不以商业公司形式运作。是一个致力于创建自由操作系统的合作组织。而且debian开发者所创建的操作系统中绝大部分基础工具来自于GNU工程。

Ubuntu(乌版图)是一个以桌面应用为主的linux操作系统。Ubuntu的目标在于为一般用户提供一个最新的、同时又相当稳定的主要由自由软件构建而成的操作系统。

Centos是一个基于redhat linux 提供的可自由使用源代码的企业级linux发行版本。目前Centos已被收购,成为redhat旗下的一个组织。

2、说明Linux系统上命令的使用格式;详细介绍ifconfig、echo、tty、startx、export、pwd、history、shutdown、poweroff、reboot、hwclock、date命令的使用,并配合相应的示例来阐述。

          内置命令:#help COMMAND
             外部命令:
             (1)命令自带简要格式的使用帮助
                #COMMAND --help           
             (2)使用帮助手册(manual)
                #man CHAPTER COMMAND
             (3)info COMMAND
                获取命令的在线文档
             (4)很多应用程序会自带帮助文档:/usr/share/doc/APP-VERSION
                    README:程序的相关的信息
                    INSTALL:安装帮助
                    CHANGES:版本迭代时的改动信息;
             (5)主流发行版官方文档
                 http://www.redhat.com/doc      
             (6)程序官方的文档
                 官方站点上的"Document"
             (7)搜索引擎
                 Google

  二、使用手册(manual),手册压缩格式的文件,有章节之分。手册分为man1-man8。
        man1:用户命令;man2:系统调用;
        man3:C库调用;man4:设备文件及特殊文件;
        man5:文件格式:(配置文件格式); man6:游戏使用帮助;
        man7:杂项;man8:管理工具及守护进行。
           帮助手册路径:/usr/share/man  
           语法格式:#man COMMAN

4、Linux上的文件管理类命令都有哪些,其常用的使用方法及其相关示例演示。

cat

使用语法:cat [-AbeEnstTuv][--help][--version] FILENAME 
命令功能:查看文件内容或将多文件连接后传输到基本输出(也可以通过重定向将多文件合并为一个文件) 
常用选项及示例

-n或–number 由1开始对所有输出的内容以行为单位进行编号

1.[root - gwx-st ~]#>cat test1 -n
2.1  1111
3.2  
4.3  22222
5.4  333333

-b 或–number-nonblank 功能与-n相似,但是会忽略文件内的空白行

1.[root - gwx-st ~]#>cat test2 -b
2.1  1111
3.2  3333

将两个文件合并为一个文件

1.[root - gwx-st ~]#>cat test1 test2 -n > test3
2.[root - gwx-st ~]#>cat test3
3.1  1111
4.2  
5.3  22222
6.4  333333
7.5  1111
8.6  
9.7  3333

chattr

使用语法:chattr [-RV][-v<版本编号>][+/-/=<属性>][文件或目录...] 
命令功能:改变文件隐藏属性 
隐藏属性模式

1.a:让文件或目录仅供附加用途。
2.b:不更新文件或目录的最后存取时间。
3.c:将文件或目录压缩后存放。
4.d:将文件或目录排除误操作之外。
5.i:不得任意更动文件或目录。
6.s:保密性删除文件或目录。
7.S:即时更新文件或目录。
8.u:预防意外删除。

常用选项及示例

-R 递归处理,将指定目录下的所有文件及子目录一并处理。 
-V 显示指令执行过程。 
+<属性> 开启文件或目录的该项属性。

1.[root - gwx-st ~]#>chattr -RV +i test
2.chattr 1.42.9 (28-Dec-2013)
3.Flags of test set as ----i-----------
4.Flags of test/test1 set as ----i-----------
5.Flags of test/test2 set as ----i-----------
6.[root - gwx-st ~]#>lsattr test
7.----i----------- test/test1
8.----i----------- test/test2

-<属性> 关闭文件或目录的该项属性。

1.[root - gwx-st ~]#>chattr -RV -i test
2.chattr 1.42.9 (28-Dec-2013)
3.Flags of test set as ----------------
4.Flags of test/test1 set as ----------------
5.Flags of test/test2 set as ----------------
6.[root - gwx-st ~]#>lsattr test
7.---------------- test/test1
8.---------------- test/test2

=<属性> 指定文件或目录的该项属性。

1.[root - gwx-st ~]#>chattr -RV =idS test
2.chattr 1.42.9 (28-Dec-2013)
3.Flags of test set as --S-i-d---------
4.Flags of test/test1 set as --S-i-d---------
5.Flags of test/test2 set as --S-i-d---------
6.[root - gwx-st ~]#>lsattr test
7.--S-i-d--------- test/test1
8.--S-i-d--------- test/test2
9.

chmod

使用语法:chmod [-cfRv][--help][--version][<权限范围>+/-/=<权限设置...>][文件或目录...] 
chmod[-cfRv][--help][--version][数字代号][文件或目录...] 
或 chmod [-cfRv][--help][--reference=<参考文件或目录>][--version][文件或目录...] 
命令功能:变更文件或目录的权限。 
补充说明:

1.    文件或目录权限的控制分别以读取,写入,执行3种一般权限来区分,可以使用 chmod指令去变更文件与目录的权限,设置方式采用文字或数字代号皆可。符号连接的权限无法变更,如果您对符号连接修改权限,其改变会作用在被连接的原始文件。
2.    权限范围的表示法如下:
3. u:User,即文件或目录的拥有者。
4. g:Group,即文件或目录的所属群组。
5. o:Other,除了文件或目录拥有者或所属群组之外,其他用户皆属于这个范围。
6. a:All,即全部的用户,包含拥有者,所属群组以及其他用户。
7.    有关权限代号的部分,列表于下:
8. r:读取权限,数字代号为"4"
9. w:写入权限,数字代号为"2"
10. x:执行或切换权限,数字代号为"1"
11. -:不具任何权限,数字代号为"0"。 

常用选项及示例

-v或–verbose  显示指令执行过程。 
-c或–changes  效果类似”-v”参数,但仅回报更改的部分。 
-f或–quiet或–silent  静默模式,不显示错误信息。 
-R或–recursive  递归处理,将指定目录下的所有文件及子目录一并处理。

<权限范围>+<权限设置>  开启权限范围的文件或目录的该项权限设置。

1.[root - gwx-st ~]#>chmod -Rv +w test
2.mode of ‘test‘ retained as 0755 (rwxr-xr-x)
3.mode of ‘test/test1‘ retained as 0644 (rw-r--r--)
4.mode of ‘test/test2‘ retained as 0644 (rw-r--r--)

<权限范围>-<权限设置>  关闭权限范围的文件或目录的该项权限设置。

1.[root - gwx-st ~]#>chmod -Rv a-w test
2.mode of ‘test‘ changed from 0755 (rwxr-xr-x) to 0555 (r-xr-xr-x)
3.mode of ‘test/test1‘ changed from 0644 (rw-r--r--) to 0444 (r--r--r--)
4.mode of ‘test/test2‘ changed from 0644 (rw-r--r--) to 0444 (r--r--r--)

<权限范围>=<权限设置>  指定权限范围的文件或目录的该项权限设置。

1.[root - gwx-st ~]#>chmod -Rv a=w test
2.mode of ‘test‘ changed from 0555 (r-xr-xr-x) to 0222 (-w--w--w-)
3.mode of ‘test/test1‘ changed from 0444 (r--r--r--) to 0222 (-w--w--w-)
4.mode of ‘test/test2‘ changed from 0444 (r--r--r--) to 0222 (-w--w--w-)

–reference=<参考文件或目录>  把指定文件或目录的权限全部设 成和参考文件或目录的权限相同

1.[root - gwx-st ~]#>ll -d test
2.d-w--w--w-. 2 root root 30 Nov  4 14:37 test/
3.[root - gwx-st ~]#>ll sh -d
4.drwxr-xr-x. 2 root root 4.0K Nov  2 09:03 sh/
5.[root - gwx-st ~]#>chmod --reference sh test
6.[root - gwx-st ~]#>ll -d sh test
7.drwxr-xr-x. 2 root root 4.0K Nov  2 09:03 sh/
8.drwxr-xr-x. 2 root root   30 Nov  4 14:37 test/

chown

使用语法:chown [-cfhRv][--dereference][--help][--version][拥有者.<所属群组>][文件或目录..] 
chown[-chfRv][--dereference][--help][--version][.所属群组][文件或目录... ...] 
chown[-cfhRv][--dereference][--help][--reference=<参考文件或目录>][--version][文件或目录...] 
命令功能:变更文件或目录的拥有者或所属群组 
常用选项及示例

-f或–quite或–silent  不显示错误信息。 
-R或–recursive  递归处理,将指定目录下的所有文件及子目录一并处理。 
-v或–version  显示指令执行过程。 
-c或–changes  效果类似”-v”参数,但仅回报更改的部分。

1.[root - gwx-st ~]#>ll -d test
2.d-w--w--w-. 2 root root 30 Nov  4 14:37 test/
3.[root - gwx-st ~]#>chown -Rc gwx.gwx test
4.changed ownership of ‘test/test1‘ from root:root to gwx:gwx
5.changed ownership of ‘test/test2‘ from root:root to gwx:gwx
6.changed ownership of ‘test‘ from root:root to gwx:gwx
7.[root - gwx-st ~]#>ll -d test
8.d-w--w--w-. 2 gwx gwx 30 Nov  4 14:37 test/

-h或–no-dereference  之对符号连接的文件作修改,而不更动其他任何相关文件。

1.[root - gwx-st ~]#>ll test1
2.lrwxrwxrwx. 1 root root 4 Nov  4 16:02 test1 -> test/
3.[root - gwx-st ~]#>ll -d test
4.drwxr-xr-x. 2 root root 30 Nov  4 16:04 test/
5.[root - gwx-st ~]#>chown -hc gwx.gwx test1
6.changed ownership of ‘test1‘ from root:root to gwx:gwx
7.[root - gwx-st ~]#>ll test1
8.lrwxrwxrwx. 1 gwx gwx 4 Nov  4 16:02 test1 -> test/
9.[root - gwx-st ~]#>ll -d test
10.drwxr-xr-x. 2 root root 30 Nov  4 16:04 test/

–reference=<参考文件或目录>  把指定文件或目录的拥有者与所属群组全部设成和参考文件或目录的拥有者与所属群组相同。

1.[root - gwx-st ~]#>ll -d test
2.drwxr-xr-x. 2 root root 30 Nov  4 16:04 test/
3.[root - gwx-st ~]#>ll /home/gwx/sh/back-etc.sh
4.-rwxr-xr--. 1 gwx gwx 746 Oct 26 16:04 /home/gwx/sh/back-etc.sh*
5.[root - gwx-st ~]#>chown --reference=/home/gwx/sh/back-etc.sh test
6.[root - gwx-st ~]#>ll -d test
7.drwxr-xr-x. 2 gwx gwx 30 Nov  4 16:04 test/

cp

使用语法:cp [-abdfilpPrRsuvx][源文件或目录][目标文件或目录][目的目录] 
命令功能:复制文件或目录 
常用选项及示例

-a 或–archive 此参数的效果和同时指定”-dpR”参数相同。 
-b 或–backup 删除,覆盖目标文件之前的备份,备份文件会在字尾加上一个备份字符串。 
-v 或–verbose 显示指令执行过程。 
-i 或–interactive 覆盖既有文件之前先询问用户。 
-f 或–force 强行复制文件或目录,不论目标文件或目录是否已存在。 
-r 递归处理,将指定目录下的文件与子目录一并处理。 
-R 或–recursive 递归处理,将指定目录下的所有文件与子目录一并处理。 
-p 或–preserve 保留源文件或目录的属性。 
-P 或–parents 保留源文件或目录的路径。

1.[root - gwx-st ~]#>ll -d test*
2.drwxr-xr-x. 2 gwx gwx 30 Nov  4 16:04 test/
3.[root - gwx-st ~]#>cp -aiv test test1
4.‘test‘ -> ‘test1‘
5.‘test/test1‘ -> ‘test1/test1‘
6.‘test/test2‘ -> ‘test1/test2‘
7.[root - gwx-st ~]#>ll -d test*
8.drwxr-xr-x. 2 gwx gwx 30 Nov  4 16:04 test/
9.drwxr-xr-x. 2 gwx gwx 30 Nov  4 16:04 test1/

-s 或–symbolic-link 对源文件建立符号连接,而非复制文件。

1.[root - gwx-st ~]#>ll sh.tar.xz 
2.-rw-r--r--. 1 root root 2.7K Oct 23 16:59 sh.tar.xz
3.[root - gwx-st ~]#>cp -sv sh.tar.xz sh.tar.xz.ln
4.‘sh.tar.xz‘ -> ‘sh.tar.xz.ln‘
5.[root - gwx-st ~]#>ll sh.tar.xz.ln
6.lrwxrwxrwx. 1 root root 9 Nov  4 16:40 sh.tar.xz.ln -> sh.tar.xz
7.

-d 或–no-dereference 当复制符号连接时,把目标文件或目录也建立为符号连接,并指向与源文件或目录连接的原始文件或目录。

1.[root - gwx-st ~]#>ll sh.tar.xz.ln
2.lrwxrwxrwx. 1 root root 9 Nov  4 16:40 sh.tar.xz.ln -> sh.tar.xz
3.[root - gwx-st ~]#>cp -d sh.tar.xz.ln sh1.tar.xz
4.[root - gwx-st ~]#>ll sh1.tar.xz
5.lrwxrwxrwx. 1 root root 9 Nov  4 16:41 sh1.tar.xz -> sh.tar.xz
6.

-l 或–link 对源文件建立硬连接,而非复制文件。

1.[root - gwx-st ~]#>cp -l sh.tar.xz sh2.tar.xz
2.[root - gwx-st ~]#>ll -i sh*.tar.xz
3.101983257 lrwxrwxrwx. 1 root root    9 Nov  4 16:41 sh1.tar.xz -> sh.tar.xz
4.119955255 -rw-r--r--. 2 root root 2.7K Oct 23 16:59 sh2.tar.xz
5.119955255 -rw-r--r--. 2 root root 2.7K Oct 23 16:59 sh.tar.xz
6.

ln

使用语法:ln [-bdfinsv][源文件或目录][目标文件或目录] 
或 ln [-bdfinsv][源文件或目录...][目的目录] 
命令功能:连接文件或目录 
常用选项及示例

-f或–force  强行建立文件或目录的连接,不论文件或目录是否存在。 
-i或–interactive  覆盖既有文件之前先询问用户。 
-n或–no-dereference  把符号连接的目的目录视为一般文件。 
-s或–symbolic  对源文件建立符号连接,而非硬连接。

1.[root - gwx-st ~]#>ll nginx-1.11.5.tar.gz 
2.-rw-r--r--. 1 root root 935K Oct 29 14:02 nginx-1.11.5.tar.gz
3.[root - gwx-st ~]#>ln -s nginx-1.11.5.tar.gz nginx
4.[root - gwx-st ~]#>ln nginx-1.11.5.tar.gz nginx1
5.[root - gwx-st ~]#>ll -i nginx*
6.101983269 lrwxrwxrwx. 1 root root   19 Nov  4 17:06 nginx -> nginx-1.11.5.tar.gz
7.131383020 -rw-r--r--. 2 root root 935K Oct 29 14:02 nginx1
8.131383020 -rw-r--r--. 2 root root 935K Oct 29 14:02 nginx-1.11.5.tar.gz.11.5.tar.gz nginx1

locate

使用语法:locate [-d <数据库文件>][范本样式...] 
命令功能:基于本地文件数据库查找文件 
常用选项及示例

 -d<数据库文件>或–database=<数据库文件> 设置locate指令使用的数据库。locate指令预设的数据库位于/var/lib/slocate目录里,文件名为slocate.db,您可使用这个参数另行指定。使用updatedb更新本地文件数据库。

1.[root - gwx-st ~]#>locate nginx-1.11.5.tar.gz 
2./root/nginx-1.11.5.tar.gz

lsattr

使用语法:lsattr [-adlRvV][文件或目录...] 
命令功能:显示文件隐藏属性 
常用选项及示例

-a  显示所有文件和目录,包括以”.”为名称开头字符的额外内建,现行目录”.”与上层目录”..”。

1.[root - gwx-st ~/test]#>lsattr -a
2.---------------- ./.
3.
---------------- ./..
4.
---------------- ./test1
5.
---------------- ./test2
6.
---------------- ./test.ln

-d  显示,目录名称,而非其内容。

1.[root - gwx-st ~/test]#>lsattr -d
2.---------------- .

-R  递归处理,将指定目录下的所有文件及子目录一并处理。

1.[root - gwx-st ~]#>lsattr -R test
2.---------------- test/test1
3.---------------- test/test2
4.---------------- test/test.ln

mv

使用语法:mv [-bfiuv][源文件或目录][目标文件或目录] 
命令功能:移动或更名现有的文件或目录。不同不经下执行为移动,同一路径下执行为更名。 
常用选项及示例

-b或–backup  若需覆盖文件,则覆盖前先行备份。 
-f或–force  若目标文件或目录与现有的文件或目录重复,则直接覆盖现有的文 件或目录。 
-i或–interactive  覆盖前先行询问用户。 
-v或–verbose  执行时显示详细的信息。

1.移动
2.[root - gwx-st ~/test]#>ll
3.total 12K
4.-rw-r--r--. 2 root root 16 Nov  4 16:03 test1
5.-rw-r--r--. 1 root root 17 Nov  4 16:04 test2
6.-rw-r--r--. 2 root root 16 Nov  4 16:03 test.ln
7.[root - gwx-st ~/test]#>mv ../passwd .
8.[root - gwx-st ~/test]#>ll
9.total 16K
10.-rw-r--r--. 1 root root 3.0K Oct 31 08:39 passwd
11.-rw-r--r--. 2 root root   16 Nov  4 16:03 test1
12.-rw-r--r--. 1 root root   17 Nov  4 16:04 test2
13.-rw-r--r--. 2 root root   16 Nov  4 16:03 test.ln
1.更名
2.[root - gwx-st ~/test]#>ll
3.total 16K
4.-rw-r--r--. 1 root root 3.0K Oct 31 08:39 passwd
5.-rw-r--r--. 2 root root   16 Nov  4 16:03 test1
6.-rw-r--r--. 1 root root   17 Nov  4 16:04 test2
7.-rw-r--r--. 2 root root   16 Nov  4 16:03 test.ln
8.[root - gwx-st ~/test]#>mv test.ln test.mv
9.[root - gwx-st ~/test]#>ll
10.total 16K
11.-rw-r--r--. 1 root root 3.0K Oct 31 08:39 passwd
12.-rw-r--r--. 2 root root   16 Nov  4 16:03 test1
13.-rw-r--r--. 1 root root   17 Nov  4 16:04 test2
14.-rw-r--r--. 2 root root   16 Nov  4 16:03 test.mv
15.[root - gwx-st ~/test]#>
16.

rm

使用语法:rm [-dfirv][文件或目录...] 
命令功能:删除文件或目录 
常用选项及示例

-d或–directory  直接把欲删除的目录的硬连接数据删成0,删除该目录。 
-f或–force  强制删除文件或目录。 
-i或–interactive  删除既有文件或目录之前先询问用户。 
-r或-R或–recursive  递归处理,将指定目录下的所有文件及子目录一并处理。 
-v或–verbose  显示指令执行过程。

1.[root - gwx-st ~]#>ll -d test*
2.drwxr-xr-x. 2 root root 57 Nov  4 17:21 test/
3.drwxr-xr-x. 2 gwx  gwx  30 Nov  4 16:04 test1/
4.[root - gwx-st ~]#>rm -dirv test1
5.rm: descend into directory ‘test1‘? y
6.rm: remove regular file ‘test1/test1‘? y
7.removed ‘test1/test1‘
8.rm: remove regular file ‘test1/test2‘? y
9.removed ‘test1/test2‘
10.rm: remove directory ‘test1‘? y
11.removed directory: ‘test1‘
12.[root - gwx-st ~]#>ll -d test*
13.drwxr-xr-x. 2 root root 57 Nov  4 17:21 test/

tee

使用语法:tee [-ai][文件...] 
命令功能:读取标准输入的数据,并将其内容输出成文件 
常用选项及示例

-a或–append  附加到既有文件的后面,而非覆盖它。 
-i-i或–ignore-interrupts  忽略中断信号。

1.[root - gwx-st ~/test]#>cat test1
2.www
3.qqq
4.eee
5.[root - gwx-st ~/test]#>tee -ai test1
6.test  
7.test
8.dd
9.dd
10.ss
11.ss
12.[root - gwx-st ~/test]#>cat test1
13.www
14.qqq
15.eee
16.test
17.dd
18.ss

touch

使用语法:touch [-acfm][-d <日期时间>][-r <参考文件或目录>][-t <日期时间>][文件或目录...] 
或 touch [-acfm][日期时间][文件或目录...] 
命令功能:改变文件或目录时间

默认情况下,如果指定的文件不存在的时候,touch命令会创建对应的文件 
常用选项及示例 
-t<日期时间>  使用指定的日期时间,而非现在的时间。 
-a或–time=atime或–time=access或–time=use  只更改存取时间。

1.[root - gwx-st ~/test]#>ll -u test1
2.-rw-r--r--. 2 root root 24 Mar 11  2016 test1
3.[root - gwx-st ~/test]#>touch -at 201611041700.25 test1
4.[root - gwx-st ~/test]#>ll -u test1
5.-rw-r--r--. 2 root root 24 Nov  4 17:00 test1

-c或–no-create  不建立任何文件。

1.[root - gwx-st ~/test]#>ll
2.total 16K
3.-rw-r--r--. 1 root root 3.0K Oct 31 08:39 passwd
4.-rw-r--r--. 2 root root   24 Nov  4 17:42 test1
5.-rw-r--r--. 1 root root    9 Nov  4 17:35 test2
6.-rw-r--r--. 2 root root   24 Nov  4 17:42 test.mv
7.[root - gwx-st ~/test]#>touch -c gghgag
8.[root - gwx-st ~/test]#>ll
9.total 16K
10.-rw-r--r--. 1 root root 3.0K Oct 31 08:39 passwd
11.-rw-r--r--. 2 root root   24 Nov  4 17:42 test1
12.-rw-r--r--. 1 root root    9 Nov  4 17:35 test2
13.-rw-r--r--. 2 root root   24 Nov  4 17:42 test.mv

-m或–time=mtime或–time=modify  只更改变动时间。

1.[root - gwx-st ~/test]#>ll test1 
2.-rw-r--r--. 2 root root 24 Nov  4 17:42 test1
3.[root - gwx-st ~/test]#>touch -mt 201611010000 test1
4.[root - gwx-st ~/test]#>ll test1
5.-rw-r--r--. 2 root root 24 Nov  1 00:00 test1

-r<参考文件或目录>  把指定文件或目录的日期时间,统统设成和参考文件或目录的日期时间相同。

1.[root - gwx-st ~/test]#>ll test1 test2
2.-rw-r--r--. 2 root root 24 Nov  1 00:00 test1
3.-rw-r--r--. 1 root root  9 Nov  4 17:35 test2
4.[root - gwx-st ~/test]#>touch -r test1 test2
5.[root - gwx-st ~/test]#>ll test1 test2
6.-rw-r--r--. 2 root root 24 Nov  1 00:00 test1
7.-rw-r--r--. 1 root root  9 Nov  1 00:00 test2

umask

使用语法:umask [-S][权限掩码] 
命令功能:指定在建立文件时预设的权限掩码

注意:umask设定的值在对象为文件的时候为被6减为设定的默认值,比如umask 077 ,则其权限为600;另外如果是只想对当前的一个操作指定与当前umask不等的设定时,可以使用以下方式实现:即umask只在子shell生效的效果

1.    [root - gwx-st ~]#>ll umask
2.    ls: cannot access umask: No such file or directory
3.    [root - gwx-st ~]#>(umask 333;touch umask)
4.    [root - gwx-st ~]#>ll umask
5.    -r--r--r--. 1 root root 0 Nov  5 08:22 umask

常用选项及示例

-S  以文字的方式来表示权限掩码

1.[root - gwx-st ~]#>umask
2.0022
3.[root - gwx-st ~]#>umask -S
4.u=rwx,g=rx,o=rx

whereis

使用语法:whereis [-bfmsu][文件...] 
命令功能:会在特定目录中查找符合条件的文件 
常用选项及示例

-b  只查找二进制文件。

1.[root - gwx-st ~]#>whereis -b ls
2.ls: /usr/bin/ls
3.

which

使用语法:which [文件...] 
命令功能:会在环境变量$PATH设置的目录里查找符合条件的文件 
常用选项及示例

1.[root - gwx-st ~]#>which ls
2.ls is aliased to `ls -hF --color‘
3.ls is /usr/bin/ls

5、bash的工作特性之命令执行状态返回值和命令行展开所涉及的内容及其示例演示。

bash的特性:命令行展开:

1)、命令行展开; 
以某些bash能够解释的符号来代替命令中的某些参数。 
~:展开为用户的家目录; 
例:切换至家目录 
cd ~;pwd 
/root 
{}:可承载一个以逗号分隔的列表,并将其展开为多个路径; 
例:在/tmp/d目录下创建f1,f2,f3三个文件 
touch /tmp/d/f{1,2,3} 
bash

bash特性:命令的执行状态结果: 
1)、bash的基础特性之状态值返回:在bash中使用一个特殊的变量$?来保存上一个命令的执行状态结果。 
0表示成功, 
1-255表示失败 
例如: 
技术分享

6、请使用命令行展开功能来完成以下练习:

(1)、创建/tmp目录下的:a_c, a_d, b_c, b_d

touch  /tmp {a,b}{c,d}

(2)、创建/tmp/mylinux目录下的:

mylinux/ mkdir /tmp/mylinux

├── bin :touch /tmp/mylinux/bin

├── boot:touch /tmp/mylinux/boot

│   └── grub:touch /tmp/mylinux/boot/grub

├── dev:touch /tmp/mylinux/dev

├── etc:touch /tmp/mylinux/etc

│   ├── rc.d:touch /tmp/mylinux/etc/rc.d

│   │   └── init.d:touch /tmp/mylinux/etc/rc.d/init.d

│   └── sysconfig:touch /tmp/mylinux/etc/sysconfig

│       └── network-scripts:touch /tmp/mylinux/etc/sysconfig/network-script

├── lib:touch /tmp/mylinux/lib

│   └── modules:touch /tmp/mylinux/lib/modules

├── lib64:touch /tmp/mylinux/lib64

├── proc:touch /tmp/mylinux/proc

├── sbin:touch /tmp/mylinux/sbin

├── sys:touch /tmp/mylinux/sys

├── tmp:touch /tmp/mylinux/tmp

├── usr:touch /tmp/mylinux/usr

│   └── local:touch /tmp/mylinux/usr/local

│       ├── bin:touch /tmp/mylinux/usr/local/bin

│       └── sbin:touch /tmp/mylinux/usr/local/sbin

└── var:touch /tmp/mylinux/var

├── lock:touch /tmp/mylinux/lock

├── log:touch /tmp/mylinux/log

└── run:touch /tmp/mylinux/run

7、文件的元数据信息有哪些,分别表示什么含义,如何查看?如何修改文件的时间戳信息。

文件的数据分两种:一种元数据,既属性数据;一种就是数据本身;可使用stat命令查看文件的元数据:

例如:

]# stat /etc/passwd

文件:”/etc/passwd”

大小:2483 块:8 IO 块:4096 普通文件

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

权限:(0644/-rw-r–r–) Uid:( 0/ root) Gid:( 0/ root)

环境:systemu:objectr:passwdfilet:s0

最近访问:2016-09-22 22:07:14.897045766 +0800

最近更改:2016-09-20 18:10:23.223086880 +0800

最近改动:2016-09-20 18:10:23.227086888 +0800

创建时间:-

其中:

file:文件名;

size:文件大小

block:文件占了多少个数据块

IO Block:文件所占数据块的块大小

Device:硬件,既说明该文件在硬盘的那个柱面

Inode:节点号

links:链接

Access(第一个):权限

Uid:该文件所属的属主

Gid:该文件所属的属组

context:安全上下文

Access(第二个):文件上一次的访问时间

Modify:文件上一次修改的时间

Change:文件上一次属性更改的时间


2)修改文件的时间戳信息:

可以使用touch命令更改文件的时间戳:

语法:

touch [OPTION]… FILE…

常用选项:

-c: 指定的文件路径不存在时不予创建;

-a: 仅修改access time;

-m:仅修改modify time;

-t:使用指定的日期时间,而非现在的时间;[[CC]YY]MMDDhhmm[.ss];

8、显示/var目录下所有以l开头,以一个小写字母结尾,且中间至少出现一位数字(可以有其它字符)的文件或目录。ls -d  /var/lj*[0-9]*[[:lower:]]

9、显示/etc目录下,以任意一个数字开头,且以非数字结尾的文件或目录。

ls -d /etc/[0-9]*[^0-9]

10、显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录。

ls -d /etc/[^[:allpha:]][[:allpha:]]*

11、在/tmp目录下创建以tfile开头,后跟当前日期和时间的文件,文件名形如:tfile-2016-09-20-09-32-22。

touch /tmp/tfile-‘date +"%Y-%m-%d-%H-%M-%S‘

12、复制/etc目录下所有以.d结尾的文件或目录至/tmp/mytest2目录中。

cp -d /etc/*.d /tmp/mytest2

13、复制/etc/目录下所有以l或m或n开头,以.conf结尾的文件至/tmp/mytest3目录中。

cp  /etc/[mnl]*.conf /tmp/mytest3


高端运维班第一次作业

标签:数据中心   服务器   计算机   linux   工作站   

原文地址:http://11827549.blog.51cto.com/11817549/1881903

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!