Your Ad Here

Nokia PC Suite for Linux with ObexTool on Ubuntu Gutsy

November 12, 2007

This How-To will might works with many NOKIA Mobile Phone, especially for Nokia 3230, 6670, 6680, 6682 e 7610, 6120, Sony Ericsson Z1010, LG U8110/8120.
However I wrote this How-To after configuring correctly my new NOKIA 6120 on Ubuntu Gutsy 7.10. So, this how-to is intended for people that runs Ubuntu Gutsy and have NOKIA 6120 Mobile Phone.

nokia6120linux

(more...)

Fast installing a Apache Webserver + MySQL Database Server + PHP on Debian

November 7, 2007

Install needed packages

First of all install all the needing packages:

apt-get install mysql-server apache2 php5 libapache2-mod-php5 libapache2-mod-auth-mysql php5-mysql

Create a password for the MySQL User root.

mysqladmin -u root password OWNPW

(more…)

Virtual Hosting with PureFTPd and MySQL on Debian

Necessary Information

In this HowTo my Server has the follow configurations:
Hostname: ftp01.server.com
IP-Adress: 192.168.1.20
Installing necessary stuff

With this command we can Install all the stuff we need:

apt-get install mysql-server mysql-client libmysqlclient15-dev phpmyadmin apache2 pure-ftpd-mysql

Configuring security stuff

First of all we need to create a password for the MySQL User root.

mysqladmin -u root password OWNPW

(more…)

The Simplest Way to Make a Backup with TAR in your Linux Box

November 3, 2007

1. How To Make A Backup

To make a Good Backup in a Linux System such as Ubuntu or Debian, is possible to use TAR utility. Why TAR and not other backup system? TAR is usually used to create archive of entires directory and after the tar process we usually compress it in a GZIP file to distribute our archives to a friend by mail. Often, many Linux Users found in Norton Ghost a good utility to make backup of entire HardDisk. I think: “Why use a commercial application when there is just a better solution integrated in my linux system?”. Often we don’t use it because is a command line application and seems to be difficult to use it. No panic! I have a simple driven solution for you. Every step is explained clearly.

(more…)