linux操作命令
.将etc切换到目录下[root@localhost ~]# cd /etc[root@localhost etc]#2.查看dev[root@localhost etc]# ls -ld /devdrwxr-xr-x. 20 root root 3300 3月24 14:44 /dev[root@localhost etc]#3.查看当前目录[root@localhost etc]# pwd/e
·
.将etc切换到目录下
[root@localhost ~]# cd /etc
[root@localhost etc]#
2.查看dev
[root@localhost etc]# ls -ld /dev
drwxr-xr-x. 20 root root 3300 3月 24 14:44 /dev
[root@localhost etc]#
3.查看当前目录
[root@localhost etc]# pwd
/etc
[root@localhost etc]#
4.切换到当前用户的家目录下
[root@localhost etc]# cd
[root@localhost ~]#
5.切换到上次所在的目录
[root@localhost ~]# cd -
/etc
[root@localhost etc]#
6. 切换到上级目录
[root@localhost etc]# cd ..
[root@localhost /]#
7.切换到当前用户的家目录下
[root@localhost ~]# cd ~
[root@localhost ~]#
8.切换到上两级目录
[root@localhost ~]# cd .. / ..
[root@localhost /]#
9.列出当前目录下的文件或目录信息
[root@localhost /]# ls
bin dev home lib64 mnt proc run srv tmp var
boot etc lib media opt root sbin sys usr
[root@localhost /]#
10.显示文件或者目录的详细信息
[root@localhost /]# ls -l
总用量 36
lrwxrwxrwx. 1 root root 7 3月 22 00:06 bin -> usr/bin
dr-xr-xr-x. 5 root root 4096 3月 24 14:45 boot
drwxr-xr-x. 20 root root 3300 3月 24 14:44 dev
drwxr-xr-x. 144 root root 8192 3月 24 14:44 etc
drwxr-xr-x. 4 root root 29 3月 22 10:48 home
lrwxrwxrwx. 1 root root 7 3月 22 00:06 lib -> usr/lib
lrwxrwxrwx. 1 root root 9 3月 22 00:06 lib64 -> usr/lib64
drwxr-xr-x. 2 root root 6 4月 11 2018 media
drwxr-xr-x. 2 root root 6 4月 11 2018 mnt
drwxr-xr-x. 3 root root 16 3月 22 00:08 opt
dr-xr-xr-x. 226 root root 0 3月 24 14:44 proc
dr-xr-x---. 7 root root 4096 3月 24 15:45 root
drwxr-xr-x. 43 root root 1320 3月 24 15:51 run
lrwxrwxrwx. 1 root root 8 3月 22 00:06 sbin -> usr/sbin
drwxr-xr-x. 2 root root 6 4月 11 2018 srv
dr-xr-xr-x. 13 root root 0 3月 24 14:44 sys
drwxrwxrwt. 59 root root 8192 3月 24 15:46 tmp
drwxr-xr-x. 13 root root 155 3月 22 00:06 usr
drwxr-xr-x. 21 root root 4096 3月 22 00:14 var
[root@localhost /]#
11.显示所有文件,包括以“.”开头的隐藏文件
[root@localhost /]# ls -a
. bin dev home lib64 mnt proc run srv tmp var
.. boot etc lib media opt root sbin sys usr
[root@localhost /]#
12.如果参数是目录,以得到目录的详细信息
[root@localhost /]# ls -ld
dr-xr-xr-x. 17 root root 224 3月 22 00:12 .
[root@localhost /]#
13. 显示/etc的详细信息
[root@localhost /]# ls -ld /etc/
drwxr-xr-x. 144 root root 8192 3月 24 14:44 /etc/
[root@localhost /]#
14.绝对路径
[root@localhost /]# cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]#
15.相对路径
16.查看文件内容
[root@localhost /]# cat ls
1
2
3
5
6
7
7
77
87
68767
8
378
3
7853
78
3
73
78
3
7
[root@localhost /]#
17.显示行号
[root@localhost ~]# cat -n ls
1 qwdqw
2 qwdqwd
3 qf
4 qwf
5 qw
6 fq
7 wf
8 qwf
9 qwfqw
10 .fq
11 wf
12 qw
13 f
14 qwf
15 qw
16 f
17 qwf
18 qwf
19 qw
20 f
21 qwf
22 qw
23 f
24 qwf
25 qwf
26 qw
27 qfw
28
29 qwf
30 qwg
31 fg
32 trhrthjn
33 rt
34 n
35 trhn
36 trn
37 rt
38 n
39 rtn
[root@localhost ~]#
18.分屏显示文件内容
[root@localhost ~]# cat -n ls
1 qwdqw
2 qwdqwd
3 qf
4 qwf
5 qw
6 fq
7 wf
8 qwf
9 qwfqw
10 .fq
11 wf
12 qw
13 f
14 qwf
15 qw
16 f
17 qwf
18 qwf
19 qw
20 f
21 qwf
22 qw
23 f
24 qwf
25 qwf
26 qw
27 qfw
28
29 qwf
30 qwg
31 fg
32 trhrthjn
33 rt
34 n
35 trhn
36 trn
37 rt
38 n
39 rtn
[root@localhost ~]# ^C
[root@localhost ~]# more ls
qwdqw
qwdqwd
qf
qwf
qw
fq
wf
qwf
qwfqw
.fq
wf
qw
f
qwf
qw
f
qwf
qwf
qw
f
qwf
qw
f
qwf
qwf
--More--(63%)
19.分屏显示文件内容
[root@localhost ~]# less ls
qwdqw
qwdqwd
qf
qwf
qw
fq
wf
qwf
qwfqw
.fq
wf
qw
f
qwf
qw
f
qwf
:qwf
qw
f
qwf
qw
f
qwf
qwf
ls
20. 查看文件前十行内容
[root@localhost ~]# head ls
qwdqw
qwdqwd
qf
qwf
qw
fq
wf
qwf
qwfqw
.fq
[root@localhost ~]#
21.显示文件前几行
[root@localhost ~]# head -n 12 ls
qwdqw
qwdqwd
qf
qwf
qw
fq
wf
qwf
qwfqw
.fq
wf
qw
[root@localhost ~]#
22.将/etc和tmp复制到passwd下
[root@localhost ~]# cp /etc/passwd /tmp/passwd
cp:是否覆盖"/tmp/passwd"?
[root@localhost ~]#
23.删除一个文件
[root@localhost ~]# rm lisen
rm:是否删除普通空文件 "lisen"?
[root@localhost ~]#
24.删除一个目录
[root@localhost /]# mkdir 999
[root@localhost /]# rm -rf 999
[root@localhost /]#
25.查看系统信息
[root@localhost /]# uname
Linux
[root@localhost /]#
26.查看系统详细信息
Linux localhost.localdomain 3.10.0-957.el7.x86_64 #1 SMP Thu Nov 8 23:39:32 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost /]#
27.关机
[root@localhost /]# shutdown
28.重启系统
[root@localhost /]# shutdown -r reboot
29.列出使用过的命令
[root@localhost /]# history
1 cd
2 ifconfig
3 cd
4 history
5 ip a
6 cd
7 cd /etc
8 ls -ld dev
9 ls -ld /dev
10 vim /tmp
11 ls
12 cd
13 cd /etc
14 ls -ld /dev
15 pwd
16 cd
17 cd -
18 cd ..
19 cd ~
20 cd~
21 cd ~
22 cd .. / ..
23 ls
24 ls -l
25 ls -a
26 ls -ld
27 ls -ld /etc/
28 cd /etc/sysconfig/network-scripts/
29 cd /
30 cd sysconfig/network-scripts/
31 cd etc/pwd
32 ls cd
33 ls
34 touch ls
35 cd tmp/ls
36 cd tmp/ls/
37 touch ls
38 ls
39 cd etc/ls/
40 cd sysconfig/network-scripts/
41 sysconfig/network-scripts/
42 cd/tmp/sysconfig/network-scripts/
43 cat /etc/
44 cat /tmp/
45 cat ls
46 touch ls
47 cat ls
48 cat /dev
49 useradd ls
50 useradd lisen
51 cat lisen
52 cat ls
53 more ls
54 vim ls
55 cat ls
56 wq
57 cat ls
58 cat -n
59 cd
60 cp /etc/passwd /tmp/passwd
61 ls
62 cp /etc/passwd /tmp/passwd
63 ls
64 cp /etc/passwd /tmp/passwd
65 ls passwd
66 cp /etc/passwd /tmp/passwd
67 touch
68 touch lisen
69 rm lisen
70 mkdir lisen
71 mkdir ls
72 mkdir 666
73 rm -rf 666
74 ls
75 cd /
76 mkdir 999
77 rm -rf 999
78 4.uname
79 uname
80 [root@localhost /]# uname
81 Linux
82 [root@localhost /]#
83*
84 histoyr
85 history
[root@localhost /]#
30.创建目录
[root@localhost /]# mkdir 123
[root@localhost /]#
31.创建文件
[root@localhost /]# touch 444
[root@localhost /]#
更多推荐
已为社区贡献1条内容
所有评论(0)