Posted on February 13, 2010, 2:27 pm, by devnet.
This post was originally published on 13 July, 2006. I’ve updated the original post which can be found here with current and extra information.
I have a problem with facebook, myspace, and other social networking websites out there. The problem is when I upload my data to their webservers….I don’t own it anymore. They do. And [...]
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 December 13, 2008, 3:42 pm, by devnet.
This article is from 2006! The information here may not be the most current. You can visit an updated version here!
Doesn’t sound like anything new right? Well, some people may not know of this method.
Normally, to host your own webpage you would need to spend around 7 bucks to purchase a domain. Next you would [...]
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 [...]