Home > Article > Operation and Maintenance > Detailed explanation of the difference between "/" and "~" under Linux
Detailed explanation of the difference between "/" and "~" under Linux
"/ " is the root directory, "~" is the home directory. Linux storage is mounted, which is equivalent to a tree shape. The source is "/", which is the root directory. Each user has a "home" directory, which is the user's personal directory. For example, the "home" directory of the root user is /root, and the home directory of ordinary user a is /home/a. You can see
After the user is created, we can see it in the /home directory, which is the user's "home" directory created by the system by default.
/home/a is the home directory "~" after switching to user a
Thanks I hope you will benefit a lot from reading this.
This article is reproduced from: https://blog.csdn.net/lq_kl/article/details/81056241
Recommended tutorial: "Linux Operation and Maintenance"
The above is the detailed content of Detailed explanation of the difference between "/" and "~" under Linux. For more information, please follow other related articles on the PHP Chinese website!