站內搜尋

Tuesday, October 14, 2014

[MAC] 如何在 OS X 使用 smb 掛載及移除(使用下命令方式 command line)(mount -t smbfs)(umount)


掛載:
mount -t smbfs smb://user:password@192.168.0.11/folder /Volumes/tmp/
(192.168.0.11/folder 只是舉例)

移除:
umount /Volumes/tmp/

備註:
因為不能直接 mount 在 Volumes/,所以必須建一個 tmp/,可以直接下命令:
mkdir /Volumes/tmp && mount -t smbfs smb://user:password@192.168.0.11/folder /Volumes/tmp/

No comments:

Post a Comment