pages:howtos:suse:automount-cifs-share-with-autofs
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pages:howtos:suse:automount-cifs-share-with-autofs [2021/06/19 18:53] – [Map file] mischerh | pages:howtos:suse:automount-cifs-share-with-autofs [2024/05/21 09:08] (current) – [Map file] mischerh | ||
---|---|---|---|
Line 1: | Line 1: | ||
{{tag> | {{tag> | ||
+ | |||
+ | <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 ====== | ||
Line 109: | Line 117: | ||
# http:// | # http:// | ||
# Note: Use cifs instead of smbfs: | # Note: Use cifs instead of smbfs: | ||
- | MOUNTOPTS=" | + | MOUNTOPTS=" |
SMBCLIENTOPTS="" | SMBCLIENTOPTS="" | ||
for EACH in /bin /sbin /usr/bin /usr/sbin | for EACH in /bin /sbin /usr/bin /usr/sbin | ||
Line 179: | Line 187: | ||
You can restart autofs with | You can restart autofs with | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
+ | systemctl enable autofs | ||
service autofs start | service autofs start | ||
</ | </ | ||
Line 188: | Line 197: | ||
ls -als / | ls -als / | ||
</ | </ | ||
+ | |||
+ | ===== Script ===== | ||
+ | This script automates the whole process above. Please keep in mind to change the variables to fit your environment. | ||
+ | |||
+ | <sxh bash; title: autofs.sh> | ||
+ | #!/bin/bash | ||
+ | |||
+ | # | ||
+ | # Variables | ||
+ | # | ||
+ | |||
+ | _SMB_FQDN=" | ||
+ | _SMB_USER=" | ||
+ | _SMB_PASS=" | ||
+ | _LOCAL_USER=" | ||
+ | _LOCAL_GROUP=" | ||
+ | _SMB_MOUNTPOINT="/ | ||
+ | _BASE_MOUNTPOINT="/ | ||
+ | |||
+ | # don't touch | ||
+ | _UNAME=" | ||
+ | _CIFSKM="/ | ||
+ | _UID=" | ||
+ | _GID=" | ||
+ | |||
+ | |||
+ | zypper install -y autofs cifs-utils gigolo gvfs-backends gvfs-fuse fuse | ||
+ | |||
+ | # exit if cifs kernel module is not present | ||
+ | [ -f " | ||
+ | |||
+ | # test unauthenticated connection to SMB server | ||
+ | smbclient -N -L //" | ||
+ | |||
+ | # test authenticated connection to SMB server | ||
+ | smbclient | ||
+ | |||
+ | # create mountpoint, set permissions | ||
+ | mkdir -pv " | ||
+ | chown -R " | ||
+ | |||
+ | # create the mapfile | ||
+ | cat > / | ||
+ | #!/bin/bash | ||
+ | # $Id$ | ||
+ | # This file must be executable to work! chmod 755! | ||
+ | #set -x | ||
+ | KEY=" | ||
+ | # Note: create a cred file for each windows/ | ||
+ | # which requires password authentification. | ||
+ | # | ||
+ | # username=user | ||
+ | # password=***** | ||
+ | # | ||
+ | # user account name or password. | ||
+ | CREDFILE="/ | ||
+ | # # !!!!!!!!!!!!!!!!! PAY ATTENTION TO the CIFS VERSION in MOUNTOPTS !!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
+ | # https:// | ||
+ | # http:// | ||
+ | # Note: Use cifs instead of smbfs: | ||
+ | MOUNTOPTS=" | ||
+ | SMBCLIENTOPTS="" | ||
+ | for EACH in /bin /sbin /usr/bin /usr/sbin | ||
+ | do | ||
+ | if [ -x $EACH/ | ||
+ | then | ||
+ | SMBCLIENT=$EACH/ | ||
+ | break | ||
+ | fi | ||
+ | done | ||
+ | [ -x $SMBCLIENT ] || exit 1 | ||
+ | if [ -e " | ||
+ | then | ||
+ | MOUNTOPTS=$MOUNTOPTS", | ||
+ | SMBCLIENTOPTS=" | ||
+ | else | ||
+ | SMBCLIENTOPTS=" | ||
+ | fi | ||
+ | $SMBCLIENT $SMBCLIENTOPTS -gL " | ||
+ | | awk -v key=" | ||
+ | BEGIN { ORS=""; | ||
+ | / | ||
+ | gsub(/ /, "\\ ", $2); | ||
+ | sub(/\$/, " | ||
+ | print " \\\n\t /" $2, "://" | ||
+ | END { if (!first) print " | ||
+ | ' | ||
+ | ENDOFFILE | ||
+ | |||
+ | # insert UID and GID | ||
+ | sed -i " | ||
+ | sed -i " | ||
+ | |||
+ | # set permissions for mapfile | ||
+ | chmod 755 / | ||
+ | |||
+ | # create keyfile | ||
+ | mkdir -pv / | ||
+ | cat > / | ||
+ | username=____USERNAME____ | ||
+ | password=____PASSWORD____ | ||
+ | ENDOFFILE | ||
+ | |||
+ | # insert username and password | ||
+ | sed -i " | ||
+ | sed -i " | ||
+ | |||
+ | # set permissions for keyfile | ||
+ | chown root:root / | ||
+ | chmod 600 / | ||
+ | |||
+ | # Master-Map | ||
+ | echo " | ||
+ | |||
+ | systemctl enable autofs | ||
+ | service autofs start | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | ~~DISCUSSION~~ |
pages/howtos/suse/automount-cifs-share-with-autofs.1624128784.txt.gz · Last modified: 2021/06/19 18:53 by mischerh