Submitted by TimBruce on Fri, 08/15/2008 - 20:43
Drupal is software that helps you create information on websites. This falls into a category of software called Content Management Systems (CMS). In reality, it is more of a "framework" to provide specific functionality related to the "pages" you create and manage, to include a consistent look and feel (a theme) as well as additional tools to control and manage the content, or information.
Submitted by TimBruce on Wed, 03/12/2008 - 17:40
After adding a network card (NIC or Network Interface Card) to an OpenSuSE system, and configuring the device with YaST, I could not get it to activate. After a reboot it also didn’t show up as an active interface.
Submitted by TimBruce on Sun, 07/29/2007 - 23:19
On a recent upgrade from Drupal (information at http://www.drupal.org) v4.6.x to v5.1, I discovered that many of my "protected" pages were again publicly accessible. Since I'd already done the conversion on my production drupal instance, this was of some concern to me, but due to time constraints there was little I could do about it. Since my time was at a premium, I wasn't able to look at it until Thursday night (July 26th), after doing the conversion the prior weekend. That's when I discovered that the fix was a
Submitted by TimBruce on Wed, 03/28/2007 - 17:53
Everywhere you turn, IT professionals are talking about virtualization as the next big wave in technology. People banter around the terms Virtualization, Virtual PC, VMware, and others. But while IT people debate virtualizing computers, many people don't understand the concept, or why it's even needed.
Submitted by TimBruce on Tue, 03/13/2007 - 16:23
There are a variety of ways to change your MySQL password. One of the easiest is from the command line. You can use a command like:
mysqladmin -u root password yourrootsqlpassword
to change your password. The above command changes the password of the acount root to yourrootsqlpassword.
Submitted by TimBruce on Wed, 01/17/2007 - 21:27
I had to install my compiler and make with the commands:
# apt-get install gcc
# apt-get install make
I had to install a current kernel with the command:
# apt-get install linux-headers-$(uname -r)
Submitted by TimBruce on Wed, 08/09/2006 - 19:11
This shell script is used to show me how much space a particular directory takes up. The idea came to me while I was looking at filelight at one point because I was wondering hot much space some directories are taking on one of my systems. I could see the space used by a directory (and all it's subdirectories), but I wanted a way to see that space usage from the command line as well. Maybe someone had already written it, but this was my first pass at it back in 2005.
Submitted by TimBruce on Thu, 06/01/2006 - 00:13
It’s really not tough, but I always seem to forget how to install a package to Freesco. Just use the following command from the freesco command line (remember you must be root to do this)
pkg -i pathname
Pathname would be the location of the package, usually in http: format.
For instance, the installation of the Dinjite’s Utils package for 0.3.x would be:
Submitted by TimBruce on Mon, 05/22/2006 - 20:33
Occasionally, I have a need to look up a particular ASCII code when I'm writing writing some software. This is posted as a reference for me, so I can easily find the list of printable ASCII characters.
Submitted by TimBruce on Fri, 05/12/2006 - 19:58
Sometimes you want to be able to list the active users, and you can use the system stored procedures of sp_who and sp_who2 to do that. However, I've found that it's inconvenient for a couple of reasons. 1. If you run it from a command line, it scrolls over the 80 column limit you usually have in a terminal session (sometimes I run this using a command like osql -E -S sql -Q 'exec master..usp_ListUsers'). While this also goes over the 80 column limit, it goes over 2 lines, so it's more readable to me. 2.
Pages