要在Linux中創建軟鏈接目錄,您可以使用以下命令:
ln -s /path/to/source_directory /path/to/symlink_directory
在這個命令中,/path/to/source_directory
是要鏈接的原始目錄的路徑,/path/to/symlink_directory
是要創建軟鏈接目錄的路徑。
例如,如果要在/home/user1
目錄下創建一個名為 docs
的軟鏈接目錄,指向 /var/docs
目錄,可以使用以下命令:
ln -s /var/docs /home/user1/docs
這將在 /home/user1
目錄下創建一個名為 docs
的軟鏈接目錄,指向 /var/docs
目錄。