sitename

How to Install PHP Curl and Upgrade Ubuntu Server

May 25th, 2011 0 Comments

How to Install PHP Curl and Upgrade Ubuntu ServerThis morning I tried to install plugin SEO Extreme Plugin on this blog, when I activate the plugin was error, such error message below: Fatal error: Call to undefined function curl_init () in /home/asch/www/blogtipsfree/wp-content/plugins/extreme-seo/extremeseo.php on line 84 Next, I check the server, it does php5_curl not yet been installed on the server. Immediately, I install with the following command: [shell] sudo apt-get install...

OtherOS

May 17th, 2011 0 Comments

OtherOSFrom Wikipedia, the free encyclopediaYellow Dog Linux booting up on a PS3OtherOS was a feature available in the first versions of the PlayStation 3 video game console that allowed other operating systems, such as Linux or FreeBSD, to be installed on the system. This feature was made unavailable in newer models and removed from the oldest ones through a firmware update by Sony.The "Other OS" feature is disabled by firmware version 3.21 but still...

Linux For The Home PC Rocks! by Andrew Doe

May 17th, 2011 0 Comments

Linux For The Home PC Rocks! by Andrew DoeDownload Linux for Free! Linux is a bulletproof operating system for your PC or laptop computer. Linux is fast, stable, and immune to virus and spyware. Easy to install and so simple, grandma can use it. Over 30 games come with Linux including Poker! "Linux is the best operating system you can get!" Virus and Spyware Free! Linux is immune to 99% of viruses and spyware. You can surf in the worst neighborhoods on the web and not worry about...

Automatic Data Backup Using Bash script and Crontab

May 16th, 2011 0 Comments

Automatic Data Backup Using Bash script and CrontabIn previous articles I have explained how to backup data with a tar or zip, and how to backup mysql database with mysqldump. In this tutorial I will explain how these data, both data website and mysql database, can be done in automated by using scripts and crontab in linux. Backup Script This script was made to back up all files for this blog. All files are placed in folder : [shell] /home/asch/www/linuxguide [/shell] This script...

Backup Data with TAR and ZIP on Linux Easily

May 15th, 2011 1 Comment

Backup Data with TAR and ZIP on Linux EasilyThere are still many among us realize the importance of backups after the data owned by damaged or missing. And awareness like that of course too late. Missing data and no backups. Out already. So? Make a back up. This tutorial is a file or data backup, to backup the database please read the previous article. Backup with Tar and Zip On linux many software which can be used both by command line or visual. Some are grsync, rsync, tar, rdif,...

Backup MySQL Database with Command Easily on Linux

May 7th, 2011 0 Comments

Backup MySQL Database with Command Easily on LinuxData is a valuable asset. Data loss is a tragedy, therefore we need to back to avoiding the things that we do not want. Currently, many tools to backup the database from a paid or free. The following tutorial is how to backup the mysql database in an easy way in linux with MySQLDump. Login to Server with SSH After login, please create folder on your directory [bash] $ mkdir backupsql $ cd backupsql [/bash] Backup with...