pages:howtos:debian:automount-cifs-share-with-autofs
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
pages:howtos:debian:automount-cifs-share-with-autofs [2021/02/24 09:30] – created mischerh | pages:howtos:debian:automount-cifs-share-with-autofs [2022/11/30 14:54] (current) – mischerh | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{tag> | + | {{tag>howto autofs cifs filesystem howto linux mount mounting samba smb ubuntu debian}} |
+ | <WRAP center round important 60%> | ||
+ | **2022-11-30**: | ||
+ | |||
+ | Anyway, this howto needs refactoring... stay tuned. | ||
+ | </ | ||
====== 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/ | This HowTo will prepare a Linux client to automatically mount CIFS shares from a remote Samba server on access/ | ||
+ | < | ||
/ | / | ||
├── home | ├── home | ||
Line 19: | Line 24: | ||
│ | │ | ||
│ | │ | ||
+ | </ | ||
+ | |||
From here on, I will use “mysambaserver.local” as the Samba servers FQDN, “mysambaserver” as its hostname, “myusername” | From here on, I will use “mysambaserver.local” as the Samba servers FQDN, “mysambaserver” as its hostname, “myusername” | ||
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:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
- | https:// | + | ===== Install Required packages, check supported filesystems |
- | https:// | + | |
- | https:// | + | |
- | https:// | + | |
- | https:// | + | |
- | https:// | + | |
- | https:// | + | |
- | https:// | + | |
- | 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 -y install autofs cifs-utils smbclient gigolo gvfs-backends gvfs-fuse fuse | ||
ls -1 / | ls -1 / | ||
- | cifs | + | </ |
- | Check remote SAMBA connection | + | |
+ | |||
+ | ===== 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 //< | smbclient -N -L //< | ||
+ | </ | ||
Sharename | Sharename | ||
--------- | --------- | ||
Line 49: | Line 60: | ||
share-c | share-c | ||
IPC$ IPC IPC Service (mysambaserver server (Samba, Ubuntu)) | IPC$ IPC IPC Service (mysambaserver server (Samba, Ubuntu)) | ||
- | 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 < | smbclient -U < | ||
- | Enter WORKGROUP\myusername' | + | </ |
+ | | ||
Sharename | Sharename | ||
--------- | --------- | ||
Line 63: | Line 76: | ||
share-c | share-c | ||
IPC$ IPC IPC Service (mysambaserver server (Samba, Ubuntu)) | IPC$ IPC IPC Service (mysambaserver server (Samba, Ubuntu)) | ||
- | 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 / | mkdir -pv / | ||
chown -R < | chown -R < | ||
- | autofs configuration | + | </ |
+ | |||
+ | ===== autofs configuration | ||
The configuration consists of the master map file (/ | The configuration consists of the master map file (/ | ||
In the following we will configure autofs to mount shares to / | In the following we will configure autofs to mount shares to / | ||
- | Map file | + | ===== Map file ===== |
- | Create the mapfile | + | |
+ | Create the mapfile | ||
+ | <sxh bash; gutter: false> | ||
vim / | vim / | ||
+ | </ | ||
+ | <sxh bash; title: / | ||
#!/bin/bash | #!/bin/bash | ||
# $Id$ | # $Id$ | ||
Line 121: | Line 141: | ||
END { if (!first) print " | END { if (!first) print " | ||
' | ' | ||
+ | </ | ||
+ | <sxh bash; gutter: false> | ||
chmod 755 / | chmod 755 / | ||
+ | </ | ||
+ | |||
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 / | mkdir -pv / | ||
vim / | vim / | ||
+ | </ | ||
+ | <sxh bash; title: / | ||
username=< | username=< | ||
password=< | password=< | ||
+ | </ | ||
+ | <sxh bash; gutter: false> | ||
chown root:root / | chown root:root / | ||
chmod 600 / | chmod 600 / | ||
- | Master-Map | + | </ |
+ | |||
+ | ===== 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 “/ | Execute the following command to append the line “/ | ||
+ | <sxh bash; gutter: false> | ||
echo "/ | echo "/ | ||
+ | </ | ||
+ | |||
The syntax here is: < | The syntax here is: < | ||
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 | ||
+ | </ | ||
You can restart autofs with | You can restart autofs with | ||
+ | <sxh bash; gutter: false> | ||
service autofs start | service autofs start | ||
- | Test | + | </ |
- | 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 / | ls -als / | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | ~~DISCUSSION~~ |
pages/howtos/debian/automount-cifs-share-with-autofs.1614159054.txt.gz · Last modified: 2021/02/24 09:30 by mischerh