Wednesday, December 22, 2010

When disaster coming to my ZIMBA 4.5.6 on Ubuntu 6.06 LTS

I Just got disaster,
one of two raided hard disk is broken, the fist step is save the
zimbra installation, here the log of my action

1. Install rsync
$sudo apt-get install rsync -y

2. Prepare for the disk, letter for keeping backup file, I'm using SSH
server that has capacity 1T with raid 1 (mirror)

3. Analise the capacity of backup and destination

on Zimbra machine
$sudo du -sh /opt |grep GB

On Destination

$df -h

(see the backup disk, my case is /media/backup)

4. run rsyn

$rsync -avz -e ssh /opt/zimbra/ user@server:/media/backup/zimbra

finally waiting for hours until it finished.

me(Suwidi)
-
Dikirim dari suwidi.or.id dengan dukungan dev-NET(system)

Install torrent Client for Web UI (deluge on ubuntu 8.0.4-4 LTS)

Distro we're using Ubuntu 8.0.4.4 LTS
packet Deluge from PPA

step installation
1. Add the repository below
$sudo vim /etc/apt/sources.list

add in the last line
deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu hardy main
deb-src http://ppa.launchpad.net/deluge-team/ppa/ubuntu hardy main

2. Import the key

$sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 249AD24C

3. Running Update

$sudo apt-get update

4. Install the package

$sudo apt-get install deluge -y
$sudo apt-get install deluge-web -y
$sudo apt-get install deluge-webui -y


and then try it as the manual below
taken from :
http://dev.deluge-torrent.org/wiki/UserGuide/ThinClient#ServerSetup1
Web UI ¶
Server Setup ¶

1. Install Deluge on the server.
2. Run the deluge daemon:

deluged

You may want to enable logging and/or use an InitScript.
3. Run deluge Web UI:

deluge-web

You can also use the --fork option to have the deluge-web
process run in the background.

deluge-web --fork

Again, you may want to use an InitScript.
4. (Optional) If you do not know your server's public ip, run:


Congratulations! The server is now setup for web UI access.
Client Setup ¶

1. Open your preferred web browser.
2. Open the URL:

http://<server>:8112

where <server> is either the private or public ip of the server
depending if you are on the server's private network or not.

1. Default password is "deluge".

Congratulations! You can now access deluge on the server via the web UI.

--


me(Suwidi)
Dikirim dari suwidi.or.id dengan dukungan dev-NET(system)