Category Archives: Linux

The Linux Blogging Vacuum

April 13, 2008 by aaron
I’m considering splitting this blog into multiple blogs, but before I do that I want to find a good desktop blog publishing program to ease the transition on my end.However, I use Linux almost exclusively and from what I’m seeing and reading “good desktop blog publishing” and “Linux” are mutually exclusive. It isn’t often that Linux fails me, but all I can find are complaints about how Linux Blogging Sucks. I have a few more programs to test but for right now I agree.
Read More ⟶

One reason I use Linux.

April 23, 2007 by aaron
It continually surprises and impresses me, in a good way. As a little background: I’ve used Linux at a moderate to advanced level for a few years now: I’ve never written a bash script longer than 6 lines and never hacked the kernel, but I’m not afraid of the command line and have no problems editing my xorg.conf, grub.conf or any other system files using nano. The command line is my friend, but I still like a GUI admin panel sometimes.
Read More ⟶

Bash Script to Set Random XScreensaver as background

April 10, 2007 by aaron
This short bash script will randomly select a screensaver and display it in your background window, so you can have a random screensaver background instead of having to select a particular. Obviously you will need to have Xscreensaver installed for it to work. !/bin/bash files=(/usr/lib/xscreensaver/*) # Look for files in the XScreensaver folder n=${#files[@]} # For aesthetics "${files[RANDOM % n]}" -root & # Choose a random screensaver and execute it in the root window.

ASCII Star Wars in your terminal

April 9, 2007 by aaron
If you haven’t already seen this: the original Star Wars ASCII animation can also be accessed from telnet by telnetting to towel.blinkenlights.nl. Use the following in your terminal: telnet towel.blinkenlights.nl

Can’t connect to local MySQL server through socket…error.

April 21, 2007 by aaron
I recently moved my /home folder to its own partition, but in doing so, I broke MySQL. The full error I got was: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) To fix this you need to create the file and make sure that MySQL has access to it. (All commands need to be run as root) Create the directory (if it doesn’t already exist). sudo mkdir /var/run/mysqld/ Create the file by “touching” it.
Read More ⟶

The Linux Blogging Vacuum

April 13, 2008 by aaron
I’m considering splitting this blog into multiple blogs, but before I do that I want to find a good desktop blog publishing program to ease the transition on my end.However, I use Linux almost exclusively and from what I’m seeing and reading “good desktop blog publishing” and “Linux” are mutually exclusive. It isn’t often that Linux fails me, but all I can find are complaints about how Linux Blogging Sucks. I have a few more programs to test but for right now I agree.
Read More ⟶

One reason I use Linux.

April 23, 2007 by aaron
It continually surprises and impresses me, in a good way. As a little background: I’ve used Linux at a moderate to advanced level for a few years now: I’ve never written a bash script longer than 6 lines and never hacked the kernel, but I’m not afraid of the command line and have no problems editing my xorg.conf, grub.conf or any other system files using nano. The command line is my friend, but I still like a GUI admin panel sometimes.
Read More ⟶

Bash Script to Set Random XScreensaver as background

April 10, 2007 by aaron
This short bash script will randomly select a screensaver and display it in your background window, so you can have a random screensaver background instead of having to select a particular. Obviously you will need to have Xscreensaver installed for it to work. !/bin/bash files=(/usr/lib/xscreensaver/*) # Look for files in the XScreensaver folder n=${#files[@]} # For aesthetics "${files[RANDOM % n]}" -root & # Choose a random screensaver and execute it in the root window.

ASCII Star Wars in your terminal

April 9, 2007 by aaron
If you haven’t already seen this: the original Star Wars ASCII animation can also be accessed from telnet by telnetting to towel.blinkenlights.nl. Use the following in your terminal: telnet towel.blinkenlights.nl

Can’t connect to local MySQL server through socket…error.

April 21, 2007 by aaron
I recently moved my /home folder to its own partition, but in doing so, I broke MySQL. The full error I got was: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) To fix this you need to create the file and make sure that MySQL has access to it. (All commands need to be run as root) Create the directory (if it doesn’t already exist). sudo mkdir /var/run/mysqld/ Create the file by “touching” it.
Read More ⟶