Mount samba shares with systemctl
This comes directly from the archwiki, due to I got tired of mount the nas shares using dolphin (or similar) and have to go to the /run/media.... path everytime, or by manually running: 1 mount --mkdir -t cifs //SERVER/sharename /mnt/mountpoint -o username=username,password=password,workgroup=workgroup,iocharset=utf8,uid=username,gid=group Instead, I will just manually run: 1 systemctl start mnt-nas.mount Or enable it to mount it automatically during boot and to unmount I just have to stop the service. ...