Changing Your IP Address to Static on Ubuntu Server

Friday, July 11th, 2008

sudo nano /etc/network/interfaces
update the file to look like the following (of course change to your network info)
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
sudo /etc/init.d/networking restart
References
http://www.howtogeek.com/howto/ubuntu/change-ubuntu-server-from-dhcp-to-a-static-ip-address/

Location of “Trash” in Ubuntu 8.04

Thursday, May 15th, 2008

Not sure when the happened, but the location of “Trash” has moved from “~/.Trash” to “~/.local/share/Trash”.  There is also a new structure for the trash folder.  It has a directory named “files” for the deleted files. There is an additional directory named “info” which contains when the files were deleted & where they were deleted [...]

How to Install Fonts in Ubuntu 8.04

Saturday, May 10th, 2008

The way to install fonts in Ubuntu 8.04 has changed a little, and in my option it is a bit easier.

open the “.fonts” folder in your home directory

You probably have to create it first
make sure you can view hidden files

copy your font files to this folder
next time you open your application, the fonts should be [...]

Ubuntu/Firefox 3 Huge CSS Font Fix

Wednesday, May 7th, 2008

Recently after upgrading to Ubuntu 8.04/Firefox 3, all of my CSS fonts have been HUGE! I didn’t have the opportunity to look for a solution, so I have been using Opera as my primary browser. After finally getting a little time to dig, I found a quick fix using the following steps.

Type “about:config” in the [...]