2015. 7. 29. 18:07

* Samba에서 공유 디렉토리 확인 방법


smbclient -L WindowsIP -U WindowsID


ex) smbclient -L 192.168.54.15 -U root5



* 공유할 디렉토리 마운트 방법


mount -t cifs //WindowsIP/Folder mountFolder/ -o username='root',password='1234'


ex) mount -t cifs //192.168.54.15/Samba linuxsamba/ -o username=root,password=1234


혹시나 username이나 password에 공백이 있으면 '  '로 묶어서 테스트 해본다