2010年11月28日 星期日

在ubuntu mount另一台ubuntu架的samba

sudo mount -t cifs //192.168.2.3/chihying /home/XXXX -o username=XXXX -o password=XXXX -o iocharset=utf8


原本使用 mount -t smbfs一直失敗
改用cifs就成功了

mount: wrong fs type, bad option, bad superblock on //192.168.2.3/chihying,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount. helper program)
In some cases useful info is found in syslog - try
dmesg | tail or so


使用其他帳號開的分享,掛上去之後發現沒有寫入權限
解決方法: 加入 -o noperm
ex:
sudo mount -t cifs //192.168.2.3/chihying /home/XXXX -o username=XXXX -o password=XXXX -o iocharset=utf8 -o noperm

沒有留言: