0

Advanced Bash-Scripting Guide

http://linux.dipin.info

An in-depth exploration of the art of shell scripting.
This guide assumes no previous knowledge of scripting or programming, but progresses rapidly toward an intermediate/advanced level of instruction . . . all the while sneaking in little nuggets of UNIX® wisdom and lore.

Read more »
linuxtips's picture
Created by linuxtips 15 years 25 weeks ago
Category: Beginner   Tags:
0

Redo Backup and Recovery 0.9.3 Screenshots

http://www.thecodingstudio.com

Redo Backup and Recovery is an easy-to-use, complete disaster recovery solution. It allows bare-metal restore, which means that even if your hard drive melts or gets completely erased by a virus, you can have a completely-functional system back up and running in as little as 10 minutes. Redo Backup and Recovery is just a GPLv3 Perl script built with a GTK2+ interface designed in Glade.

Read more »
0

Super Nintendo emulators for Ubuntu 10.04

http://www.brighthub.com

Do you want to relive your youth with some of those classic SNES games of yesteryear? In this article we take a look at some of the Super Nintendo emulators that are available in Ubuntu.

Read more »
beckham's picture
Created by beckham 15 years 25 weeks ago
Category: End User   Tags:
0

Usenet Resource Downloader (URD)

http://www.ubuntugeek.com

URD is a program to download binaries from usenet (newsgroups) through a web interface.

Read more »
born.again.linuxer's picture
Created by born.again.linuxer 15 years 25 weeks ago
Category: End User   Tags:
0

The Bizarre Cathedral - 75

http://www.freesoftwaremagazine.com

Latest from the Bizarre Cathedral comic strip by merc & crimperman.

Read more »
lmfao's picture
Created by lmfao 15 years 25 weeks ago
Category: Community   Tags:
0

Linuxables: Your First Steps with Linux vi

http://www.linux.com

We continue our look into the Linux text editor by highlighting one of the powerhouses of the bunch - vi.

Read more »
gurner's picture
Created by gurner 15 years 25 weeks ago
Category: High End   Tags:
0

Ghosting The Machine

http://howtoforge.com

This is a short but potentially extremely handy guide to ghosting one Linux box to another (or simply making a full backup of a desktop/server). Credit goes to 'topdog' for this.

Read more »
iamspam's picture
Created by iamspam 15 years 25 weeks ago
Category: High End   Tags:
0

w3schools June 2010 Browser and OS Statistics

http://www.w3schools.com

Firefox dominates, Linux' growth creeps slowly upward.

Read more »
electrocomputer's picture
Created by electrocomputer 15 years 25 weeks ago
Category: Industry   Tags:
0

SugarCRM 6 Debuts with Open Source and Commercial Features

http://www.ecrmguide.com

After four months of beta availability and testing, SugarCRM today officially announced the general availability of its Sugar 6 CRM customer relationship management platform. Sugar 6 includes an open source community edition as well as commercially licensed professional and enterprise editions.

Read more »
muffinman's picture
Created by muffinman 15 years 25 weeks ago
Category: Business   Tags:
0

How to insert data into MySQL table

http://www.cahilig.net

Here is a general form of insert command:

insert into table (column1, column2) values (value1, value2);

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.

Read more »
chr05210084's picture
Created by chr05210084 15 years 25 weeks ago
Category: Beginner   Tags:
0

How to update data in MySQL table

http://www.cahilig.net

Here's how to update existing data into MySQL database table.

update table set column='new_value' where where_condition;

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.

Read more »
chr05210084's picture
Created by chr05210084 15 years 25 weeks ago
Category: Beginner   Tags:
0

How to delete data in MySQL table

http://www.cahilig.net

If 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.

delete from table where where_condition;

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.

Read more »
chr05210084's picture
Created by chr05210084 15 years 25 weeks ago
Category: Beginner   Tags:
0

How to disable IPV6 in Fedora 12 and CentOS 5.5

http://www.cahilig.net

This is a quick tutorial on disabling IPV6 in Fedora 12 and CentOS 5.5

echo -e "install ipv6 /bin/true\nblacklist ipv6" > /etc/modprobe.d/blacklist-ipv6.conf

Stop ip6tables service and disable it from starting automatically at system boot.

Read more »
chr05210084's picture
Created by chr05210084 15 years 25 weeks ago
Category: Beginner   Tags:
0

How to fix X11 Forwarding in CentOS 5

http://www.cahilig.net

This tutorial describes how to fix the ssh X11 forwarding problem in CentOS 5.5 server.

Autoselected keyboard map en-us
ERROR: Failed to open display:

Make sure that the "xorg-x11-xauth" is also installed in your system. If not, this comm

yum -y install xorg-x11-xauth

Ensure that "X11Forwarding" is enabled in your ssh server configuration file. Edit the file "/etc/ssh/sshd_config".

Read more »
chr05210084's picture
Created by chr05210084 15 years 25 weeks ago
Category: Beginner   Tags:
0

How to install and configure VNC in Fedora 12

http://www.cahilig.net

Open up your terminal and install tigervnc via yum.
Type this command in your terminal:

yum -y install tigervnc tigervnc-server

Edit the VNC configuration file
vi /etc/sysconfig/vncservers

and append these lines:

VNCSERVERS="1:user"
VNCSERVERARGS[1]="-geometry 800x600 -depth 16"

Where VNCSERVERS= is for configuring the username.

Read more »
chr05210084's picture
Created by chr05210084 15 years 25 weeks ago
Category: Beginner   Tags:

Best karma users