Manuale TOSTO per esperti su Linux (in inglese)
REGISTRAZIONE E/O LOGIN NECESSARI
Manuale con pochi fronzoli e molto succo: tutto ciò che vi serve sapere su Linux...ATTENZIONE: SOLO PER ESPERTI!
ANTEPRIMA:
This is valid for all commands:
1 - The given commands can be rewritten on the command-line and easily pushing the
directions keys.
2 - Through the "history" command it's possible to see the given commands, if after it's
inserted the number, it shows the last n. commands given.
(es. history 14 ;shows last 14 commands)
3 - Often giving the commands, text files are created. To exiting from them, you need to press
"q" or, in case you want to stop the process because the execution of the command creates
nonsensical characters or doesn't accepted other input from keyboard, you need to press
"Ctrl+c".
4 - Often, commands given, provide a series of dates that pass the visualization of screen,
showing only a side of them. In order to obviate
this phenomenon, you can use an option "| more" or "| less" adding at the end of the command
(ls -la | more) or after the name of file:
(cat filename | more)
5 -moreover, after having used some procedures, you need to know that pushing the key
"Enter", continue the visualization for row and pushing key "Space" continue for page.
THROUGH DIRECTORY
cd = cd (alone) return into homedir (~ o $HOME)
cd .. = move to the previous directory (which depends)
cd / = return to the root directory from any point we are
ls = shows the contained of a directory horizontally
ls | more = shows the contained x page and vertically
(through enter continues ahead with a single line x time)
(through space continues x page)
ls -l = the options -l shows many details.
ls -la = the option -a shows the directory preceded from a dot ( this is the command advised)
cp -av = copy full directories
es. starting (/usr) destination (/mnt/where_you_want)
cp -r = to copy directory
mkdir = to create a directory
rmdir = to remove a directory
rm -r = to delete the dir/sub_dir and what there is inside
rm -r -f = to delete the dir/sub_dir and what there is inside without ask confirm
pwd = to know in which directory you are
tree namedir = shows the directories depended from which indicated
reset = if xterm doesn't respond to the given commands, the reset command ublock it.
THROUGH FILE
cp = to copy file
5
rm = to delete file
mv = to move/rename file
mv name newname = it renames the file (es. mv cri.txt cro.txt)
mv filename /dirname = move file into indicated directory
(es. mv cri.txt /usr)
cat filename = shows inside of a file
touch filename = to create an empty file immediately
wc = to show the statistics on a text file
split = to divide a file in more sides
diff = to find the difference of text inside 2 files (ex. diff 1.txt 2.txt)
Ultimo aggiornamento (Martedì 03 Novembre 2009 15:27)










