Posted in December 16, 2009 ¬ 10:52 amh.admin
by Bruce Timberlake (http://lamphowto.com/)
This document will walk you through the installation of what is known as a “LAMP” system: Linux, Apache, MySQL and PHP. Depending on who you talk to, the P also stands for Perl or Python, but in general, it is assumed to be PHP. I run CentOS on my servers; [...]
Read the rest of this entry »
Posted in December 4, 2009 ¬ 9:43 amh.admin
download skype-static package
next do the following steps:-
> COMMANDS
> ==============================
======
> tar -xvjf skype_static-<version>.tar.bz2
>
> cd skype_static-<version>
>
> mkdir /usr/share/skype
>
> cp -a * /usr/share/skype/
>
> cd /usr/share/skype/
>
> mv skype /usr/bin/
>
> mv skype.conf /etc/dbus-1/system.d/
>
> chown <your-username>.<your-group> skype.desktop
>
> mv skype.desktop ~<your-username>/Desktop
2
Read the rest of this entry »
Posted in November 16, 2009 ¬ 11:54 amh.admin
It is a good idea to create a GRUB boot floppy or CD and print or archive the GRUB configuration file (/boot/grub/grub.conf for Red Hat and /boot/grub/menu.lst for SUSE) for use when GRUB won’t start or won’t display the GRUB menu. The following code illustrates how to create the boot floppy, as explained in Section [...]
Read the rest of this entry »
Posted in August 19, 2009 ¬ 9:52 amh.admin
Use fdisk to partition your drive properly.
Download an burn 3 Mandrake 8.2 CDs or your favorite distro
Install Windows XP/2000 on the first partition, make sure you use fat 32 as your file system, not xp ntfs
Start your Linux Installation and install the [...]
Read the rest of this entry »
Posted in August 15, 2009 ¬ 11:11 amh.admin
How to setup PHP My Admin:
Download PHPMyAdmin from the home page:
cd /root/
wget http://internap.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-2.11.9.5-english.zip
cp phpMyAdmin* /var/www
cd /var/www/
unzip phpMyAdmin-2.11.9.5-english.zip
ln -s phpMyAdmin-2.11.9.5-english phpmyadmin
chown apache:apache phpMyAdmin* -R
rm -f phpMyAdmin-2.11.9.5-english.zip
Edit the create tables file , and enable the GRANT line with proper password:-
vi /var/www/phpmyadmin/scripts/create_tables_mysql_4_1_2+.sql
…
CREATE DATABASE IF NOT EXISTS `phpmyadmin`
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
USE phpmyadmin;
…
…
–
– Privileges
–
– (activate this statement [...]
Read the rest of this entry »