linux cd root directory linux cd root directory, linux ,cd, root directory, bash, shell, root, hosts,
https://www.cyberciti.biz/faq/how-to-change-directory-in-linux-terminal/
hosts
$ cd /
# OR
$ cd /.
$ cat /etc/hosts
$ vim /etc/hosts
# 切换到当前用户的根目录(绝对路径)
$ cd
# 等价于
$ cd ~
# 切换到上层目录(相对路径)
$ cd -
# 等价于
$ cd ..
# 切换到系统的根目录(绝对路径)
$ cd /