在本地计算机上安装网络文件夹

在本地计算机上安装网络文件夹

我正在尝试将另一台计算机上的文件夹安装为我的本地安装。

我的电脑和另一台电脑(我们的家庭服务器)都是 Ubuntu,都运行 14.04。我想在本地挂载的文件夹位于磁盘 3 上,名为theatre(在另一个文件夹内,也称为theatre),它被挂载在/mnt/文件夹中,因此它的路径是~/mnt/theatre/theatre/,服务器的网络地址是 192.168.2.15。

我正在尝试在Videos文件夹内部本地安装该文件夹,以便该路径是/home/peter/Videos

到目前为止我已经尝试过:

$ sudo mount cifs//192.168.2.15/mnt/theatre/theatre /home/peter/Videos
mount: special device cifs//192.168.2.15/mnt/theatre/theatre does not exist

我也尝试过:

$ sudo mount //192.168.2.15/mnt/theatre/theatre /home/peter/Videos
Password for root@//192.168.2.15/mnt/theatre/theatre: 
Retrying with upper case share name
mount error(6): No such device or address

和:

$ blkid
/dev/sda1: UUID="c88ee187-d2b5-406f-90ed-e8ff3075ace1" TYPE="ext4" 
/dev/sda5: UUID="b1bc3038-14d8-4752-b494-70a42e3e3b05" TYPE="swap" 
/dev/sdb1: LABEL="DISK 1" UUID="50EE-3B7A" TYPE="vfat" 
/dev/sdc1: LABEL="DISK 2" UUID="7780-4603" TYPE="vfat" 
/dev/sdd1: LABEL="Disk 3" UUID="8d70789a-19a7-4aae-8f0c-2f93a7e172e2" TYPE="ext3" 

任何帮助,将不胜感激。

答案1

您似乎正在尝试连接到 Samba 共享 (cifs)

对其他用户有帮助。

回答您的评论,不。如果您不与 Windows 用户共享,您可以简单地使用通常速度更快的 NFS。

相关内容