如何重命名MOUNT(从名为mnt的Windows安装的共享文件夹)?
如何重命名mnt?
这是我用于linux命令工具的命令,用于将我的Shared文件夹从windows pc挂载到linux控制器。
# mount -t cifs -o username=myusername,password=mypassword //10.80.50.50/Share /mnt
所以我的挂载共享文件夹现在名为mnt ...如何重命名?
...谢谢
答案 0 :(得分:2)
请按照以下步骤操作:
卸载:
umount /mnt
创建另一个文件夹:
mkdir /my_new_mount
再次登上:
mount -t cifs -o username=myusername,password=mypassword //10.80.50.50/Share /my_new_mount
/etc/fstab