From the category archives:

Linux

openSUSE 11.2: Best Linux distro

First things first, let me once again tell you I’ve become a huge fan of openSUSE. it’s absolutely everything I look for in  OS.
Now I’m gonna write my experience down. A few slight quirks, which was not SUSE’s fault but since I’m new to it [ well I used it a year ago, but that [...]

Read the full article →

Perl : search and replaced

There are many times when we need to search and replace certain words from files. Doing it manually will be very time consuming. One way to do it is using VI ( my favorite editor !) search n’ replace.
The better option is using perl command line search and replace option. The syntax is the following.
# [...]

Read the full article →

Reset root mysql password

By default, MySQL Server will be installed with root superuser without any password. You can connect to MySQL server as root without requiring password or by keying in blank password. However, if you have set the password for root and forget or unable to recall the password, then you will need to reset the root [...]

Read the full article →

Reset root password in Linux

Consider the case you forgot the root password of your Linux machine. Don’t panic !
You can reset it easily entering single user mode . Following are the run levels in linux.
Runlevel 0: Halt System – To shutdown the system
Runlevel 1: Single user mode
Runlevel 2: Basic multi user mode without NFS
Runlevel 3: Full multi user mode [...]

Read the full article →

Fedora : Repair Corrupt RPM databases

Sometimes RPM databases become corrupt. You will no longer be able to install/upgrade/remove programs using YUM or RPM command. Even RPM quey simply gets hung. This is the case when you need to repair RPM databases. You can use the simple script to do it.
cp -pr /var/lib/rpm{,`data +%F`.bk}
rm -f /var/lib/rpm/__db*
rpm -vv –rebuilddb

The first step [...]

Read the full article →

Google Chrome on Fedora

Add the google repository to the yum data base:
file name: google.repo
Path: /etc/yum.repos.d/
$gedit googel.repo
[google]
name=Google – i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
and save this.
now go the terminal and type
$yum install google-chrome

Read the full article →

The 20 best Linux websites

have compiled a list with the most useful websites about Linux (the distro specific sites are not included). They are great resources you can learn from or to find answer to your linux questions. These should be in any linux user bookmarks, so go ahead and look through these links and bookmark your favorite ones:
1)www.ibm.com/developerworks/linux
Provides [...]

Read the full article →

How to Install Ubuntu in Windows XP & Vista

Wubi is an officially supported Ubuntu installer for Windows users that can bring you to the Linux world with a single click. Wubi allows you to install and uninstall Ubuntu as any other Windows application, in a simple and safe way.
That sums it up pretty well. You can use your Windows (98, 2000, XP, Vista) [...]

Read the full article →

Best Free Linux Book: Ubuntu Pocket Guide and Reference

Website
www.ubuntupocketguide.com

Author
Keir Thomas

Format
PDF

Pages
152

This book is a concise companion for everyday Ubuntu use. It provides a good grounding in getting to grips with the Ubuntu 8.04 and 8.10 distributions.
Topics covered include:

Installing & Configuring Ubuntu
Learning how to use the desktop covering logging in, layout, virtual desktops, and useful applications
Understanding how user accounts and the filesystem work
Getting to grips [...]

Read the full article →