Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何重命名 MOUNT(从名为 mnt 的 Windows 挂载的共享文件夹)?
如何重命名mnt?
这是我在 linux 命令工具上使用的命令,用于将我的 Shared 文件夹从 windows pc 挂载到 linux 控制器。
# mount -t cifs -o username=myusername,password=mypassword //10.80.50.50/Share /mnt
所以我挂载的共享文件夹现在名称为 mnt ......如何重命名它?
谢谢...
按着这些次序:
卸载:
umount /mnt
创建另一个文件夹:
mkdir /my_new_mount
再次挂载:
mount -t cifs -o username=myusername,password=mypassword //10.80.50.50/Share /my_new_mount
更新于/etc/fstab
/etc/fstab