我的 Ubuntu 10.04.3 服务器上有两个分区。
分区 1:/mnt/storage/ 分区 2:/var/www/myweb/
现在当我运行以下命令时
$ ln /mnt/storage/sourcefile.txt /var/www/myweb/linkedfile.txt
我懂了
ln:创建硬链接`/var/www/myweb/linkedfile.txt'=>`sourcefile.txt':跨设备链接无效
知道如何建立这个符号链接吗?
答案1
您不能像这样在文件系统之间使用硬链接。您需要使用ln -s
创建符号链接。
ln -s /mnt/storage/sourcefile.txt /var/www/myweb/linkedfile.txt
答案2
$ ln -s /mnt/storage/sourcefile.txt /var/www/myweb/linkedfile.txt
答案3
类型密码在包含文件夹的终端中,获取分区的完整路径,然后将其放入
$ ln -s fullpath/sourcefile.txt fullpath/linkedfile.txt
然后将链接移动到目标分区