Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodrigoespinozadev/1e496bb110933f9cabf194f9570ff710 to your computer and use it in GitHub Desktop.
Save rodrigoespinozadev/1e496bb110933f9cabf194f9570ff710 to your computer and use it in GitHub Desktop.
Mount TimeCapsule on RaspberryPi
# Install dependencies
% apt-get install cifs-utils
# Create mount point folder
% mkdir /mnt/capsule
# Create credentials file
% touch /root/.cifs/capsule
% cat /root/.cifs/capsule
username=username
password=password
# Backup your fstab file
% cp /etc/fstab /etc/fstab.bak
# Put mount options in fstab and reboot system
% echo "//server/sharename /mnt/capsule cifs credentials=/root/.cifs/capsule,rw,sec=ntlm,iocharset=utf8 0 0" >> /etc/fstab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment