Created
February 3, 2012 15:20
-
-
Save kapkaev/1730676 to your computer and use it in GitHub Desktop.
mount mac share (afp)
This file contains hidden or 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
sudo apt-get install libfuse-dev libreadline-dev libgcrypt-dev libgmp3-dev | |
cd ~ | |
wget http://citylan.dl.sourceforge.net/project/afpfs-ng/afpfs-ng/0.8.1/afpfs-ng-0.8.1.tar.bz2 | |
# or http://sourceforge.net/projects/afpfs-ng/ | |
tar -xf afpfs-ng-0.8.1.tar.bz2 && cd afpfs-ng-0.8.1 | |
./configure | |
make | |
sudo make install | |
sudo ldconfig | |
#to mount | |
mount_afp 'afp://user:password@servername/sharename' /placewhereyouwannamountit/ | |
#to unmount | |
afp_client unmount /mountname/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment