Feed on
Posts
Comments

Archive for August 15th, 2007

How to use chmod?

It’s used to change the file access permissions
There are two types of chmod:

system letter coding (symbolic)

system numeric coding (octal number)

 
Every files and directories in linux have 3 access user.
The user (u), group (g) and owner (o).
When you type $ls -l at the console, you will some informations.
 
drw-r–r– [...]

Read Full Post »

How to install Xampp?

Many people know from their own experience that it’s not easy to install an Apache web server and it gets harder if you want to add MySQL, PHP and Perl.XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use - just download, [...]

Read Full Post »

1. You have to download package dpkg-dev_1.13.24ubuntu6_all.deb (or newer version)
Just type $sudo apt-get install dpkg-dev (in the console screen)
2. Make a folder in /home/your_username, for example repo_ubuntu
3. Copy all files from /var/cache/apt/archives to /home/your_username/repo_ubuntu
$cd /var/cache/apt/archives
$cp -rf * [...]

Read Full Post »

How to install Skype in Ubuntu?

Skype need 3 library to run itself. These files are:
- libqt4-core (1.2MB)
- libqt4-gui (4.9MB)
- qt4-qtconfig
 
Just install it with:
$sudo apt-get install libqt4-core
$sudo apt-get install libqt4-gui
$sudo apt-get install qt4-qtconfig
 
Then download the file from www.skype.com
There are 7 files for 7 distros:

Feisty Fawn

Debian Etch

Mepis

Xandros

Fedora Core 7 / Fedora 7

OpenSUSE 10+

Mandriva

 
Click Feisty Fawn, [...]

Read Full Post »