I became a father this past June. If you’re a regular reader of my site, you’ve probably noticed my decrease in posting frequency since then. Much of the time that used to be spent tinkering with Linux is now spent changing diapers, buying diapers, feeding my daughter, etc. Continue reading
Author Archives: Linerd
Remove LAMP in Ubuntu
The most popular post on this site is the one showing how to install a LAMP server on Ubuntu. Once you’re done developing your websites on your computer, you may want to remove the LAMP server from your Ubuntu installation. Actually, you probably want to leave the Linux part and only remove the AMP part, (Apache, MySQL, php).
I’ve done a post previously that shows how to do this in several steps, but I wanted to come up with a more automated way. Continue reading
Remove Old Kernels In Ubuntu With One Command
A while back I wrote a post on how to remove old kernels from your Ubuntu system. While that process works just fine, it is a four step process. One person who read that post left a comment with a nice command line one-liner that removes all but the currently running kernel. And while that one-liner works quite well, I must admit that I don’t understand all the regular expressions used in it, so I decided to try and come up with my own one-liner to remove the old kernels from my system. Continue reading
Command Line Basics: Ripping Audio CD’s, Part 4
In the previous installments of Command Line Basics: Ripping Audio CD’s, I’ve gone through ripping CD’s and saving the files as WAV files, transcoding those files to Ogg Vorbis audio, and finally, querying an online CD database tagging those Ogg files. I the last installment, I promised to show a more automated way to do this. Yes, you could write your own Bash script to automate some of the steps, but as is often the case with Open Source Software, someone else has already done the work for you. Continue reading
Command Line Basics: Ripping Audio CD’s, Part 3
In part 1 of CLB: Ripping Audio CD’s, I showed how to rip the songs from your CD and save them as WAV files. In part 2 I showed how to convert those files to Ogg Vorbis audio. Today in Part 3 I’m going to show a few ways to tag those Ogg Vorbis audio files from the command line.
In the last post we used the oggenc command from the vorbis-tools package. We’re going to use another command from vorbis-tools to tag the files: vorbiscomment. Continue reading