Getting started with Linux Commands

Subscribers:
1,220
Published on ● Video Link: https://www.youtube.com/watch?v=tnBiu0wxqfg



Duration: 15:46
55 views
2


Suggested prior information
Engineer Man - https://www.youtube.com/watch?v=UFIoRLqhFpo
Wikipedia - https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard
Linux Kernel - https://developer.ibm.com/articles/l-linux-kernel/

***MISSING FROM THIS VIDEO, ps command***
ps -aef is my favorite flags

Commands in the video after logging in
[ec2-user@ip-172-31-84-214 ~]$ history
1 pwd
2 cd /
3 ls
4 ls home
5 ls /home
6 cd home
7 ls
8 ls home
9 ls ../home
10 ls /home
11 pwd
12 ls ec2-user/
13 ls ../home/ec2-user/
14 ls /home/ec2-user
15 cd ec2-user/
16 ls
17 ls -l
18 ls -a
19 ls -la
20 ls -lat
21 ls -latr
22 ls -latrh
23 clear
24 man ls
25 ls -ltrah
26 ls -ltrah ____ myfile.txt *Some characters are not allowed
27 cat myfile.txt
28 ls -ltrah ____ myfile.txt *Some characters are not allowed
29 cat myfile.txt
30 ls -ltrah ____ myfile.txt *Some characters are not allowed
31 cat myfile.txt
32 clear
33 more myfile.txt
34 less myfile.txt
35 man more
36 man less
37 clear
38 which clear
39 locate clear
40 sudo updatedb
41 locate clear
42 find . | grep clear
43 find / | grep clear
44 clear
45 ls
46 ls -a
47 for a in `ls -a`; echo $a
48 for a in `ls -a`; do echo $a; sleep 5; done
49 jobs
50 bg 1
51 man jobs
52 history