
Critical to a Linux administrator is knowledge of one or more text editors to manage the many configuration files on a Linux system. The Linux file system hierarchy organizes hardware, drivers, directories, and of course, files. Printer configuration can be a complex topic. Shell scripts enable you to automate many everyday processes. Security is now a huge issue that Linux can handle better than other operating systems; locally, and on larger networks such as the Internet. You need to master a number of basic commands to manage Linux.
First we would cover those commands which can be run from a normal user. To complete this practice login from a normal user.

$wc [file name]
This command is used to count line words and character of file. Out will first show the line number word and in the end characters.
$wc test 2 4 23 test

In this example there are 2 lines 4 words and 23 character in test file.
$head –n [number] [file name]
head command is used to display specific number of line from top for given file.
$head –n 4 test
For example this command will show the 4 top most line of file test.

$tail –n [number] [file name]
tail command will display the specific number of line form bottom for given file.
$tail –n 3 test
This command will display the 3 line from bottom of file test
$spell [file name]
spell command will display the wrong spelling of files.
$spell test
This command will display the wrong spelling of test file. If there is no spelling mistake no out will show.

$aspell check [file]
This command is used to correct the spelling related mistake in any given files.
$aspell check test
This command will show the all wrong spelling from test file and there possible corrections. To use correction just press the number shown in front of words.
$who am i
This command is use to display the username of currently logged.
$who
This command will display all the user currently logged in all terminals.

$tty
This command is used to display the terminal number of currently logged in terminals.
$cal
This command will display the calendar of current month. You can see the calendar of any specific year also.
$cal 2010 |more

This will display the calendar of year 2010. As output will be more than a page so use more switch with commands.
$date
This will the current system times and date.
$bc

This command will launch the calculator at command prompt. Write down your calculations and press enter to get the answer. Use CTRL+D key combination to exit from calculator.
$info [command]
info command is used to get help about any commands.
$info cat
This will display the help about cat commands. Generally output of info commands is more a then a page. You can quit form this out by just pressing q.
$command - - help
This help options is really very useful when do not want to be read full manual page for help. This will provide very basic help like which switch will work with this command.
$cat - - help
This will show the available switch cat command and a very brief descriptions about these switches.
$man [command]
If want to read the detail about any command use this command. This will give you the complete detail about commands.
$man cat
This command will give the complete details about the cat commands including switches and their usages. Use q to quit from the output of this commands.
$less [file]
When you have a file more than one pages use less command to read the output of file despite of using cat command with more switch. As with more switch you cannot scroll the text in both directions.
$cat [file] |more
If you have a file more than one page than use |more switch with cat to read the output. Without this switch matter of file will scroll too fast that you will see only texts of last pages
Search more about
Search in Google for
