Zip and Unzip Command in Linux Rumi, May 28, 2011 Zipping a Directory zip is a compression and file packaging utility for Unix, Linux, VMS, MSDOS, OS/2, Windows NT, Minix, Atari and Macintosh, Amiga and Acorn RISC OS etc. This utility is installed by default on most Linux computers. he program is useful for packaging a set of files for… Continue Reading
Installing GCC, C++ and GD in Linux Rumi, May 28, 2011May 31, 2011 By Using YUM these compiler and libraries can be setup- GCC compiler C/C++ development libraries GD development libraries For GCC, C/C++- yum install gcc gcc-c++ autoconf automake For GD- yum install gd gd-devel php-gd On Debian/Linux to install GCC use- # apt-get update && apt-get upgrade # apt-get install build-essential… Continue Reading
Setup Tomcat with Apache2 and Java on Ubuntu 10.04 Server Rumi, May 28, 2011May 28, 2011 Apache Tomcat (or Jakarta Tomcat or simply Tomcat) is an open source servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Sun Microsystems, and provides a "pure Java" HTTP web server environment for Java code to run. … Continue Reading
Configure openfiler iscsi with vmware Rumi, May 14, 2011May 14, 2011 Once you have OpenFiler installed you can then access a web based management console which allows you to configure your new OpenFiler installation. Opening a web browser and pointing it to the IP address (ie: https://<IP of OpenFiler>:446> of the OpenFiler server you should be presented with a logon screen… Continue Reading
Linux Gnome Force Quit alternate to crl+alt+del Rumi, May 8, 2011 The Force Quit button allows you to click on a window to force an application to quit. This button is useful if you want to terminate an application that does not respond to your commands, if the application has frozen or crashed, for example. To add a Force Quit button… Continue Reading
Install Server Certificate for IIS 6 or 5 Rumi, May 8, 2011May 8, 2011 The following document is partly based on this Microsoft document: How to Import a Server Certificate for Use in Internet Information Services 5.0 (Q232137) Add Certificates snap-in to MMC Click Start, and then click Run. Type "MMC.EXE" (without the quotation marks) and click OK. Click Console in the new MMC… Continue Reading
Mount Windows partitions in to Linux Rumi, May 6, 2011 Procedure to mount remote windows partition (NAS share) 1) Make sure you have following information: ==> Windows username and password to access share name ==> Sharename (such as //server/share) or IP address ==> root level access on Linux 2) Login to Linux as a root user (or use su command)… Continue Reading
Configuring command line network inteface in Debian Rumi, May 1, 2011February 13, 2012 Configure the Network Manually You can use ip or ifconfig command to configure IP address and other information. Task: Display the Current Network Configuration Type the following command: $ ip address show Output: 1: lo: mtu 16436 qdisc noqueue link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo inet6 ::1/128… Continue Reading
IIS 6 Metabase Error on Restoration or Migration Rumi, April 30, 2011 If you are trying to restore IIS and receive an Invalid Signature error trying to restore the IIS Metabase you must make a small tweak to ensure you can restore the IIS Metabase to another windows server. What probably happened is that you created a backup to the c:\windows\system\inetsrv folder… Continue Reading
How to upgrade PHP 5.2 Centos Rumi, April 27, 2011September 5, 2017 Method-1 This guide describes how to upgrade the standard PHP 5.1.x packages in CentOS 5.x 32-bit to the current development versions 5.2.x. These instructions were created using CentOS 5.3 32-bit and with the following PHP packages installed: # rpm -qa |grep php php-common-5.1.6-15.el5.i386 php-cli-5.1.6-15.el5.i386 php-5.1.6-15.el5.i386 php-pdo-5.1.6-15.el5.i386 php-bcmath-5.1.6-15.el5.i386 php-ldap-5.1.6-15.el5.i386 php-devel-5.1.6-15.el5.i386 php-gd-5.1.6-15.el5.i386… Continue Reading