Debian 使用 systemd 自动挂载 Samba

本文地址:blog.lucien.ink/archives/540

写成了一键脚本,直接执行即可。

需要注意的是,挂载的路径和 systemd service 的名字要对应上,比如挂载的路径为 /mnt/nas 那 service 的文件名应为 mnt-nas.service

shell 复制代码
#!/usr/bin/env bash

SERVER="nas.local"
USERNAME="foo"
PASSWORD="bar"

apt install cifs-utils -y

groupadd -g 17510 nas

cat <<EOF >> /etc/systemd/system/dns-ready.service
[Unit]
Description=Wait for DNS to come up using 'host'
After=nss-lookup.target

[Service]
Type=oneshot
ExecStart=/bin/bash -c "until host ${SERVER}; do sleep 1; done"

[Install]
WantedBy=multi-user.target
EOF

cat <<EOF >> /etc/systemd/system/mnt-nas.mount
[Unit]
Description=Mount NAS
Requires=network-online.target
After=network-online.target dns-ready.service

[Mount]
What=//${SERVER}/Data
Where=/mnt/nas
Type=cifs
Options=username=${USERNAME},password=${PASSWORD},dir_mode=0775,gid=nas,rw,file_mode=0664

[Install]
WantedBy=multi-user.target
EOF

systemctl daemon-reload

systemctl start dns-ready.service
systemctl enable dns-ready.service

systemctl start mnt-nas.mount
systemctl enable mnt-nas.mount
相关推荐
UsamaBinLaden1 天前
Ubuntu和Debian系列的Release默认shell解释器变更
linux·ubuntu·debian
鱼忆梦3 天前
Debian的基本使用
运维·debian
unique_pursuit3 天前
Zookeeper启动报错:Starting zookeeper ... FAILED TO START 解决方案
分布式·zookeeper·debian
韩搏3 天前
VMware虚拟机Debian扩展磁盘
java·运维·debian
qq_418646525 天前
解决wsl重启后debian配置vm.max_map_count不生效问题以及设置docker开机自启
运维·debian
筑梦之路8 天前
Debian 12 安装freeswitch 1.10.12对接Volte视频通话——筑梦之路
debian·voip
Biturd8 天前
clickhouse运维篇(二):多机器手动部署ck集群
运维·clickhouse·debian
zhqh1009 天前
在qemu-system上跑arm-Debian
linux·arm开发·debian
Joemt11 天前
ubuntu、Debian离线部署gitlab
ubuntu·debian·gitlab
代码bug12 天前
Debian会取代CentOS成为更主流的操作系统吗?
运维·centos·debian