Linux mount 命令挂载 卸载Windows 共享文件夹

来源:互联网 发布:35岁程序员 编辑:程序博客网 时间:2024/05/23 11:58

挂载mount -t cifc "windows共享文件夹" "Linux /mnt路径"


例如:mount.cifs -o username="Administrator",password="PasswordForWindows" //10.10.0.192/test  /mnt/share


或mount -t cifs -o username="Administrator",password="PasswordForWindows" //10.10.0.192/test  /mnt/share


卸载:umount  /mnt/share

0 0