User Tools

Site Tools


pages:howtos:debian:automount-cifs-share-with-autofs

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
pages:howtos:debian:automount-cifs-share-with-autofs [2021/02/24 09:30] – created mischerhpages:howtos:debian:automount-cifs-share-with-autofs [2022/11/30 14:54] (current) mischerh
Line 1: Line 1:
-{{tag>autofs cifs filesystem howto linux mount mounting samba smb ubuntu debian}}+{{tag>howto autofs cifs filesystem howto linux mount mounting samba smb ubuntu debian}} 
 +<WRAP center round important 60%> 
 +**2022-11-30**: Please note that I have discovered, that this howto is more complicated than it needs to be and is not taking advantage of the flexibility offered by autofs. But... It will work for ONE user who needs shares from ONE server mounted into his/her/... home. 
 + 
 +Anyway, this howto needs refactoring... stay tuned. 
 +</WRAP>
 ====== automount CIFS share with autofs ====== ====== automount CIFS share with autofs ======
  
 This HowTo will prepare a Linux client to automatically mount CIFS shares from a remote Samba server on access/demand. Since I am mounting different filesystems, I have structured my mountpoints as follows: This HowTo will prepare a Linux client to automatically mount CIFS shares from a remote Samba server on access/demand. Since I am mounting different filesystems, I have structured my mountpoints as follows:
 +<code>
 / /
 ├── home ├── home
Line 19: Line 24:
 │   │   │   ├── sshfs │   │   │   ├── sshfs
 │   │   │   │   ├── ssh-server-a.fqdn │   │   │   │   ├── ssh-server-a.fqdn
 +</code>
 +
 From here on, I will use “mysambaserver.local” as the Samba servers FQDN, “mysambaserver” as its hostname, “myusername”  as my username, “mygroup” as group and “myPassWord” as the password. From here on, I will use “mysambaserver.local” as the Samba servers FQDN, “mysambaserver” as its hostname, “myusername”  as my username, “mygroup” as group and “myPassWord” as the password.
  
Line 24: Line 31:
  
 This HowTo got compiled by trial and error and from these sources: This HowTo got compiled by trial and error and from these sources:
 +  * https://wiki.ubuntuusers.de/Autofs/#Samba-Freigabe
 +  * https://www.elektronik-kompendium.de/sites/raspberry-pi/2102201.htm
 +  * https://wiki.ubuntuusers.de/Samba_Client_cifs/
 +  * https://wiki.ubuntuusers.de/Gigolo/
 +  * https://blog.marvin-menzerath.de/artikel/samba-freigaben-mit-autofs-automatisch-ein-aushaengen/
 +  * https://www.howtoforge.com/accessing_windows_or_samba_shares_using_autofs
 +  * https://wiki.samba.org/index.php/Mounting_samba_shares_from_a_unix_client
 +  * https://kalitut.com/samba-shares-fstab/
  
-https://wiki.ubuntuusers.de/Autofs/#Samba-Freigabe +===== Install Required packages, check supported filesystems =====
-https://www.elektronik-kompendium.de/sites/raspberry-pi/2102201.htm +
-https://wiki.ubuntuusers.de/Samba_Client_cifs/ +
-https://wiki.ubuntuusers.de/Gigolo/ +
-https://blog.marvin-menzerath.de/artikel/samba-freigaben-mit-autofs-automatisch-ein-aushaengen/ +
-https://www.howtoforge.com/accessing_windows_or_samba_shares_using_autofs +
-https://wiki.samba.org/index.php/Mounting_samba_shares_from_a_unix_client +
-https://kalitut.com/samba-shares-fstab/ +
-Install Required packages, check supported filesystems +
-Install the required packages on the client (gigolo is just “nice to have”) and check if its kernel supports CIFS.+
  
