linux主机:出现~$,/$,~#,/#的区别与含义

root@ubuntu:/# 这是根目录,对一般用户只读,root用户有所有权限。

root@ubuntu:~# 这是home目录,每个非root用户都会有自己的home目录

cd命令介绍:例如当前在/etc/X11/fs目录下

vps

1、cd /  ————到 / 返回到根目录
[root@sxhy ~]# cd /etc/X11/fs
[root@sxhy fs]# cd /
[root@sxhy /]# pwd
/

2、cd 或 cd ~ 返回到用户目录
[root@sxhy ~]# cd /etc/X11/fs
[root@sxhy fs]# cd
[root@sxhy ~]#

[root@sxhy ~]# cd /etc/X11/fs
[root@sxhy fs]# cd ~
[root@sxhy ~]# 

3、cd ..  ————到 /etc/X11 返回到上层目录
[root@sxhy ~]# cd /etc/X11/fs
[root@sxhy fs]# cd ..
[root@sxhy X11]# pwd
/etc/X11

4、cd - ————到 /etc/X11 返回到之前所在的目录
[pazza@localhost X11]$ cd -
/etc
[pazza@localhost etc]$ cd -
/etc/X11
[pazza@localhost X11]$ cd -
/etc
[pazza@localhost etc]$ cd -
/etc/X11

5、cd ../.. ————到 /etc 返回到上上层目录
[root@sxhy X11]# cd /etc/X11/fs
[root@sxhy fs]# cd ../..
[root@sxhy etc]# pwd
/etc</p>

10 Jun 2023 - toptradeready.com