0条评论
还没有人评论过~
root@ubuntu:~/Test# touch hello.c root@ubuntu:~/Test# ls hello.c
rm命令:删除文件或者目录
cp和mv命令,相当于Windows平台复制和剪切
cat命令
more和less,分屏幕显示文件信息
more:
less:
head和tail命令
root@ubuntu:~/Test# wc hello.c 8 10 91 hello.c root@ubuntu:~/Test# wc -l hello.c 8 hello.c root@ubuntu:~/Test# wc -w hello.c 10 hello.c root@ubuntu:~/Test# wc -c hello.c 91 hello.c
root@ubuntu:~# df -h 文件系统 容量 已用 可用 已用% 挂载点 udev 973M 0 973M 0% /dev tmpfs 199M 9.0M 190M 5% /run /dev/sda1 21G 9.2G 11G 48% / tmpfs 992M 256K 992M 1% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 992M 0 992M 0% /sys/fs/cgroup tmpfs 199M 60K 199M 1% /run/user/1000
root@ubuntu:~/Test# ls -l 总用量 4 -rw-r--r-- 1 root root 91 10月 27 14:16 hello.c
-表示文件类型,d代表目录文件
rw- 归属用户的权限,该用户具有可读可写的权限
r-- 归属组的权限,该组仅有可读权限
r-- 其他用户权限,也是只具有可读权限
我们还可以用8进制的数字来表示权限位
哦,对了,后面还有一个1,那个1代表硬链接的计数,下面会有命令来进行演示
创建硬链接-ln src des
root@ubuntu:~/Test# ln hello.c hello.c.hard root@ubuntu:~/Test# ls hello.c hello.c.hard root@ubuntu:~/Test# ln hello.c hello.c.hard1 root@ubuntu:~/Test# ls -l 总用量 12 -rw-r--r-- 3 root root 91 10月 27 14:16 hello.c -rw-r--r-- 3 root root 91 10月 27 14:16 hello.c.hard -rw-r--r-- 3 root root 91 10月 27 14:16 hello.c.hard1
此时的硬链接计数变成了3,当我们的硬链接的计数变为0的时候,那么文件也会被删除
root@ubuntu:~/Test# ln -s hello.c hello.c.soft root@ubuntu:~/Test# ls -l 总用量 12 -rw-r--r-- 3 root root 91 10月 27 14:16 hello.c -rw-r--r-- 3 root root 91 10月 27 14:16 hello.c.hard -rw-r--r-- 3 root root 91 10月 27 14:16 hello.c.hard1 lrwxrwxrwx 1 root root 7 10月 27 14:43 hello.c.soft -> hello.c
chmod命令
chown和chgrp改变用户和改变组