Advertisement
Guest User

Untitled

a guest
Aug 8th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. sudo apt-get install cifs-utils
  2.  
  3. mount -t cifs -o username=USERNAME,password=PASSWD //192.168.1.88/shares /mnt/share
  4.  
  5. mkdir /media/paul/cifsShare
  6.  
  7. sudo mount -t cifs //nas-server/cifsShare /media/paul/cifsShare -o username=paulOnNAS,iocharset=utf8,file_mode=0777,dir_mode=0777,soft,user,noperm
  8.  
  9. mount -t cifs -o username=USERNAME,password=PASSWD,uid=$USER,gid=$USER //192.168.1.88/shares ~/mnt/share
  10.  
  11. mount -t cifs -o username=USERNAME,uid=$USER,gid=$USER //192.168.1.88/shares ~/mnt/share
  12.  
  13. $ nautilus --no-desktop &
  14.  
  15. smb://thinkpad/ddrive/
  16.  
  17. sudo mount -t cifs -o username=frank //thinkpad/ddrive /mnt/ddrive
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement