在Ubuntu中访问共享文件夹通常需要使用SMB(Server Message Block)协议,可以通过以下步骤进行设置和访问:
sudo apt-get update
sudo apt-get install cifs-utils
sudo mkdir /mnt/share
//server/share
替换为实际的共享文件夹路径,username
替换为共享文件夹的用户名,password
替换为密码:sudo mount -t cifs //server/share /mnt/share -o username=username,password=password
输入密码后,如果一切顺利,你将能够在/mnt/share
目录中看到共享文件夹的内容。
卸载共享文件夹: 当你想断开与共享文件夹的连接时,可以使用以下命令来卸载共享文件夹:
sudo umount /mnt/share
请注意,上述步骤中的//server/share
、username
和password
需要替换为实际的共享文件夹路径、用户名和密码。另外,为了确保共享文件夹在每次启动系统后都能自动挂载,可以将挂载命令添加到/etc/fstab
文件中。