notes, references

May 21, 2007

Windows Shared folder from Ubuntu

Filed under: File Sharing, Linux, ubuntu — karthik @ 7:31 am

Ubuntu and windows file sharing is covered on so many web sites in great detail – searching for ubuntu Samba file sharing mount windows share etc will get many links

http://ubuntuforums.org/showthread.php?t=280473

http://ubuntuguide.org/wiki/Ubuntu:Feisty

http://doc.gwos.org/index.php/Share_files_using_Samba

http://ubuntuforums.org/showthread.php?t=202605

https://help.ubuntu.com/ubuntu/serverguide/C/configuring-samba.html#windows-networking-clients

All I want to do is mount a windows shared folder on my ubuntu box and access the files; I am not worried about mounting during boot up and not sharing any files from ubuntu.

  1. install smbfs
    1. $sudo apt-get install smbfs
  2. use ‘mount’ to mount the file share
    1. for mount you need to create a local folder that will be the mount point for example create a folder test under /media
    2. then mount the share using
      1. $sudo mount -t smbfs -o username=myusername //192.168.0.10/sharename /media/test
      2. myusername – is a valid username on the windows machine
      3. the ip address is the ip of the windows machine
      4. sharename is the name given to the share on the windows machine
      5. This will prompt you for the passwor d- the password for myusername on the windows machine
      6. on successful password you will be able to see the contents of the sharedfolder under /media/test
      7. Note: if you this is the first time you are using sudo in this shell session or if sudo has timed out there will be two password prompts first for the sudo next for the share mount. you could avoid this by doing $sudo -v before doing the sudo mount
  3. to umount
    1. $sudo umount /media/test

2 Comments »

  1. Nice, thank u :)

    Comment by HomeMantra — August 9, 2010 @ 2:18 pm

  2. Excellent guide. I use a pipe in my Windows password so I was having trouble using the pass argument, but your way my terminal instance asked for the password and accepted it. Thank you again.

    Comment by mrballard — September 18, 2011 @ 10:21 pm


RSS feed for comments on this post. TrackBack URI

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Theme: Silver is the New Black. Blog at WordPress.com.

Follow

Get every new post delivered to your Inbox.