After tons of popularity surrounding the Peppermint OS release last month, today Cloud lovers get a treat in the first release of Peppermint Ice, version 07142010. Take a detailed look at the live CD, installation process, and popular applications in this Peppermint Ice screenshot review.
Read more »Peppermint Ice Is Here: Screenshots Included
- Login to post comments
Firefox lets hackers grab your passwords
Better delete your passwords from Firefox's Password Manager before next week's Black Hat security conference in Las Vegas. That's when Jeremiah Grossman will present a demo showcasing how Javascript can be used to collect passwords from Firefox.
Read more »- Login to post comments
How to (easily) fool your host into thinking a name is mapped to a certain IP address
I could use the IP address of the host where the site is, right? Well, no. It's a shared hosting so requests have to be made by name.
Read more »- Login to post comments
How to: Tweet using pidgin in ubuntu 10.04
- Login to post comments
Advanced Bash-Scripting Guide
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.
- Login to post comments
How to insert data into MySQL table
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 »- Login to post comments
How to update data in MySQL table
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.
How to delete data in MySQL table
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.
- Login to post comments
How to disable IPV6 in Fedora 12 and CentOS 5.5
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 »- Login to post comments
How to fix X11 Forwarding in CentOS 5
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 »- Login to post comments
How to install and configure VNC in Fedora 12
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 »Installing applications in Linux with a double click
For many, the biggest barrier to adopting Linux is the challenge of having to use the command line for too many tasks. One of these tasks, it is though, is the installation of applications.
Read more »- Login to post comments
Ubuntu Studio 2.0 (Puppy Edition) Screenshots
Ubuntu Studio 2.0 (Puppy Edition) is based on Ubuntu 10.04 Lucid Lynx and provides a lightweight interface where you can run popular Ubuntu Studio applications like Jack, Ardour2, Hydrogen and many more.
Read more »- Login to post comments
Linux Rules!
I love Linux! I’ve been using this free, open source operating system for six years now. Part of the fun of the Linux experience is trying out and using any number of different distributions.
Read more »- Login to post comments
Why You SHOULD Try Linux On Your Netbook…
After having spent a couple of months trying Linux on a netbook, I figured I’d write a little article on why you should try Linux on your netbook and how to go about doing it.
Read more »- Login to post comments