Posted on November 6, 2009, 2:24 pm, by devnet.
I installed a bare bones Arch Linux system today and took a screenshot. With no graphics utilities installed, I needed a way to convert a PNG to a GIF for a Simple Machines forum template thumbnail. I figured I’d use a command line utility to help me and ImageMagick is installed by default on most [...]
Posted on September 8, 2009, 2:25 pm, by devnet.
I previously blogged about how to add color to the ‘ls’ command utilizing an config file and alias. I then stumbled across a nugget of wisdom from a Foresight Linux user on the developers mailing list who gave a handy command that remedies some problems with missing color in a terminal.
On some distributions, the system-wide [...]
Posted on June 5, 2009, 5:00 pm, by devnet.
One of the things I love is being able to enter into a directory via terminal, list the contents, and quickly see which ones are executable or not and which ones are directories or are not directories IN COLOR (not everyone is perfect right?). This is specifically handy as I move through working with Slackware [...]
Posted on March 17, 2009, 10:35 pm, by devnet.
I installed PCLinuxOS 2009 recently on a Dell D630 Latitude and was disappointed to see that I couldn’t get the hardware volume (up/down/mute) buttons didn’t work out of the box. I thought a bit about kmilo, a program that was previously used for laptop buttons (thinkpad buttons though) and I searched around a bit inside [...]
Posted on February 10, 2009, 11:43 am, by devnet.
I have a laptop with the resolution of 1440×900…so when I installed the latest TR6 from PCLinuxOS, I was dismayed to find out that when launching Firefox, it opened up in a window that was 1024 pixels. Of course, I maximized this and then closed it thinking that Firefox would remember my settings. [...]
Posted on December 17, 2008, 4:33 pm, by devnet.
Do you run PCLinuxOS 2007 or Minime 2008 and would you like to take advantage of the latest kernel for PCLinuxOS? You can do this by enabling the ‘testing’ portion of the repository.
Read about Repository Control in PCLinuxOS
You’ll be looking for the ’sections’ blank when viewing repository details and you’ll just need to add ‘testing’ [...]
Posted on November 25, 2008, 5:01 pm, by devnet.
I wanted a quick way to be able to find out what files weren’t visible to others (and therefore, not visible to website visitors). Messing with arguments and the file command, you can do the following:
find -type f ! -perm -444
This locates all files not visible to ‘others’ in the current directory. You can apply [...]
Posted on November 18, 2008, 5:38 pm, by devnet.
Sometimes when I’m troubleshooting a PHP error and a function is called in the debugger that gives me a line number of a file to look at, I want to know what that line says without opening up the file. Using the command line, you can accomplish this in the following way:
head -n 96 filename.php [...]
Posted on October 17, 2008, 11:16 pm, by devnet.
So, HowtoForge has a perfect desktop for PCLinuxOS 2007…how about something similar for 2008 MiniMe? I won’t go into near as much detail as they do there but I’ll go over how I get my desktop up and rolling after a fresh install of PCLinuxOS Minime 2008.
Tags:
2008,
appearance,
customization,
customizing,
desktop,
howto,
linux,
minime,
PCLinuxOS,
perfect,
themes,
Tips,
tips and tricks,
tutorial 2 Comments |
Read the rest of this entry »
Posted on October 12, 2008, 11:45 am, by devnet.
Install GCC on ClarkConnect
This is a pretty easy thing to do, but it seems many people come to Yet Another Linux Blog searching for exactly how to do this. ClarkConnect does not come with GCC installed by default. If you download software and attempt to compile it (using ./configure, make, make install) it [...]