One of the most powerful features of the Linux command line interface, (and other shells that conform to the POSIX standard) is the ability to pipeline output from one command as the input to another. This is done using the vertical bar or pipe character [ | ].
Continue reading Command Line Basics: Pipelining Outputlinux
I’ve previously shown how to create a bootable USB drive with Ubuntu and FreeDOS. While the technique in that post is educational, there is a much easier way. Use UNetbootin to do the work for you.
Continue reading Create a Bootable FreeDOS USB Drive on Linux With UNetbootinI’ve been using ndiswrapper and the Windows drivers for the Ralink RT2700E wireless card in my MSI Wind U100 432US. It turns our that the kernel included with Ubuntu Jaunty now includes the native Linux driver for this card. I’m not sure when this was added to the kernel, but I’m using version 2.6.28-15.
Continue reading Enable The RT2860STA Linux Wireless DriverThere’s no need to go out and buy Adobe Photoshop and take Photoshop classes. Just follow this simple GIMP tutorial to learn how to fade out the edge of an image. One of the features that gives images a web 2.0 kind of look is fading out the edges. This is most commonly seen in …
Continue reading Fade Out Images with GIMPIn today’s command line basics, I’m going to show you how to redirect output from the bash cli (command line interface). The output of most GNU command line tools is normally sent to the terminal (ie – standard output). There are times when you would like to have the output saved as a file. Now, …
Continue reading Command Line Basics: Redirecting Output