Acer Aspire One how to mount samba share

First open a terminal, click alt f2, and type terminal.

Create the folder where you want it to be mounted.

mkdir ~/share

To mount the share use the below command.

sudo mount -t cifs //ip/share ~/share -o user=guest

If the share is writable, then use the below command.

sudo mount -t cifs //ip/share ~/share -o user=guest,rw

Example if the share needs a password.

sudo mount -t cifs //ip/share ~/share -o user=username

You don’t need to enter password in command, you will be prompted if a password is needed. Thanks Peter for the info.

Share and Enjoy:
  • Digg
  • Reddit
  • del.icio.us
  • Google Bookmarks
  • Facebook
  • MySpace
  • Add to favorites
  • StumbleUpon
  • Twitter
  • Yahoo! Bookmarks

Related posts:

  1. Mount samba share on boot
  2. Acer Aspire One Lux Delux
  3. Ordered a battery for my laptop finally
  4. Acer Aspire One 8 hour battery after market
  5. Fedora 10 on Acer Aspire One
This entry was posted in acer aspire one and tagged , . Bookmark the permalink.



4 Responses to Acer Aspire One how to mount samba share

  1. Erik says:

    Finally I found a clear explanation on how to mount samba shares on an Acer Aspire One. Thanks a lot!

    Erik

  2. Peter says:

    Brilliant starting point. But leave the password because you will be prompted for it. So:
    sudo mount -t cifs //ip/share ~/share -o user=username

    or switch to root and do:
    mount -t cifs //ip/share ~/share -o user=username

    In both cases just provide the password you are prompted for.
    :-)

  3. TonyC says:

    I get this

    No ip address specified and hostname not found

  4. admin says:

    Did you change “ip” with the correct IP address of the computer with the share on it?