STChat is a simple telnet chat server that runs on Linux, Windows and MAC. I’ve only tested this on Linux so i can’t speak for the other OS’s. The chat system is really simple, supports colors, multiple terminal types (vt100 etc), usernames and admin mode. Putty, Linux telnet, and Windows telnet seem to work just fine when [...]
cut
Divide a file into several parts (columns)
Writes to standard output selected parts of each line of each input file, or standard input if no files are given or for a file name of `-’.
Syntax
cut [OPTION]… [FILE]…
In the options below, BYTE-LIST, CHARACTER-LIST, and FIELD-LIST are one or more [...]
Below are some basic examples of how to create Dialog based Bash scripts for the Linux console. Dialog provides a method of displaying several different types of dialog boxes from shell scripts. The bash dialog example below walks you through a basic “Hello World” shell script using Dialog.
#!/bin/sh
rm /tmp/h.out
while [ 0 ]; [...]
Writing an ISO file to a USB drive just got super easy for me. I found this program called UNetbootin which lets me select and ISO drive, select the /device I want to write to, and BAM, bootable USB drive. One thing to note, when selecting your /device (e.g. /dev/sdb1) make sure it’s mounted. When [...]
Setting up a firewall in Linux is actually surprisingly easy. With Ubuntu you may want to make sure the iptables package is installed. If you run Slackware, the best Distro on Earth, you’ve already got it. Iptables is the heart of most firewall scripts in Linux.
I’m going to assume that you are [...]
If you’re looking to pretty up your Linux desktop with some cool widgets take a look at the screenlets package. Screenlets is availible as a Debian or Ubuntu package so installing is just a matter of going to your package manager and searching for “screenlets”. Once installed you can access the screenlets from the applicatons [...]
If you’re looking for a really cool 3D Linux desktop do a search for Compiz. You’ll want the Compiz and CompizConfig packages from your distributions package system. In Ubuntu you can use the Synaptic Package Manager to download and install the necessary software.
Once installed you’ll want to open up the CompizConfig Settings [...]
Everyday I am impressed at what I find for Linux software, especially security related software such as sniffers. I wanted to see what was availible for instant messenger sniffers and sure enough I found a cool looking program called ChatSniff. For all you Ubuntu users, they’ve got a debian package for you to install on [...]
RecordMyDesktop is an open source tool for recording your desktop into a the OGV open source video format. You can then use a video editing program such as In the near future I am going to be making some video tutorials on programming and Linux which requires me to have a desktop video recording [...]
Recently I’ve acquired an Asus eeePC 4gb Netbook. The Netbook had some funky version of Linux preinstalled which ran everything as the root user with no authentication. Talk about a disaster ready to happen! After installing Ubuntu Netbook Remix I noticed some lag in the Remix user interface which brought up the question, which Linux [...]