Mounting a Buffalo Linkstation NAS on a Raspberry Pi (Raspbmc) or other Linux distro
In order to mount a NAS share, you need to have root priviliges. If you're running raspbmc on a raspberry pi and a root account has not been configured (default), you can use:
  • sudo mkdir /media/nas
  • sudo vi /etc/fstab

Add the following line:
  • //www.xxx.yyy.zzz/Share /media/nas cifs vers=3.0,username=guest,password=,uid=1000 0 0
Where www.xxx.yyy.zzz is the ipaddress of your NAS. Save the file and execute the following command:
  • sudo mount -a
On 2023-04-30, Aecio wrote:

comment=I%20tried%20this%20and%20it%20does%20not%20work.%20I%20know%20the%20local%20directory%20is%20created%20and%20I%20know%20the%20network%20share's%20name%20and%20path%20are%20correct%2C%20for%20I%20tested%20with%20smb-client.%20However%2C%20the%20mount%20results%20in%20mount%20error(2)%3A%20No%20such%20file%20or%20directory.%0D%0A%0D%0AI%20had%20to%20include%20the%20vers%3D2.0%20in%20the%20parameters%0D%0A%0D%0AAny%20help%20appreciated!

On 2023-05-08, Eeuwe Vandyke wrote:

comment=Hello%20Aeciolemos%2C%0D%0A%0D%0AThank%20you%20for%20your%20comment.%20You%20are%20absolutely%20right.%20I%20will%20update%20my%20blog%20accordingly.%20%0D%0AAt%20the%20time%20that%20I%20wrote%20the%20blog%20(2014)%20the%20option%20vers%3D2.0%20%20%20(or%20vers%3D3.0)%20was%20not%20necessary.%0D%0A%0D%0AIt%20has%20changed%20somewhere%20around%202017.%20See%20also%3A%0D%0Ahttps%3A%2F%2Fgit.kernel.org%2Fpub%2Fscm%2Flinux%2Fkernel%2Fgit%2Ftorvalds%2Flinux.git%2Fcommit%2Ffs%2Fcifs%3Fid%3Deef914a9eb5eb83e60eb498315a491cd1edc13a1%0D%0A%0D%0AOn%20the%20command%20line%3A%0D%0Asudo%20mount%20-t%20cifs%20%2F%2Faaa.bbb.ccc.ddd%2FTemp%20%2Fmedia%2Fnas_tmp%20%20-o%20vers%3D3.0%2Cusername%3DUSERNAME%2Cpassword%3DPASSWORD%0D%0A%0D%0AOr%20via%20editing%20%2Fetc%2Ffstab%0D%0A%2F%2Faaa.bbb.ccc.ddd%2FTemp%20%20%20%2Fmedia%2Fnas_tmp%20cifs%20vers%3D3.0%2Cusername%3DUSERNAME%2Cpassword%3DPASSWORD%2Cuid%3D1000%200%200%0D%0A%0D%0AThen%20you%20can%20simply%20use%3A%0D%0Asudo%20mount%20%2Fmedia%2Fnas_tmp%0D%0A%0D%0AI%20hope%20this%20helps.%0D%0A

Back to List

All form fields are required.
A confirmation mail for the comments will be send to you.