Top 10 Linux Tips for 2008

by mylovehisa on 2008-01-17 11:07:49

At the beginning of the New Year in 2008, I would like to share some Linux tips with all of you. It doesn't matter which version of Linux you are using, as most of what I will discuss relates to the Linux command line. Many Windows users might feel a bit intimidated by the command line in Linux, but when it comes down to it, you'll realize that this is the most efficient way to work.

Read and practice the following instructions to become comfortable using Linux:

1. Try not to use the command Ctrl+D to end a session or close the terminal.

```bash

set -o ignoreeof # Enable Ctrl+D

set +o ignoreeof # Disable Ctrl+D

```

2. Aliases — We can assign an alias to a command...