Linux for us, is running the program run platform, simply speaking, is the server, not how to systematically learn the Linux command, as the project needs,
For example, to find the log, where the problem, where the error, so he also slowly understand some common Linux commands, this is a personal summary of their common Linux commands
Let's start with the format of the General Linux command:
Two special commands:
. Represents the current directory
. . Represents the previous directory of the current directory
. Often used to execute current commands, such as when we start the Tomcat command. startup.sh
.. Commonly used in our parent directory (previous directory) to be returned to the current directory
Command-option parameters (options and parameters can not be written)
Switch directory for CD (change directory)
CD Java enters the Java directory under the current directory
cd/usr/local into the usr/local directory
CD/ switch to root directory
CD.. Switch to Parent directory
LS (list) display list
ls-l Displays details of all files in the current directory, including permissions for read and write execution owned by the current user
ls-a Show all files, including hidden files
ls-d Viewing the properties of a directory
Linux Common Commands 01