Differences between revisions 2 and 3
Revision 2 as of 2021-02-21 03:34:55
Size: 1136
Editor: PieterSmit
Comment:
Revision 3 as of 2021-02-21 03:43:14
Size: 1248
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 30: Line 30:
 * create map file /etc/auto.cifs (! not executable) {{{  * create map file /etc/auto.cifs (/!\ not executable) {{{
Line 33: Line 33:
 * debug autofs by stopping and running in terminal {{{
sudo service autofs stop
sudo automount -f -v
}}}

Linux Smb/Cifs Autofs, Pam, Systemd

  • Mount Windows shares using smb protocol, 2020 linux now has cifs(smb) drive in the kernel don't need the fullh samba software suite to mount fs.

Goals

1. Goal: mount user directories from windows(cifs) on login

  • Use pam (pluggable authentication manager) to mount the windows share on mount

2. Goal: mount server share in fixed path

2a. Option: systemd.

  • Setup in /etc/fstab

    //192.168.20.22/c /home/{user}/cifs cifs rw,uid={user},gid={user},username={win_user},password={win_pass},x-systemd.automount,x-systemd.device-timeout=10 0 0
    • specific settings

      x-systemd.automount,x-systemd.device-timeout=10
    • after editing fstab, update systemd

      systemctl daemon-reload 
      systemctl restart remote-fs.target

2b. Option: autofs (older)

  • specify root dir in /etc/auto.master

    /cifs  /etc/auto.cifs --timeout=5
  • create map file /etc/auto.cifs (/!\ not executable)

    datadir -fstype="cifs,rw,uid={user},gid={group},username={user_win},password={pass_win)" ://192.168.20.22/c
  • debug autofs by stopping and running in terminal

    sudo service autofs stop
    sudo automount -f -v

Linux/SmbCifsAutofsPamSystemd (last edited 2022-03-08 23:49:12 by PieterSmit)