Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Linux 新手,我需要创建一个系统范围的别名,将用户带到他们的部门共享数据目录。用户可以有不同的部门文件夹。有人有任何线索吗?
您想创建一个符号链接。使用 ln 命令。
对于软链接:
ln -s <source path> <alias>
您可以创建软链接或符号链接。
ln -s "path to the source directory" "name of the alias"