-apt-get install autofs cifs-utils smbclient gigolo gvfs-backends gvfs-fuse fuse+Install the required packages on the client (gigolo is just “nice to have”) and check if its kernel supports CIFS. 
 +<sxh bash; gutter: false> 
 +apt -install autofs cifs-utils smbclient gigolo gvfs-backends gvfs-fuse fuse
 ls -1 /lib/modules/$(uname -r)/kernel/fs | grep "cifs" ls -1 /lib/modules/$(uname -r)/kernel/fs | grep "cifs"
-cifs +</sxh> 
-Check remote SAMBA connection+  cifs 
 +   
 +===== Check remote SAMBA connection =====
 Check remote connection to the Samba server: Check remote connection to the Samba server:
 +<sxh bash; gutter: false>
 smbclient -N -L //<mysambaserver.local>/ smbclient -N -L //<mysambaserver.local>/
 +</sxh>
         Sharename       Type      Comment         Sharename       Type      Comment
         ---------       ----      -------         ---------       ----      -------
Line 49: Line 60:
         share-c         Disk      Share C         share-c         Disk      Share C
         IPC$            IPC       IPC Service (mysambaserver server (Samba, Ubuntu))         IPC$            IPC       IPC Service (mysambaserver server (Samba, Ubuntu))
-SMB1 disabled -- no workgroup available+  SMB1 disabled -- no workgroup available
    
  
-Check authenticated login+===== Check authenticated login ===== 
 Check an authenticated remote login. If the command line asks for a password, enter the SMB password which is configured for the user at the Samba server (via smbpasswd). Check an authenticated remote login. If the command line asks for a password, enter the SMB password which is configured for the user at the Samba server (via smbpasswd).
 +<sxh bash; gutter: false>
 smbclient -U <myusername> -L //<mysambaserver.local>/ smbclient -U <myusername> -L //<mysambaserver.local>/
-Enter WORKGROUP\myusername's password: [myPassWord] <--- enter the password+</sxh> 
 +  Enter WORKGROUP\myusername's password: [myPassWord] <--- enter the password
         Sharename       Type      Comment         Sharename       Type      Comment
         ---------       ----      -------         ---------       ----      -------
Line 63: Line 76:
         share-c         Disk      Share C         share-c         Disk      Share C
         IPC$            IPC       IPC Service (mysambaserver server (Samba, Ubuntu))         IPC$            IPC       IPC Service (mysambaserver server (Samba, Ubuntu))
-SMB1 disabled -- no workgroup available +  SMB1 disabled -- no workgroup available
-Create mount point +
-Create the mount point in the users home directory:+
  
 +===== Create mount point =====
 +
 +Create the mount point in the users home directory:
 +<sxh bash; gutter: false>
 mkdir -pv /home/<myusername>/mnt/cifs mkdir -pv /home/<myusername>/mnt/cifs
 chown -R <myusername>:<mygroup> /home/<myusername>/mnt/ chown -R <myusername>:<mygroup> /home/<myusername>/mnt/
-autofs configuration+</sxh> 
 + 
 +===== autofs configuration =====
 The configuration consists of the master map file (/etc/auto.master), the corresponding map file (/etc/auto.mysambaserver-cifs) and the key file which contains the credentials for authentication. The configuration consists of the master map file (/etc/auto.master), the corresponding map file (/etc/auto.mysambaserver-cifs) and the key file which contains the credentials for authentication.
 In the following we will configure autofs to mount shares to /home/<myusername>/mnt/cifs/<mysambaserver.local>/<share-name>. In the following we will configure autofs to mount shares to /home/<myusername>/mnt/cifs/<mysambaserver.local>/<share-name>.
  
-Map file +===== Map file =====
-Create the mapfile+
  
 +Create the mapfile
 +<sxh bash; gutter: false>
 vim /etc/auto.<mysambaserver>-cifs vim /etc/auto.<mysambaserver>-cifs
 +</sxh>
 +<sxh bash; title: /etc/auto.mysambaserver-cifs>
 #!/bin/bash #!/bin/bash
 # $Id$ # $Id$
