Learning On Demand Learning anything from anywhere

Archive for the ‘Linux’ Category

Testing Debian KFreeBSD

05.07.2011 · Posted in Linux

# uname -a GNU/kFreeBSD debian 8.1-1-686 #0 Tue Jan  4 17:59:05 UTC 2011 i686 i386 Intel(R) Atom(TM) CPU N550   @ 1.50GHz GNU/kFreeBSD Update # apt-get update Ign cdrom://[Debian GNU/Linux 6.0.0 _Squeeze_ - Official kfreebsd-i386 CD Binary-1 20110205-22:58] squeeze Release.gpg Media change: please insert the disc labeled ‘Debian GNU/Linux 6.0.0 _Squeeze_ – Official kfreebsd-i386 CD Binary-1 ...

How to install Debian KFreeBSD

05.07.2011 · Posted in Linux, Unix

This post got delayed very long, I’ve already create the video since Februari 22 2011 but still have no time to publish. I just curious on how Debian and FreeBSD work in one place called Debian KFreBSD and as always everything just start from installation step and that is the main reason why I write ...

Downgrade php version from 5.3 to 5.2 on Ubuntu 10.10 x86

12.15.2010 · Posted in Linux, PHP

New Server has come and again I must downgrade php version to 5.2 due to some problem on web application. I use same method I use for Ubuntu 10.04 for Ubuntu 10.10 x86. Let start Download required files for PHP 5.2 from Ubuntu Karmic repository #cd /etc/apt/sources.list.d #wget http://randyfay.com/sites/default/files/karmic_0.list # cd /etc/apt/preferences.d/ #wget http://randyfay.com/sites/default/files/php_1. # ...

Downgrade php version from 5.3 to 5.2 on Ubuntu 10.04 i386

12.10.2010 · Posted in Linux, PHP

I have chance to install new server with standard requirement. SSH, Bind9 and LAMP. All process is smooth using i386 version of Ubuntu 10.04 but my friend complain about his web application not work well and after little investigation it looks like due to PHP version. Quick search on Google lead me to RandyFay post ...

Upgrade Zimbra Network Edition from 6.0.1 to 6.0.8

10.18.2010 · Posted in Linux

Stop Zimbra Service su – zimbra $ zmcontrol stop Host mail.yourdomain.com Stopping stats…Done. Stopping mta…Done. Stopping spell…Done. Stopping snmp…Done. Stopping archiving…Done. Stopping antivirus…Done. Stopping antispam…Done. Stopping imapproxy…Done. Stopping memcached…Done. Stopping mailbox…Done. Stopping convertd…Done. Stopping logger…Done. Stopping ldap…Done. $ $ exit logout # Backup Zimbra # cd /opt # tar cvzf zimbra.tar.gz zimbra Check Zimbra Version ...

How to update / renew Zimbra License

10.10.2010 · Posted in Linux, Step By Step, Work

Your Zimbra Network License expired 24 days ago Yes, that message show up when I log in to one of my client and they ask me to renew the license. Well, the process itself isn’t difficult as what you need to extend zimbra license just ask sales at zimbra.com. they will email license key and ...

Renew Certificate or Create New Certificate from Zimbra CLI

10.09.2010 · Posted in Linux

License for one of our client get expired and current status is in grace period. Accident happen when server was forced to shutdown due to electrical problem. When the server goes up nothing email server still down. I try to start the service manually. $ zmcontrol start Host mail.yourdomain.com Unable to determine enabled services from ...

Howto Check named configuration error

08.11.2010 · Posted in Linux

named can’t start its daemon and left me with nothing than confuse. # /etc/init.d/bind9 restart * Stopping domain name service… bind9                                                                                     rndc: connect failed: 127.0.0.1#953: connection refused [ OK ] * Starting domain name service… bind9                                 [fail] fail message don’t give a clue, further investigation with named manual lead me to -g and -p . ...

Change php.ini for adjust max upload file size

06.30.2010 · Posted in Linux, Work

File too large That simple message when marketing team want to upload new support ticket that include attachment with size 4 MB. Yes, that my mistake for not adjust default max upload file size. The solution is simple : Edit php.ini file I use ubuntu and because I more familiar with freebsd I use phpinfo() ...

Step by step Install Ubuntu Server 9.10

12.05.2009 · Posted in Linux

Step by step guide install Ubuntu Server 9.10 : 1. Download latest iso file or request free ubuntu CD from shipit. 2. Insert CD on CDROM/DVDROM. 3. Make sure to boot from CD/DVDROM Choose “install ubuntu server” 4. Choose Language Language chosen in this step will be work in the future use. cara install ubuntu ...

Open network access for mysql on ubuntu server

10.12.2009 · Posted in Linux

Error message came out when I try to access new vps server : $ mysql -ubox-p -h box.rasyid.net Enter password: ERROR 2003 (HY000): Can’t connect to MySQL server on ‘box.rasyid.net’ (61) Edit my.cf file : # nano /etc/mysql/my.cnf find this line : bind-address           = 127.0.0.1 add # in the front into #bind-address           = 127.0.0.1 save ...