Linux Operating System Rumi, September 15, 2012 I've decided that I'd go through a thorough and various linux flavor in some idle pass time (when???). Anyway before forgetting just putting the list in my blog post- AlphaCore Linux Amazon Linux APLINUX Asianux Asianux Server BigBlock BSDI Caixa Magica Caldera OpenLinux Caldera OpenLinux eServer cAos Linux Cendio LBS… Continue Reading
Install nginx on virtualmin (GPL) server Rumi, August 26, 2012 Installing Nginx Support Switching a system from the Apache webserver (installed by default by Virtualmin to Nginx should only be done if no virtual servers with websites have been created yet. Ideally the change should be done on a freshly installed system, running RHEL 6.0, CentOS 6.0 or Debian 6.0… Continue Reading
Redhat/CentOS install PHP on NginX server as fastcgi Rumi, August 26, 2012 tep # 1: Enable EPEL repo ngnix is not included in the base system. Turn on EPEL repo to install nginx stable release: # rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/$(uname -m)/epel-release-5-3.noarch.rpm Step # 2: Install ngnix Type the following command at a shell prompt: # yum install nginx Sample output: Loaded plugins: downloadonly,… Continue Reading
Using an Aladdin eToken with firefox Rumi, August 25, 2012 A very easy method for importing (or removing) keys in your eToken is to add the eToken as a Security Device in Firefox. The procedure for Thunderbird and Mozilla/Seamonkey is nearly identical. To add your eToken as a security device , follow these steps Start Firefox (Linux) Go to Edit->Preferences->Advanced->Tab… Continue Reading
Network Configuration on Debian or Ubuntu Rumi, August 24, 2012 Setting up an Ethernet Interface The majority of network setup can be done via the interfaces configuration file at /etc/network/interfaces. Here, you can give your network card an IP address (or use dhcp), set up routing information, configure IP masquerading, set default routes and much more. Remember to add… Continue Reading
Install Zimbra on Centos 5 Step by step Rumi, August 24, 2012August 24, 2012 Zimbra is a suite of tools for Unix/Linux/MacOS systems, which includes a secure mail server, web mail, anti-spam/anti-virus controls, a Web management interface, integrated calendaring, mobile device sync, and more. In many ways, Zimbra is the Unix equivalent to Microsoft Exchange. In this post, I will be installing Zimbra… Continue Reading
Eid Greetings (2012) Rumi, August 19, 2012 On the holy occasion of EID.Here is wishing that,may the blessing of Allah light up your way and lead you to eternal happiness,success and peace. Eid Mubarak to all Muslims around the world, may the blessings of Allah be with you today, tomorrow, and always. With all the roses perfume… Continue Reading
VBoxHeadless Running Virtual Machines With VirtualBox On A Headless Debian/ubuntu Server Rumi, August 3, 2012December 4, 2017 I have implemented this on Debian 6 (Squeeze system) with the IP address 192.168.0.100 where I’m logged in as root. Installing VirtualBox To install VirtualBox 4.1 on our Debian server, we open /etc/apt/sources.list… added this line- deb http://download.virtualbox.org/virtualbox/debian squeeze contrib non-free Use appropriate OS source list from https://www.virtualbox.org/wiki/Linux_Downloads Then we… Continue Reading
MySQL Database Import Command Rumi, July 31, 2012 The syntax is as follows to import the data created by mysqldump command: mysql -u {DB-USER-NAME} -p {DB-NAME} < {db.file.sql} mysql -u {DB-USER-NAME} -h {MySQL-SERVER-HOST-NAME} -p {DB-NAME} < {db.file.sql} In this example import a file called sales.sql for salesdb1 user and sales db, enter: $ mysql -u sales -p salesdb1… Continue Reading