Installation¶
Requirements¶
- Python 2.6.6
- Debian or Ubuntu
Install¶
To install CloudFusion do the following:
sudo apt-get install git
git clone git://github.com/joe42/CloudFusion.git
sudo apt-get install python-setuptools gcc libssl-dev libffi-dev python-dev fuse-utils
cd CloudFusion
sudo python setup.py install
On Ubuntu, you just need to add yourself to the fuse group:
sudo usermod -a -G fuse "$USER"
newgrp fuse
On Debian though, you also need to install fuse, and set permissions to use it as normal user:
sudo usermod -a -G fuse "$USER"
newgrp fuse
sudo chgrp fuse /dev/fuse
sudo chmod g+wr /dev/fuse