.. | ||
etc | ||
README.md | ||
Screenshot 2024-12-23 at 17-34-01 autofs lookup(program) lookup for foo failed.png |
Installation:
- Autofs muss installiert sein:
sudo apt install -y autofs smbclient cifs-utils
- Alle Dateien in autofs/etc/ in diesem Repository nach /etc kopieren:
- Autofs neu starten:
systemctl restart autofs
- Autofs neu starten:
- Verzeichnisse anlegen und Rechte vergeben:
DIRS="/mnt/vchanger /mnt/cifs" ; for DIR in $DIRS; do mkdir $DIR; chmod a+rwx $DIR; chown bacula:tape $DIR; done