pwd shows current folder
cd /home/user/MyFolder/ navigating to a folder
ls /home list of what's in a folder
mkdir NewFolder create a new folder
copy cp Folder /user/home -r
Move mv /user/home/Folder /media/USBStick/
Remove rm /user/home/Folder -r
./configure -configures the app you want to install.
make -compiles the app.
su -allows system wide changes.
make install -Installs the application.
tar xvf MyCuteApp.tar -extracts the the application from the archive.
cd MyCuteApp -navigates to the extracted folder.
menna trminal vi editor command's
I Insert text before the cursor
A Insert text after the cursor
: Switch to ex mode
$ Go to last place on the line
^ Go to first place on the line
W Next word
B Previous word
Shift-G Last line of the file
20 Shift-G Go to line 20
Y Copy. (Note: Y3W = copy 3 words; Y3J = copy 4 lines.)
P Paste
D Cut
X Delete character under the cursor
i Insert text
a Append
u Undo
x Delete 1 character
dd Delete one line
yy Yank (copy 1 line)
p Paste
ZZ Exit and save
:q Quit without saving
:wq Write and quit
:q! Force quit without saving
:wq! Force write and quit
/ Searches forward
? Searches backward
h Move cursor back 1 space
j Move cursor down 1 line
k Move cursor up 1 line
l Move cursor forward 1 space