Guest User

Untitled

a guest
Sep 25th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. sudo mount -t cifs -o username=test,password=pw1234 //<server>/home ~/test
  2.  
  3. mount error(2): No such file or directory
  4. Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
  5.  
  6. smbclient -U test -L //<server>
  7. WARNING: The "syslog" option is deprecated
  8. Enter test's password:
  9. Domain=[WORKGROUP] OS=[Windows 6.1] Server=[Samba 4.4.16]
  10.  
  11. Sharename Type Comment
  12. --------- ---- -------
  13. ...
  14. home Disk Home directory of test
  15. Domain=[WORKGROUP] OS=[Windows 6.1] Server=[Samba 4.4.16]
  16.  
  17. sudo mount -t cifs -o username=test,password=pw1234,vers=1.0 //<server>/home /home/pi/test/
  18. mount error(2): No such file or directory
  19. Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
  20.  
  21. sudo mount -t cifs -o username=test,password=pw1234,sec=ntlm //<server>/home /home/pi/test/
  22. mount error(22): Invalid argument
  23. Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
  24.  
  25. sudo mount -v -t cifs -o username=test,password=pw1234 //<server>/home /home/pi/test/
  26. mount.cifs kernel mount options: ip=<correct_ip>,unc=\<server>home,user=test,pass=********
  27. mount error(2): No such file or directory
  28. Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Add Comment
Please, Sign In to add comment