Recent Comments
- Roger Cody Venable on MySQL Upgrade To 5.1: Database Name Prefix #mysql50#
- Sharon Cote on Disappearing Bottom Panel & Top With Firefox + Linux Mint
- Pratik on Install GD Library For PHP5 On CentOS
- Compiling, Running and Cursing on Chromium OS – Getting It To Work ~ Mattias Geniar on Chromium OS: error: RPC failed; result=22, HTTP code = 502
- Lovelesh on Simple Apache Security Trick – ServerTokens & ServerSignature
- No need on VMware: internal error – vmodl.fault.HostCommunication
Monthly Archives: October 2008
Limiting Resources: nice & ionice
Limiting a certain process’ CPU usage can be done by changing its “nice“-value. This value determines how “nice” you are to other processes. If the value is high (10+) the process is considered very nice, because it’s not hogging up … Continue reading
MySQL: #1054 – Unknown column ‘table.columnname’ in ‘on clause’ Even Though Column Name Exists
You might run in to the following problem with a MySQL 5 installation. SELECT * FROM table1, table2 INNER JOIN table3 ON table1.columnname = table3.columnname; > #1054 – Unknown column ‘table1.columnname’ in ‘on clause’ While that would have been a valid … Continue reading
How To Mount A USB Hard Disk Through Command Line (Linux)
Here’s how to mount a USB hard disk drive (ie; external storage) on a Linux server, through the command line.
Exploring New Limits For Windows’ Task Manager (Through The Command Line)
Everyone knows the Windows Task Manager (accessed through CTRL+SHIFT+ESC or via CTRL+ALT+DEL), and perhaps even Process Explorer (by Microsoft) as a tool used to identify all processes & programs running on your computer. You can use to shut dow services … Continue reading