Skip to content

Instantly share code, notes, and snippets.

@stefthoen
Created June 13, 2020 16:07
Show Gist options
  • Save stefthoen/6acddc16f555860a215b8148a2789eed to your computer and use it in GitHub Desktop.
Save stefthoen/6acddc16f555860a215b8148a2789eed to your computer and use it in GitHub Desktop.
Mount Time Capsule in Ubuntu
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