如何重命名装载(从名为mnt的Windows装载的共享文件夹)?
如何重命名mnt?
这是我在linux命令工具上使用的命令,用于将我的共享文件夹从windows pc挂载到linux控制器。
# mount -t cifs -o username=myusername,password=mypassword //10.80.50.50/Share /mnt所以我挂载的共享文件夹现在名为mnt...如何重命名?
谢谢..。
发布于 2013-06-10 17:07:59
请按照以下步骤操作:
umount /mnt
再次使用mkdir /my_new_mount
在/etc/fstab中装载-t /my_new_mount
https://stackoverflow.com/questions/17020295
复制相似问题