Line 121: Line 141:
         END     { if (!first) print "\n"; else exit 1 }         END     { if (!first) print "\n"; else exit 1 }
         '         '
 +</sxh>
 +<sxh bash; gutter: false>
 chmod 755 /etc/auto.<mysambaserver>-cifs chmod 755 /etc/auto.<mysambaserver>-cifs
 +</sxh>
 +
 This file is a slightly modified version of the file auto.smb which usually comes as part of the autofs package. You need to modify the line defining the mountopts above and change userid and groupid to the uid/gid of your personal account. This file is a slightly modified version of the file auto.smb which usually comes as part of the autofs package. You need to modify the line defining the mountopts above and change userid and groupid to the uid/gid of your personal account.
  
-key file +===== key file =====
-Now you have to give autofs the credentials needed to access shares on your network. To do this create a key file+
  
 +Now you have to give autofs the credentials needed to access shares on your network. To do this create a key file
 +<sxh bash; gutter: false>
 mkdir -pv /etc/autofs/keys/ mkdir -pv /etc/autofs/keys/
 vim /etc/autofs/keys/<mysambaserver.local> vim /etc/autofs/keys/<mysambaserver.local>
 +</sxh>
 +<sxh bash; title: /etc/autofs/keys/mysambaserver.local>
 username=<myusername> username=<myusername>
 password=<myPassWord> password=<myPassWord>
 +</sxh>
 +<sxh bash; gutter: false>
 chown root:root /etc/autofs/keys/<mysambaserver.local> chown root:root /etc/autofs/keys/<mysambaserver.local>
 chmod 600 /etc/autofs/keys/<mysambaserver.local> chmod 600 /etc/autofs/keys/<mysambaserver.local>
-Master-Map+</sxh> 
 + 
 +===== Master-Map ===== 
 The maps to be monitored are specified in this file. The maps to be monitored are specified in this file.
 Execute the following command to append the line “/home/myusername/mnt/cifs /etc/auto.mysambaserver-cifs –timeout=60” at the end of the /etc/auto.master file: Execute the following command to append the line “/home/myusername/mnt/cifs /etc/auto.mysambaserver-cifs –timeout=60” at the end of the /etc/auto.master file:
 +<sxh bash; gutter: false>
 echo "/home/<myusername>/mnt/cifs /etc/auto.<mysamabaserver>-cifs --timeout=60 --ghost" >>/etc/auto.master echo "/home/<myusername>/mnt/cifs /etc/auto.<mysamabaserver>-cifs --timeout=60 --ghost" >>/etc/auto.master
 +</sxh>
 +
 The syntax here is: <Directory> <Map-File> [Parameter] The syntax here is: <Directory> <Map-File> [Parameter]
 The shares should be unmounted after an inactivity of 60 seconds (–timeout=60) and empty directories should be created for the individual shares before mounting (–ghost). The shares should be unmounted after an inactivity of 60 seconds (–timeout=60) and empty directories should be created for the individual shares before mounting (–ghost).
  
-Debugging +===== Debugging =====
-for debugging output stop the daemon and interactively start autofs with verbose output enabled+
  
 +for debugging output stop the daemon and interactively start autofs with verbose output enabled
 +<sxh bash; gutter: false>
 service autofs stop service autofs stop
 automount -f -v automount -f -v
 +</sxh>
 You can restart autofs with You can restart autofs with
 +<sxh bash; gutter: false>
 service autofs start service autofs start
-Test +</sxh>
-Use the following command to test if your setup is working+
  
 +===== Test =====
 +
 +Use the following command to test if your setup is working
 +<sxh bash; gutter: false>
 ls -als /home/<myusername>/mnt/cifs/<mysambaserver.fqdn>/<share-name> ls -als /home/<myusername>/mnt/cifs/<mysambaserver.fqdn>/<share-name>
 +</sxh>
 +
 +----
 +~~DISCUSSION~~
pages/howtos/debian/automount-cifs-share-with-autofs.1614159054.txt.gz · Last modified: 2021/02/24 09:30 by mischerh