How to install and configure VNC in Fedora 12
Submitted by Richard on Sat, 07/24/2010 - 00:33Open up your terminal and install tigervnc via yum.
Type this command in your terminal:
Edit the VNC configuration file
and append these lines:
VNCSERVERS="1:user" VNCSERVERARGS[1]="-geometry 800x600 -depth 16"
Where VNCSERVERS= is for configuring the username. full story »
How to fix X11 Forwarding in CentOS 5
Submitted by Richard on Fri, 07/23/2010 - 19:27This tutorial describes how to fix the ssh X11 forwarding problem in CentOS 5.5 server.
ERROR: Failed to open display:
Make sure that the "xorg-x11-xauth" is also installed in your system. If not, this comm
Ensure that "X11Forwarding" is enabled in your ssh server configuration file. Edit the file "/etc/ssh/sshd_config". full story »
How to disable IPV6 in Fedora 12 and CentOS 5.5
Submitted by Richard on Tue, 07/20/2010 - 23:44This is a quick tutorial on disabling IPV6 in Fedora 12 and CentOS 5.5
Stop ip6tables service and disable it from starting automatically at system boot.
chkconfig ip6tables off
How to delete data in MySQL table
Submitted by Richard on Tue, 07/20/2010 - 23:30If you want to delete a record from any MySQL table then you can use the delete command. The delete command is very similar to the update command.
The delete statement deletes rows from a table.
The table is the table name.
The where clause specifies the conditions that identify which rows to delete. full story »
How to update data in MySQL table
Submitted by Richard on Tue, 07/20/2010 - 17:28Here's how to update existing data into MySQL database table.
The update statement updates columns of existing rows in the table with new values.
The table is the table name.
The set clause indicates which column to modify and the values they should be given. full story »
How to insert data into MySQL table
Submitted by Richard on Tue, 07/20/2010 - 00:33Here is a general form of insert command:
The insert statement inserts new row into an existing table. The table is the name of the table into which we want to insert data, column1 and column2 are column names and value1, value2 are values for the respective columns.
Example: full story »
Converting Excel files to CSV in Linux
Submitted by Richard on Sun, 03/21/2010 - 04:56Install xls2csv
To convert your xls file to csv, just type this command:
This script is very useful if you have a lot of excel files to convert. This will help you save a lot of time than converting it one by one.
- #!/bin/bash
- ls *.xls | while read file
- do
- filename=`echo $file | cut -d . -f 1`
- xls2csv "$file" > "$filename".csv
- done
How to configure Java plugin in Google Chrome beta in Fedora 12
Submitted by Richard on Sun, 02/21/2010 - 07:29If you don't have a Java Runtime Environment installed in your system, you can follow this guide. Download and install the beta version of Google Chrome for linux from here or install it using yum, you can follow my tutorial here. full story »
How to install VirtualBox Open Source Edition in Fedora
Submitted by Richard on Sun, 02/21/2010 - 07:19Enable RPM Fusion repository
rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
Then install Virtualbox by typing this command:
How to install Google Chrome Beta in Fedora 11 and Fedora 12 via yum
Submitted by Richard on Sun, 02/21/2010 - 07:17Configure Google rpm repository
Google's Linux packages are signed with a GNU Privacy Guard (GPG) key. You must install the public package signing key on your system to prevent warnings or errors when installing packages from the Google Linux software repositories. Download the key and then use rpm to install it. full story »





Recent comments
5 days 2 hours ago
5 days 18 hours ago
5 days 19 hours ago
6 days 7 hours ago
6 days 7 hours ago
1 week 1 day ago
4 weeks 4 days ago
9 weeks 5 days ago
9 weeks 5 days ago
10 weeks 15 hours ago