Need to get some information on what printer models work fine with Linux and other Unices? Need to get some documentation on how to set up your printer? Check out the Printing HOWTO Support Database
Information on printers
Programming the Perl DBI
Alligator Descartes, Tim Bunce
One of the greatest strengths of the Perl programming language is its ability to manipulate large amounts of data. Database programming is therefore a natural fit for Perl, not only for business applications but also for CGI-based Web and Intranet applications.
Programming the Perl DBI is coauthored by Alligator Descartes, one of [...]
Speeding up Java code
Many users complain about the general performance of Java applets. A good way to speed them up is by compiling them into binaries. You need to run the Cygnus Java Compiler, which is freely distributable. Check out this URL for more information.
Restarting Apache
If you are running the web server apache on your computer to publish web pages you can restart the server by typing the follow as root /etc/rc.d/init.d/httpd restart.
Copy/Paste in vim using visual mode
Few people know that the version of vi bundled with most Linux distributions is not the original vi, but actually vim. There are a few differences between those two editors, or at least enough differences to make the vi purist dislike vim. In any case, a little gem [...]
Checking What is Installed
Need to find out if you have a program installed or what version of it is there. Try typing rpm -q -a | grep -i program. This will search the RPM database for the name you give it and tell you what is installed.
Getting out of X-Windows
For a quick way to exit out of X-Windows (or if something goes wrong) press the following keys. Control-Alt-Backspace.
Repeat an old command
Did you type a really long command and want to repeat it. type typing !command. It gets interpreted as Run the command just like I did the last time.
Repeat a Command
Want to repeat the command you just typed? Most command shells will let you hit the up arrow key to ac’cess the history of your commands.
Finding out the PID of a given process
There are basically two ways to find out the PID (process ID) for a given process in Linux:
Run the ps aux combined with grep, such as in ps aux | grep httpd.
Run the pidof command followed by the name of the program, such as in pidof httpd. One little [...]
Recent Posts
-
- The new face of open source on Wall Street | The Open Road – CNET News
- 50 ways to impress your geeky linux friends – LaptopLogic.com
- How to fix the most common Linux problems | TuxRadar
- The Beginner’s Guide to Linux, Part 1: Finding the Right Distribution | Maximum PC
- 10 things you wanted to do with Ubuntu but didn’t know how