Chris Nizzardini, Salt Lake City Utah, Web Developer Specializing in LAMP+Ajax Since 2006

My Blog

Here is my awesome blog. You can find information on programming, linux, documentation, tips for code and database optimization, my thoughts and rants, and whatever else I feel like sharing. Feel free to contribute to the blog by posting comments and asking questions.

Linux

vmware on debian 3.1 sarge

Posted by chris on March 13th, 2007 Comment(1)

Well I’ve been having some good luck with tutorials lately. Usually the linux tutorials I find are crap. I mean let’s face it the documentation for most open source projects sucks. Oh okay RTFM, well the manual sucks okay. So ReWrite TFM (except for Gentoo, you guys rock on documentation). Anyways I found some good one’s lately. One of those described how to setup vmware on debian. I’ve been interested in virtualizing my linux server for a while now. With out going into a lot of detail on why I’ll just say cause it’s just cool I guess. This how to forge article posted by Falko Timme in October of 2006 does a great job of walking you step by step. I’ve archived the article on my site just in case.

And here is a rather unexciting pic of me installing a debian vm.

vmware

In Linux ()

nes online and randomness

Posted by chris on March 13th, 2007 Comments(0)

I spent 6 hours of my weekend on VirtualNES playing all my favorite NES games. It brought back memories. It’s a web/java-based emulator for good ol’ Nintendo! I mainly played Tecmo Super Bowl, my all time favorite football game. Anyways they have 500 english games so this site should keep any one looking for some nostalgia going for a while.

I also updated the look and feel of this blog. The default regulus theme is kind of dainty, so I added my own header image (it doesn’t really make any sense but looks kind of cool) and I removed the purple-ish background. It looks plain and simple now.

In Linux ()

setting up postfix on debian 3.1

Posted by chris on March 10th, 2007 Comments (2)

I borrowed this article from unixreview.com. It was originally posted by Joe “Zonker” Brockmeier in June of 2005 at www.unixreview.com… The example he lays out works. I was able to send email to my gmail account about 10 minutes later. I didn’t use my own dns server for the MX record though. My domain is registered through yahoo and they allow me to edit my dns records. So I made an entry for my debian server and added the server name to the mx record. This is a real bare-bones install, but a bare-bones install of postfix is often needed by other packages (such as Nagios to name one).

Read the rest of this entry »

In Linux ()

setting up samba on debian 3.1

Posted by chris on March 10th, 2007 Comments(0)

I’ve decided to use my linux server as backup file storage. It has two large 160 GB drives sitting in a mirrored volume so my data is safe :) Here is a quick dirty how to on samba:

Read the rest of this entry »

In Linux ()

setup an easy ftp server on debian 3.1 linux

Posted by chris on March 10th, 2007 Comments(0)

I decided to setup an ftp server to allow me to easily upload files from my windows development machine to my debian linux server. vsftpd is an easy to setup and configure ftp server. I probably had this thing going within 10 minutes.

Read the rest of this entry »

In Linux ()

Linux ifconfig / route commands

Posted by chris on February 18th, 2007 Comments (4)

Add a static IP Address:
ifconfig [interface] [ip address] netmask [subnet address]

Add a default gateway or route:
route add default gw [ip address]

In Linux ()