2.6 相对和绝对路径
1、相对与绝对路径
绝对路径:是从根开始的,也就是/
相对路径:是从相对当前的路径
[[email protected] ~]# ls .ssh/authorized_keys
.ssh/authorized_keys
[[email protected] ~]# ll
total 24
-rw-r--r--. 1 root root 13 Mar 20 2017 a.txt
-rw-------. 1 root root 1066 Mar 20 2017 anaconda-ks.cfg
drwxr-xr-x. 2 root root 6 Dec 14 08:41 authorized_keys
drwxr-xr-x. 3 root root 20 Aug 22 18:26 mininet
drwxr-xr-x. 2 root root 6 Jun 29 22:05 ovs
-rw-r--r--. 1 root root 11963 Dec 14 09:26 q
-rw-r--r--. 1 root root 26 Dec 12 09:50 ???
[[email protected] ~]# ls .ssh/authorized_keys
.ssh/authorized_keys
[[email protected] ~]# ls /root/.ssh/authorized_keys
/root/.ssh/authorized_keys
[[email protected] ~]#
[[email protected] ~]#
[[email protected] ~]#
[[email protected] ~]# pwd
/root
[[email protected] ~]# ls .ssh/authorized_keys
.ssh/authorized_keys
[[email protected] ~]# ll
total 24
2.7 cd命令
1、cd命令
[[email protected] ~]# cd /etc/sysconfig/
[[email protected] /etc/sysconfig]#
[[email protected] /etc/sysconfig]#
[[email protected] /etc/sysconfig]# cd -
/root
[[email protected] ~]#
[[email protected] ~]#
[[email protected] ~]# cd -
/etc/sysconfig
[[email protected] /etc/sysconfig]# [wd
-bash: [wd: command not found
[[email protected] /etc/sysconfig]# pwd
/etc/sysconfig
[[email protected] /etc/sysconfig]# cd -
/root
[[email protected] ~]# pwd
/root
[[email protected] ~]# cd -
/etc/sysconfig
[[email protected] /etc/sysconfig]#
cd- 表示上一次所在的目录在哪里
[[email protected] /etc/sysconfig]# cd
[[email protected] ~]#
cd 后面什么都不加,就直接切换回家目录
[[email protected] ~]# cd /home
[[email protected] /home]#
[[email protected] /home]#
[[email protected] /home]# cd ~
cd ~ 返回用户家目录
cd.. 返回根/ 目录
2.8 创建和删除目录mkdir/rmdir
1、mkdir-创建目录
没有目录,无法创建多级目录,可以使用-p参数
创建多级目录,使用参数:-p
删除目录:rm命令
删除非空目录--使用-p参数
2.9 rm命令
rm删除目录和文件
删除目录,不用询问的话,使用-f 参数
rm不能删除空目录
使用rm -rf参数,删除所有目录和文件,并不提示