help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Samba user mounts


From: Ricardo Wurmus
Subject: Re: Samba user mounts
Date: Sun, 14 Jan 2018 17:36:20 +0100
User-agent: mu4e 1.0-alpha3; emacs 25.3.1

Hi Mathieu,

> I want to connect to my NAS using the Samba protocol.  While I can use ‘gvfs’
> for that it is not convenient for me to access it from the command line via
> the “/run/user/1000/gvfs/smb-share:server=nas,share=home/” filename.  On my
> previous system I was able to add the following line in my “/etc/fstab” file:
>
>    //nas/home /mnt/mthl/nas-home          cifs  
> credentials=/home/mthl/.smbfile,rw,noauto,user 0 0
>
> which allowed me to execute the following command as a regular user:
>
>    $ mount /mnt/mthl/nas-home
>
> Does anybody know how to achieve similar thing on GuixSD?

I have this in my config:

    (file-system
     (device "//my.nas/the-share")
     (title 'device)
     (options "uid=1000,gid=1000,credentials=/etc/samba.credentials")
     (mount-point "/nas")
     (type "cifs")
     (mount? #f)
     (create-mount-point? #t))

And it does the right thing when I run “mount /nas”.

Does this help?

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net





reply via email to

[Prev in Thread] Current Thread [Next in Thread]