Created
June 13, 2020 16:07
-
-
Save stefthoen/6acddc16f555860a215b8148a2789eed to your computer and use it in GitHub Desktop.
Mount Time Capsule in Ubuntu
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
Long story short, i needed to mount my time capsule in linux (and use it) and since i did not find anywhere "easy" solution - here's one (full R/W access): | |
sudo mount.cifs //TC_ADDRESS/NAME_OF_YOUR_SHARE /mnt/YOUR_DESTINATION_DIRECTORY -o user=USERNAME,sec=ntlm,vers=1.0,gid=$(id -g),uid=$(id -u),forceuid,forcegid | |
* after username you can add pass=YOUR_PASSWORD (in case you are too lazy to type it in every time you mount it). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment