Brief Tutorial on Apache, PHP, and MySQL Installation and Configuration
|
|
|
This document, in addition to covering phpBB, briefly covers the installation and configuration of Apache, PHP, and MySQL, which are necessary to get up and running with phpBB.
<:: Read More ::>
|
How to fix the backspace key-binding in Xterm
|
|
|
In Xterm's emulate of the vt100 terminal it sends '^H' (0x08) when the backspace key is hit, "\e[3~" when the delete key is hit, and '^H' (0x08) when ctrl-h is hit. Some programs, such as Emacs, want to use '^H' (0x08) for commands other than delete. To work around this problem the key-map in Emacs either has to be changed to accept '^H' as delete left or Xterm should send '^?' to delete to the left and tty should be told to expect '^?' as meaning delete left. The solutions shown in the next section address changing Emacs key-map, getting Xterm to send the different key codes, and setting stty's variables.
<:: Read More ::>
|
Example syntax for Secure Copy (scp)
|
|
|
scp allows files to be copied to, from, or between different hosts. It uses ssh for data transfer and provides the same authentication and same level of security as ssh.
<:: Read More ::>
|
Locating files using the find command
|
|
|
The find command is a powerful *nix utility that allows the user to find files located in the file system via criteria such as the file name, when file was last accessed, when the file status was last changed, the file's permissions, owner, group, size, or even number of inodes.
<:: Read More ::>
|
Changing the timezone, date, and time
|
|
|
Changing the date and time requires two steps. First, Linux's date and time must be changed and then the new time has to be written to the hardware clock...
<:: Read More ::>
|
|