Created
May 13, 2014 13:41
-
-
Save Gr1N/76fb8bf8275a43c295b1 to your computer and use it in GitHub Desktop.
Mount TimeCapsule on RaspberryPi
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
# 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
FYI this mount option wont work with the latest kernal releases as ntlm has been dropped.