Home | Projects | Notes > Unix/Linux > CLI Cheat Sheet
If you are using a mouse,
Highlight some text by holding down the left mouse button and dragging the mouse over it, or double-clicking a word. (It is copied into a buffer maintained by your system.)
Press the middle mouse button to paste the text at the cursor location.
Ctrl
+ A
- Move cursor to the beginning of the line.
Ctrl
+ E
- Move cursor to the end of the line.
Ctrl
+ F
- Move cursor forward one character; same as the right arrow key.
Ctrl
+ B
- Move cursor backword one character; same as the left arrow key.
Alt
+ F
- Move cursor forward one word.
Alt
+ B
- Move cursor backword one word.
Ctrl
+ F
- Clear the screen and move the cursor to the top-left corner. The clear command does the same thing.
Ctrl
+ xx
- Toggle between the start of line and current cursor position.
Ctrl
+ D
- Delete the character at the cursor location.
Ctrl
+ H
- Delete character before the cursor (backspace)
Ctrl
+ W
- Cut the word before the cursor to the clipboard.
Ctrl
+ K
- Cut the line after the cursor to the clipboard.
Ctrl
+ T
- Transpose (exchange) the character at the cursor location with the one preceding it.
Ctrl
+ Y
- Paste the last thing to be cut (yank)
Ctrl
+ _
- Undo
Alt
+ T
- Transpose the word at the cursor location with the one preceding it.
Esc
+ T
- Swap the last two words before the cursor.
Alt
+ L
- Convert the characters from the cursor location to the end of the word to lowercase.
Alt
+ U
- Convert the characters from the cursor location to the end of the word to uppercase.
Alt
+ Del
- Delete the word before the cursor.
Alt
+ D
- Delete the word afer the cursor
Ctrl
+ K
- Kill text from the cursor location to the end of line.
Ctrl
+ U
- Kill text from the cursor location to the beginning of the line.
Alt
+ D
- Kill text from the cursor location to the end of the current word.
Alt
+ Backspace
- Kill text from the cursor location to the beginning of the current word. If the cursor is at the beginning of a word, kill the previous word.
Ctrl
+ Y
- Yank text from the kill-ring and insert it at the cursor location.
xxxxxxxxxx
11441===============================================================================
2 LINUX COMMAND LINE INTERFACE (CLI)
3===============================================================================
4
5SHELL
6=====
7Shell is a program that takes command from the keyboard and give them to the
8operating system to perform.
9
10
11TERMINAL
12========
13Terminal is a tool which you can use to pass your shell commands. This is a
14program that opens a window and lets you interact with the shell.
15
16* Ctrl+Alt+t - open terminal
17* Ctrl+Shift+t - open second terminal in a new tab
18
19
20FILESYSTEM
21==========
22The files on linux system are also arranged in what we called a hierarchical
23directory structure which means that they are organized in a tree-like pattern
24of directories. (Under 'root' directory all files and folders are residing.)
25
26* . : current directory
27* .. : parent directory (one directory up)
28
29
30
31===============================================================================
32 COMMANDS
33===============================================================================
34
35* pwd (present working directory)
36
37 des. whenever you will open the terminal, by default the 'pwd' is your home
38 directory ('home/username')
39
40* cd (change working directory)
41
42 syn. cd [dir]
43
44 e.g.
45 cd / : change the working directory to the root directory
46 cd ~ : change the working direcotry to your home directory
47 cd : same as 'cd ~'
48 cd .. : change the working directory to the parent directory
49 cd Music : change the working directory to the music directory
50 cd My\ Doc : change the working directory to the 'My Doc' directory
51 (to deal with directory whose name includes space, escape
52 sequence '\' must be used)
53 cd "My Doc" : same as 'cd My\ Doc'
54 cd 'My Doc' : same as 'cd My\ Doc'
55
56 [!] Note: Both absolute/relative paths will work with 'cd' command
57
58* ls (list)
59
60 des. list content in the directory
61
62 syn. ls [options] [f/dir]
63
64 e.g.
65 ls Music/ : list content in the Music directory
66 ls -l : list in 'l'ong format
67 ls -a : list 'a'll files (including hidden files)
68 ls -al : list 'a'll files in 'l'ong format
69 ls -S : sort list by 'S'ize
70 ls *.html : list html files only
71 ls *.* : list files regardless of the file names and extensions
72 ls > f1 : redirect the output of ls to the file 'f1'
73 ls -d */ : list 'd'irectories only
74 ls -R : list subdirectories 'R'ecursively
75
76* clear
77
78 des. clear the terminal (you can still see the history by scrolling up)
79
80* cat
81
82 des. display text files, combine copies of text files, create text files
83
84 syn. cat [options] [f1] [f2] ...
85
86 e.g.
87 cat : display the input text ('Ctrl+D' to exit)
88 cat f1 : display content of f1
89 cat f1 f2 : display content of f1 and f2 combined
90 cat -b f1 : display content of f1 with line numbers to the
91 non-'b'lank lines
92 cat -n f1 : display content of f1 with line 'n'umbers to all lines
93 cat -s f1 : display content of f1 with consecutive blank lines
94 's'queezed to one blank line (will not change the content
95 of the file but just the display it this way for
96 convenience)
97 cat -E f1 : display conetnes of f1 with 'E'nd of Line character '$'
98 appended to the end of each line)
99 Ctrl+d : indicate that this is the end of the file and get out of
100 the 'cat' command
101
102* > (redirction)
103
104 des. capture output from a file, command or program and send it as an input
105 to another file, command or program
106
107 syn. [output] > [f]
108
109 e.g.
110 cat > f : redirect input text to the file f (overwrite the
111 existing conten)
112 cat >> f : redirect input text to the file f (append to the
113 existing content)
114 cat f1 f2 > f3
115 : redirect combined content of the files f1, f2 to file f3
116 cat f1 >> f2
117 : redirect and append the content of the file f1 to f2
118 ('cat f1 f2 > f2' will not work)
119
120* mkdir (make directory)
121
122 syn. mkdiri [options] [dir]
123
124 e.g.
125 mkdir d : make directory named 'd'
126 mkdir -p dp/dc
127 : make directory structure (create 'p'arent directory dp
128 and then create child directory dc inside dp)
129 mkdir --parents dp/dc
130 : same as 'mrdir -p dp/dc'
131 mkdir -p dp/{dc1,dc2,dc3}
132 : make directory structure (create 'p'arent directory dp
133 and then create 3 child directories inside dp at once)
134
135 [!] Note: 'mkdir -p dp/{dc1, dc2, dc3}' will cause an error due to spaces
136 between dc's
137
138* rmdir (remove directories)
139
140 syn. mkdiri [options] [dir]
141
142 e.g.
143 rmdir a/b/c : remove the directory 'c' only
144 rmdir -p a/b/c
145 : remove the whole directory structure a/b/c ('p'arents)
146 rmdir -pv a/b/c
147 : remove the whole dirctory structure and show extended
148 information ('v'erbose)
149
150 [!] Note: if a directory contains files in it, rmdir won't work for that
151 directory
152
153* rm (remove files or directories)
154
155 syn. rm [options] [f/dir]
156
157 e.g.
158 rm -rv a/b/c/d (where directory 'd' contains a file)
159 : remove the file in directory 'd' and then remove the
160 directory 'd' ('r'ecursive)
161 rm -rv a : remove recursively the directories a, b, c, d and any
162 files belong to the directory structure (just give the
163 parent directory, and 'rm' command will remove everything
164 under that directory)
165
166 [!] Note: with the option 'r', 'rm' command removes only the given
167 directory and its subdirectories (including the files) only and
168 it does not remove the whole directory structure given.
169
170* cp (copy files and directories)
171
172 syn. cp [options] [source f/dir] [destination f/dir]
173
174 e.g.
175 cp f1 f2 : if f2 didn't exist, create f2 and copy the content of f1
176 to f2
177 cp f1 dir : copy f1 to dir
178 cp f1 f2 f3 dir
179 : copy f1, f2, f3 to dir (copy multiple files)
180 cp -i f1 dir
181 : prompt before overwrite ('i'nteractive)
182 cp -R dir1 dir2
183 : copy dir1 to dir2 (when dir1 contains files)
184 ('R'ecursive)
185 : if dir2 didn't exist, dir2 will be created and then the
186 contents of dir1 will be copied to dir2
187 : if dir2 did exist, dir1 will be copied into dir2 as a
188 sub-directory
189
190* mv (move (rename) files)
191
192 syn. mv [options] [source f/dir] [destination f/dir]
193
194 e.g.
195 mv f1 f2 : rename f1 to f2
196 mv f1 dir : move f1 to dir (overwrite the file named f1 that already
197 exists in dir)
198 mv -i f1 dir
199 : prompt before overwrite ('i'nteractive)
200 mv dir1 dir2
201 : if dir2 did exist, dir1 will be copied into dir2 as a
202 sub-directory
203 : if dir2 didn't exist, rename dir1 to dir2
204
205* less (read or search in files)
206
207 syn.
208
209 e.g.
210 less f : show the content of f from the begning
211 : 'up/down arrow' keys to navigte line by line
212 : 'space' key to navigate page by page (forward)
213 : 'B' to navigate page by page (backward)
214 : 'G' browse to the end of f
215 : '1g' or 'g' to go to the begining of f
216 : '/pattern' to forward highlight search 'pattern'
217 - n : next hit
218 - N : prev hit
219 : '?pattern' to backword highlight search 'pattern'
220 - n : next hit
221 - N : prev hit
222
223* touch (change file timestampso)
224
225 des. easiest way to create new empty files. also used to change timestamps
226 on existing files or directories
227
228 syn. touch [options] [f/dir]
229
230 e.g.
231 touch f : create a new empty file f
232 : if f is an already exsisting file, 'touch' command
233 updates the timestamp of f
234
235* nano (Nano's ANOther editor, inspired by Pico)
236
237 des. nano is a small and friendly text editor and beside text editing Nano
238 offers many extra features like an interactive search or replace, go
239 to line or colum number, give indentation in the file or some other
240 features.
241
242 syn. nano [options] [f]
243
244 e.g.
245 nano f : open f in nano
246 : create f if it didn't exist (f is actually created when
247 it is saved from nano - 'Ctrl+o Enter')
248
249 [!] Note: get used to nano commands to be fluent (^G means Ctrl+g)
250
251* sudo (superuser do)
252
253 des. sudo allows user to some extra privileges as an administrator or a
254 superuser (when user opens a terminal, by default, he/she does not
255 have the administrative or root previleges)
256
257 syn. sudo ...
258
259 e.g.
260 sudo /etc mkdir newdir
261 : if 'sudo' command is omitted, permission denied error
262 will occur
263 sudo -s : switch to the root user (switch to super user mode)
264
265* top (display linux processes)
266
267 des. top program provides a dynamic real-time view of a running system
268
269 syn. top [options]
270
271 e.g.
272 top : display system summary information as well as a list of
273 processes or threads currently being managed by linux
274 kernel (by default, refreshes every 3 seconds)
275 : press 's' to change refreshing frequency
276 : press 'i' to filter out idle processes (press 'i' once
277 again to go back to the complete view
278 : press 'k' to kill a process by its PID
279
280* kill
281
282 des. send a signal to a process
283
284 syn. kill [options] [pid] [...]
285
286 e.g.
287 kill 3286 : kill the program with PID 3286
288 : if the program is not terminated with simple kill command
289 following 3 options can be used force terminating
290 - -9
291 - -SIGKILL
292 - -KILL
293
294 [!] Note: when you do not know the PID of a certain process, you can get it
295 by using 'pidof' command. if you do not even know the program
296 name you want to kill, use either 'top' command or 'ps' command
297 to find the PID.
298
299* pidof
300
301 des. find the process ID of a running program
302
303 syn. pidof [options] [program]
304
305 e.g.
306 pidof unity-control-center
307 : find the PID of 'unity-control-center' program
308
309* ps
310
311 des. report a snapshot of the current processes
312
313 syn. ps [options]
314
315 e.g.
316 ps -ux : show a list of running processes used by current user
317 ps -aux : show a list of running processes used by all users
318 ps -U username
319 : show a list of running processes used by a specific user
320 'username'
321 ps -C procname
322 : show a list of running processes related to the program
323 'procname'
324
325* echo
326
327 des. display a line of text
328
329 syn. echo [options] [string]
330
331 e.g.
332 echo hello : display 'hello'
333 echo "hello": wrapping the string with double quotes is a good
334 convention
335 myvar="kj" : assign "kj" to the variable 'myvar' (make sure there's no
336 space around '=')
337 echo $myvar : display the content(value) of 'myvar'
338 x=10 : assign 10 to variable 'x'
339 echo "the value of x is $x"
340 : (output) the value of x is 10
341 echo -e 'some \text'
342 : (output) some ext
343 : 'e'nable interpretation of '\' as an escape sequence
344
345 [!] Note: variables are valid only in the current session of terminal
346 (when terminal is closed and then reopened, myvar is gone)
347 [!] Note: echo command becomes more powerful when you are working with
348 scripting
349
350* permissions
351
352 e.g.
353
354 -rw-rw-r-- 1 klee klee 36 Sep 9 00:32 README.md
355 ---------- --- ---- ---- -- ------------- ---------
356 symbolic # of owner group size date/time file name
357 permissions symbolic
358 links
359
360
361 syn. symbolic permission classes (symbolic mode)
362
363 - r w x r w - r - -
364 --- --------- --------- ---------
365 [file type] [owner/user] [ group ] [ other ]
366 | |
367 | +--> r : read
368 | w : write
369 | x : execute
370 |
371 |
372 +---> - : file
373 d : derectory
374 c : character special file
375 b : binary special file
376
377 syn. octal permission (numerical representation of the file permission)
378
379 - r w x r w - r - -
380 --- --------- --------- ---------
381 [file type] [owner/user] [ group ] [ other ]
382
383 1 1 1 1 1 0 1 0 0
384 2^2 2^1 2^0 2^2 2^1 2^0 2^2 2^1 2^0
385 4 2 1 4 2 0 4 0 0
386 4 + 2 + 1 4 + 2 + 0 4 + 0 + 0
387 --------- --------- ---------
388 7 6 4
389
390 +------------------------------------------------------------+
391 | r,w,x permissions | binary | octal |
392 |============================================================|
393 | --- | 000 | 0 |
394 |------------------------------------------------------------|
395 | --x | 001 | 1 |
396 |------------------------------------------------------------|
397 | -w- | 010 | 2 |
398 |------------------------------------------------------------|
399 | -wx | 011 | 3 |
400 |------------------------------------------------------------|
401 | r-- | 100 | 4 |
402 |------------------------------------------------------------|
403 | r-x | 101 | 5 |
404 |------------------------------------------------------------|
405 | rw- | 110 | 6 |
406 |------------------------------------------------------------|
407 | rwx | 111 | 7 |
408 +------------------------------------------------------------+
409
410* chomod (change file mode bits)
411
412 des. utility to change permission of files
413
414 syn. chmod [options] [mode] [f/dir]
415
416 e.g. symbolic permissions
417 chmod o+x f : add(+) e'x'ecutable permission to 'o'ther for f
418 chmod o+w f : add(+) 'w'rite permission to 'o'ther for f
419 chmod g+w f : add(+) 'w'rite permission to 'g'roup for f
420 chmod g-wx f: remove(-) read and write permissions from 'g'roup for f
421 chmod ug=rwx f
422 : change 'u'ser and 'g'roup mode of f to 'rwx'
423 chmod ugo-rwx f
424 : remove(-) remove all the permissions from all the users
425 chmod a-rwx f
426 : same as 'chmod ugo-rwx f ('a'll)
427 chmod u+rw,g=rw,o+r f
428 : work with multiple user's permissions
429 chmod u-w dir (u=rx)
430 : user does not have write permission to dir
431 : user can read the content of dir
432 : user can 'cd' to dir
433 : user CANNOT create new files inside dir
434 chmod u-r dir (u=wx)
435 : user does not have read permission to dir
436 : user can 'cd' to dir
437 : user CANNOT read the content of dir
438 chmod u-x dir (u=rw)
439 : user does not have execute permission to dir (user
440 CANNOT execute anything with dir)
441 : user can only read the names of content inside dir (even
442 the permissions of the files are '?' marked)
443 : user CANNOT 'cd' to dir
444 : user CANNOT access to any files in dir
445
446 e.g. octal(numerical) permissions
447 chmod 000 f : nobody has any permission for f
448 chmod 755 f : give user 'rwx' permissions
449 : give group 'r-x' permissions
450 : give other 'r-x' permissions
451
452* which
453
454 des. return a path name of a file or command (locate a file)
455
456 syn. which [options] [f]
457
458 e.g.
459 which bash : locate the command 'bash' (/usr/bin/bash)
460 which f : locate f
461 which filefox
462 : /usr/bin/firefox
463
464 [!] Noate: the only options available for 'which' is '-a'
465
466* whatis
467
468 des. display one-line manual page descriptions
469
470 e.g.
471 whatis ls : show one-line manual page description of 'ls'
472
473* useradd
474
475 des. create a new user of update default new user information
476
477 syn. useradd [options] LOGIN
478 useradd -D
479 useradd -D [options]
480
481 e.g.
482 sudo useradd username -m -s /bin/bash -g users -c "my comment"
483 : create the user 'username' with features specified by the
484 options
485 -m : create default home directory for this user
486 -s : allow the user to use the designated shell
487 -g : assign default group to this user
488 -c : provide comment to this user
489 ...
490 sudo passwd username
491 : reset password for 'username'
492 sudo passwd : reset password for root user
493
494 [!] Note: new user can be found in '/home/'
495
496* userdel
497
498 des. delete a user account and related files
499
500 syn. userdel [options] LOGIN
501
502 e.g.
503 sudo userdel username
504 : delete the user 'username'
505 : but it does not delete the home directory for 'username'
506 (this is useful when a company wants to delete a resigned
507 person's account from the HR database but still wants to
508 keep the work the person did)
509 sudo rm -r /home/username
510 : delete the leftover home directory of 'username'
511 sudo userdel -r username
512 : delete the user 'username' as well as his/her home
513 directory
514
515* groups
516
517 des. print the groups a user is in
518
519 syn. groups
520
521 e.g.
522 groups
523 cat /etc/group
524 : show all the groups available on your system (groups are
525 added based on date-wise order, the newest group goes to
526 the bottom of the list)
527
528 e.g. sambashare:x:132:klee
529 ---------- ----
530 group user
531
532* groupadd
533
534 des. create a new group
535
536 syn. groupadd [options] [group]
537
538 e.g.
539 sudo groupadd groupname
540 : add the group 'groupname' to the system ('/etc/group')
541
542* groupdel
543
544 des. delete a group
545
546 syn. groupdel [options] [group]
547
548 e.g.
549 sudo groupdel groupname
550 : delete the group 'groupname' from the system
551 ('etc/group')
552
553* gpasswd
554
555 des. administer '/etc/group' and '/etc/gshadow' (every group can have
556 administrators, members and a password)
557
558 syn. gpasswd [options] [group]
559
560 e.g.
561 sudo gpasswd -a username groupname
562 : add a user 'username' to the group 'groupname'
563 sudo gpasswd -d username groupname
564 : 'd'elete a user 'username' from the group 'groupname'
565
566* df
567
568 des. report file system disk space usage
569
570 syn. df [options] [f/dir]
571
572 e.g.
573 df : show disk space usage
574 df -h : show disk space suage in 'h'uman readable format
575
576* du
577
578 des. estimate file space usage (estimate and display the disk space used by
579 files)
580
581 syn. du [options] [f/dir]
582
583 e.g.
584 du : estimate file space usage of the current directory
585 du /etc/ : estimate file space usage of the '/etc/' directory
586 du -h : ... in 'h'uman readable format
587 du -sh : ... in 's'ummary and in 'h'uman readable format
588 : if this command gives you 'cannot access' warnings, use
589 'sudo' command
590
591* free
592
593 des. display amount of free and used memory in the system as well as the
594 buffer used by kernel
595
596 syn. free [options]
597
598 e.g.
599 free -h : display in 'h'uman readable format
600 free -b : display in 'b'yte
601 free -k : display in 'k'illobyte
602 free -m : display in 'm'egabyte
603 free -g : display in 'g'igabyte
604 free -t : display in 't'errabyte
605
606* watch
607
608 des. execute a program periodically, showing output fullscreen
609
610 syn. watch [options] [command]
611
612 e.g.
613 watch free -m
614 : execute 'free -m' command periodically
615 watch -n 0.5 free -m
616 : ... adjust frequency to 0.5 sec (default frequency is
617 2 sec)
618
619 [!] Note: 'Ctrl+c' to come out of the command
620
621* head
622
623 des. output the first part of files (10 lines by default)
624
625 syn. head [options] [f]
626
627 e.g.
628 head -n3 f : display the first 3 lines of f
629 head -3 f : display the first 3 lines of f
630 head f1 f2 : display the first parts of f1 and f2
631
632* tail
633
634 des. output the last part of files (10 lines by default)
635
636 syn. tail [options] [f]
637
638 e.g.
639 tail -n3 f : display the last 3 lines of f
640 tail -f f : stay in 'tail' command and output appended data as the
641 file grows ('f'ollow)
642
643* find
644
645 des. search for files in a directory hirerarchy
646
647 syn. find [dir] [options] [f]
648
649 e.g.
650 find /home/kjlee -name file.txt
651 : search 'file.txt' in the path '/home/kjlee' and show the
652 file location if it is found
653 find / -mtime -3
654 : search all files created any time between 3 days ago and
655 now (this is useful when you don't know the name of the
656 file you want to search)
657 find / -mtime 1
658 : search all files created exactly 1 day ago
659
660 [!] Note: in case the 'Permission denied' warning appears, use 'sudo'
661 command
662
663* wc
664
665 des. print newline, word, and byte counts for each file
666
667 syn. wc [options] [f]
668
669 e.g.
670 wc file.txt : 1 6 42 file.txt
671 --- --- ---- --------
672 # of # of # of name of
673 lines words chars file
674 wc -c f : display just the byte counts (essentially the number of
675 'c'haracters) in f
676 wc -l f : display just the number of lines
677 wc -w f : display just the number of words
678 wc -L f : display just the length(# of chars) of the longest line
679
680* cal
681
682 des. display a calendar and the date of Easter
683
684 syn. cal [options]
685
686 e.g.
687 cal : display a default calendar (week days on the top)
688 ncal : display a calendar with week days on the left
689 cal 2020 : display all the calendar months in year 2020
690 cal 5 2020 : display the calendar for May, 2020 only
691 cal -3 : display prev, current, next months
692
693 [!] Note: '-1' is the default option for 'cal' command
694
695* date
696
697 des. print or set the system date and time
698
699 syn. date [options] [format]
700 date [format specifiers]
701
702 e.g.
703 date : display current date and time
704 date -s "11/20/2020 12:48:00"
705 : set the system date and time to '11/20/2020 12:48:00'
706 date +%d%h%y
707 : 04Jan17
708 date "+%d-%h-%y"
709 : 04-Jan-17
710 date "+%d/%h/%y"
711 : 04/Jan/17
712 date "+DATE: %m/%d/%y%nTIME: %H:%M:%S"
713 : DATE: 01/04/17
714 RIME: 22:25:13
715
716 [!] Note: format specifiers of 'date' command
717 +%m : specifies the month number
718 +%h : specifies the abbreviated month(Jan-Dec)
719 +%B : specifies the full month name
720 +%d : specifies the day of the month
721 +%y : specifies the year
722 +%H, +%M and +%S : specifies the hour, minute, seconds
723 +%D : specifies the date as mm/dd/yy
724 +%T : specifies the time as hh:mm:ss
725
726* apt-get
727
728 des. APT package handling (install, remove, etc.) utility
729
730 syn. apt-get ...
731
732 e.g.
733 sudo apt-get update
734 : resynchronize your local package files with server files
735 : these package files are stored in '/etc/apt/'
736 ('/etc/apt/sources.list' file contains paths to the
737 repositories of the packages)
738 sudo apt-get install vim
739 : install 'vim' software package
740 : this command will display the list of extra packages to
741 be installed (due to dependency) and how much space in
742 memory this installation will take up.
743 sudo apt-get remove vim
744 : remove 'vim' software package
745 [!] Note: configuration files will NOT be removed!
746 sudo apt-get remove --purge vim
747 : remove 'vim' software package + configuration files
748 sudo apt-get autoremove
749 : remove packages that were automatically installed to
750 satisfy the dependency for other packages and that are
751 now no longer needed
752 [!] Note: please check 'The following packages will be
753 REMOVED:' section in case you accidentally remove
754 necessary packages!
755
756 [!] Note: 'yum' or 'dnf' command for redhat based OS(CentOS, Fedora, etc.)
757
758* ifconfig (interface configuration)
759
760 des. display or change the configuration of network interface on user's
761 system
762
763 syn. ifconfig [interface] [options]
764
765 e.g.
766 ifconfig : display the configuration of network interface on your
767 system
768 : 'eth0' suggests that you have WIRED Connection (ethernet
769 cable)to the internet (additional ethernet interfaces
770 will be named 'eth1', 'eth2', and so on. if this is the
771 case 'eth0' will be your main ethernet interface)
772 : 'wlan0' suggests that you have WIRELESS Connection to the
773 internet
774 : 'lo' suggests that you have LOOPBACK Interface
775 ifconfig eth0
776 : display 'eth0' information only
777 sudo ifconfig eth0 up
778 : enable internet connection through 'eth0'
779 sudo ifconfig eth0 down
780 : disable internet connection through 'eth0'
781
782* tar (tape archive; an archiving format just like 'zip' format)
783
784 des. an archiving utility (create, maintain, modify and extract files which
785 are archived in the tar format
786
787 syn. tar [options] [compressed_name.tar] [f/dir]
788
789 e.g.
790 tar -cvf comp.tar dir
791 : compress 'dir' to 'comp.tar' file
792 - c 'c'reate an archive (create a tar file)
793 - v 'v'erbose (display the progress in the terminal
794 while creating the archive file
795 - f specify the 'f'ile name ('comp.tar' in this ex)
796 tar -xvf comp.tar
797 : e'x'tract 'comp.tar' file
798 tar -czvf comp.tar.gz dir
799 : compress 'dir' to 'comp.tar.gz', a gz(gzip) formatted
800 file
801 [!] Note: 'z' flag must come after 'c' flag
802 tar -xzvf comp.tar.gz dir
803 : e'x'tract 'comp.tar.gz' file
804
805* grep (global regular expression print)
806
807 des. print line that match specified patterns (case sensitive by default)
808
809 syn. grep [options] [pattern] [f/dir]
810
811 e.g.
812 grep "pattern" file.txt
813 : print lines in 'file.txt' that contain 'pattern'
814 (case sensitive by default)
815 grep -i "pattern" file.txt
816 : print lines in 'file.txt' that contain 'pattern'
817 (case 'i'nsensitive)
818 grep -n "pattern" file.txt
819 : print lines with line 'n'umbers in 'file.txt' that
820 contain 'pattern'
821 grep "pattern" f1 f2 f3 f4
822 : print lines in multiple files (f1, f2, f3, f4) that
823 contain 'pattern' (file names are printed as well)
824 grep -v "pattern" file.txt
825 : print lines in 'file.txt' that does NOT contain 'pattern'
826 (in'v'erse match)
827 grep --help : display additional information on 'grep' command
828
829* netstat (network statistics)
830
831 des. a command line tool used to display network connection, routing tables
832 and a number of network interfaces. also can be used to view network
833 protocol state statistics
834
835 syn. netstat [options]
836
837 e.g.
838 netstat -a : display 'a'll the connections available on your system
839 netstat -a | less
840 : display the information from the first page on
841 netstat -at | less
842 : display TCP connections only
843 netstat -au | less
844 : display UDP connections only
845 netstat -l | less
846 : display ports that are in 'l'istening state
847 netstat -lt | less
848 : display 'l'istening TCP connections only
849 netstat -lu | less
850 : display 'l'istening UDP connections only
851 netstat -s | less
852 : display 's'tatistics
853 netstat -pt | less
854 : display 'P'IDs of all TCP connections
855 netstat -c | less
856 : display status 'c'ontinuously (refreshed)
857 : Ctrl+c to quit the mode
858 netstat -ie : display 'e'xtend 'i'nterface (same as 'ifconfig'
859 command)
860 netstat -a | grep ':80'
861 : among the output of 'netstat -a' command, filter lines
862 that contain ':80'
863
864* dpkg
865
866 des. a command line tool to install, build, remove and manage Debian
867 packages.
868
869 syn. dpkg [options] action
870
871 e.g.
872 sudo dpkg -i google-chrome-stable_current_amd64.deb
873 : install google-chrome from the Debian package
874
875* diff (GNU diff)
876
877 des. compare files line by line.
878
879 syn. diff [options] [f1] [f2]
880
881 e.g.
882 diff f1 ../f1
883 : compare f1's in two different locations line by line
884 : (in the result) the arrows ('<' and '>') refer to what
885 the value of the line is in the left('<') file, with the
886 left file being the one user entered first on the command
887 line, in this case 'f1'
888
889
890
891
892===============================================================================
893 COMBINING COMMANDS
894===============================================================================
895
896* ; (semicolon)
897
898 e.g.
899 date ; cal ; pwd
900 : execute 'date', 'cal', 'pwd' commands sequentially
901
902 [!] Note: even if a command fails, the following commands will still be
903 executed
904
905* && (double-ampersand)
906
907 e.g.
908 ls && pwd && date && cal
909 : execute 'ls', 'pwd', 'date', 'cal' commands sequentially
910
911 [!] Note: whenever a command fails, the following commands will NOT Be
912 executed
913
914* || (double-pipe)
915
916 e.g.
917 ls || pwd : execute 'ls' command only
918
919 [!] Note: if execution of the first command is successful, the second
920 command will not be executed (basically, logical OR operation)
921
922
923
924===============================================================================
925 BASH SCRIPTING
926===============================================================================
927
928* script
929
930 a text file that contains a sequence of command for linux based operating
931 system
932
933* creating a script
934
935 nano myscript.sh
936 (including the extension 'sh' is not mandatory but is a good habbit)
937
938* writing a script
939
940 -----------------------------------TOP------------------------------
941
942 #!/bin/bash
943 : location of 'bash' (use 'which bash' command to get this info)
944
945 /bin/ls -l
946 : in linux bash script, it's a good practice to use the full path
947
948 STRING="Hello World!"
949 echo $STRING
950
951 (more commands...)
952
953 ---------------------------------BOTTOM-----------------------------
954
955 [!] Note: when this script is run, a long list will be printed followed by
956 the string "Hello World!"
957
958* running a script
959
960 ./myscript
961
962 [!] Note: user must have the execute permission to run the scrip
963
964
965
966===============================================================================
967 .bashrc
968===============================================================================
969
970* des. '.bashrc' file is a script that is executed whenever a new terminal
971 session is started in interactive mode (resides in a user's home
972 directory)
973
974* e.g. .basrc file is used to set evironment variables
975 (setting JAVAHOME variable when installing Java)
976
977 [!] Note: instead of starting a new terminal session, sourcing '.bashrc'
978 file will also apply the changes to the current terminal session
979
980* opening the script
981
982 nano .bashrc
983 gedit .bashrc
984 vim .bashrc
985
986* editing the script
987
988 alias ls='ls --color=auto -l'
989
990
991
992===============================================================================
993 ELSE
994===============================================================================
995
996## Bash Commands
997
998* uname -a show system and kernel
999* head -n1 /etc/issue show distribution
1000* mount shot mounted filesystems
1001* date show system date
1002* uptime shot uptime
1003* whoami show your username
1004* man command show manual for 'command'
1005
1006
1007## Bash Shortcuts
1008
1009* CTRL-c stop current command
1010* CTRL-z sleep program
1011* CTRL-a go to start of line
1012* CTRL-e go to end of line
1013* CTRL-u cut from start of line
1014* CTRL-k cut to end of line
1015* CTRL-r search history
1016* !(history#) Repeat command with history#
1017* !! Repeat last command
1018* !abc run list command starting with 'abc`
1019* !abc:p print last command starting with 'abc'
1020* !$ last argument of previous command
1021* !* all arguments of previous command
1022* ^abc^123 run previous command, replacing 'abc' with '123'
1023
1024
1025## Bash Variables
1026
1027* env show environment variables
1028* echo $NAME output value of $NAME variable
1029* export NAME=value set $NAME to 'value'
1030* $PATH executable search path
1031* $HOME home directory
1032* $SHELL current shell
1033
1034
1035## Directory Operations
1036
1037* pwd show current directory (print working directory)
1038* mkdir dir make directory 'dir'
1039* cd dir change directory to 'dir'
1040* cd .. go up a directory
1041* ls list files
1042 -a: show all (including hidden)
1043 -R: recursive list
1044 -r: reverse order
1045 -t: sort by last modified
1046 -S: sort by file size
1047 -l: long listing format
1048 -1: on fie per line
1049 -m: comma-separated output
1050 -Q: quoted output
1051
1052
1053## Search Files
1054
1055* grep pattern files search for 'pattern' in 'files'
1056* grep -i case insensitive search
1057* grep -r recursive search
1058* grep -v inverted search
1059* find /dir/ -name name* find files starting with 'name' in 'dir'
1060* find /dir/ -user name find files owned by name in 'dir'
1061* find /dir/ -mmin num find files modified less than 'num' minutes ago in 'dir'
1062* whereis command find binary / source / manual for 'command'
1063* locate file find 'file' (quick search of system index)
1064
1065
1066## File Operations
1067
1068* touch file1 create 'file1'
1069* cat file1 file2 concatenate files and output
1070* less file1 view and paginate 'file1'
1071* file file1 get type of 'file1'
1072* cp file1 file2 copy 'file1' to 'file2'
1073* mv file1 file2 move 'file1' to 'file2'
1074* rm file1 delete 'file1'
1075* head file1 show first 10 lines of 'file1'
1076* tail file1 show last 10 lines of 'file1'
1077* tail -f file1 output last lines of 'file1' as it changes
1078
1079
1080## Process Management
1081
1082* ps show snapshot of processes
1083* top show real time processes
1084* kill pid kill process with id 'pid'
1085* pkill name kill process with name 'name'
1086* killall name kill all processes with names beginning 'name'
1087
1088
1089## Nano Shortcuts
1090
1091* Ctrl-R read file
1092* Ctrl-O save file
1093* Ctrl-X close file
1094* Alt-A start marking text
1095* Ctrl-K cut marked text or line
1096* Ctrl-U paste text
1097* Alt-/ end of file
1098* Ctrl-A beginning of line
1099* Ctrl-E end of line
1100* Ctrl-C show line number
1101* Ctrl-_ Go to line number
1102* Ctrl-W find
1103* Alt-W find next
1104* Ctrl-\ search and replace
1105
1106
1107## Screen Shortcuts
1108
1109* screen start a screen session
1110* screen -r resume a screen session
1111* screen -list show your current screen sessions
1112* Ctrl-A activate commands for screen
1113* Ctrl-A c create a new instance of terminal
1114* Ctrl-A n go to the next instance of terminal
1115* Ctrl-A p go to the previous instance of terminal
1116* Ctrl-A " show current instances of terminals
1117* Ctrl-A A rename the current instance of terminal
1118
1119
1120## File Permissions
1121
1122* chmod 775 file change mode of 'file' to 775
1123* chmod -R 600 folder recursively chmod 'folder' to 600
1124* chown user:group file change 'file' owner to user and group to group
1125
1126
1127## File Permission Numbers
1128
1129* 1st diigt: owner permission
1130* 2nd digit: group permission
1131* 3rd digit: everyone permission
1132* Calculate each of the three permission digits by adding the numeric values of the permissions below.
1133 - 4: read(r)
1134 - 2: write(w)
1135 - 1: execute(x)
1136
1137
1138
1139==============================================================================
1140 REFERENCE
1141==============================================================================
1142
1143* Linux Command Line Tutorial For Beginners | Bash Terminal | Linux Terminal
1144 - https://www.youtube.com/playlist?list=PLS1QulWo1RIb9WVQGJ_vh-RQusbZgO_As