You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Automatically mount shared windows folders at boot on linux w/ systemd
Automount of CIFS (smbfs) folders w/ systemd
i.e. mounting your Windows shares on Linux at boot
First, let's see how to mount the remote directory. Assume that there is a shared folder over the network at \\192.168.1.1\users\self\shared which is accessible with user myuser and password secret123.
We could mount it manually in /mnt/winshare with:
# mount -t cifs //192.168.1.1/users/self/shared /mnt/winshare -o user=myuser,password=secret123
This should work on your Linux box, because systemd will basically call mount with the same arguments: What (//192.168.1.1/users/self/shared), Where (/mnt/winshare) and Options (user=myuser,password=secret123).
appify — create the simplest possible Mac app from a shell script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters