Changes

From Amahi Wiki
Jump to: navigation, search
43 bytes removed ,  01:52, 23 November 2010
no edit summary
If you don't need the full system integration you don't need fuse-libs, fuse, xdg-utils but you will loose having a virtual drive of your online data on the desktop
<ol><li> 1. Installation of dependencies
yum install java-1.6.0-openjdk java-1.6.0-openjdk-plugin-1 fuse-libs fuse xdg-utils
<li> 2. Download the latest version of wuala
wget <nowiki>http://www.wuala.com/files/wuala.tar.gz</nowiki>
<li> 3. Untar it as root is in /usr/local(This will create a directory wuala)
cd /usr/local
tar xvfz wuala.tar.gz
This will create a directory wuala4.<li> Manually start the program (make sure you have an account with them first)
/usr/local/wuala/wuala -basepath /usr/local/wuala login YourUserName YourPassword
if all goes well you have started the program successfully and can test it
/usr/local/wuala --help
/usr/local/wuala/wuala showStatus -> will tell you if you are online
/usr/local/wuala/wuala showSettings -> will show your settings
5. Start Wuala as a service
<li> Start Wuala as a service</ol> I found a little init.d script that sort of work but it is not perfect. For example I can't seem to make it work with service so that it starts at bootup or show that status is started.
So if someone can fix it it would be great.
Copy the code below in file called wuala in /etc/init.d and make it executable
# Description: Start or stop the Wuala server
### END INIT INFO
 
# Source function library.
. /etc/rc.d/init.d/functions
 
WUALA_USER="YourUserName"
WUALA_PASS="YourPassword"
WUALA_PATH="/usr/local/wuala"
 
 
#start=/etc/webmin/start
#stop=/etc/webmin/stop
pidFile=/var/wuala/wuala.pid
name='Wuala'
 
case "$1" in
'start')
12,424

edits