1.Linux Basics and Commands
1.Linux Basics and Commands
Student Handout
Linux Basics and Commands: Student
Handout
1. Overview of Linux
1.1 History of Linux
Linux Creation: Developed by Linus Torvalds in 1991 as a free and open-source OS.
UNIX Inspiration: Modeled after UNIX, used in academic and industrial settings.
Growth: Now widely used in servers, cloud computing, and embedded systems.
/
├── bin
├── boot
├── dev
├── etc
├── home
│ ├── john
│ └── jane
├── lib
├── opt
├── tmp
├── usr
└── var
5.2 Basic Command Flow
Start
|
v
[pwd] --> Shows current directory
|
v
[ls] --> Lists files in the current directory
|
v
[cd] --> Changes directory
|
v
[mkdir] --> Creates a new directory
|
v
[touch] --> Creates a new file
|
v
[cp] --> Copies a file
|
v
[mv] --> Moves or renames a file
|
v
[rm] --> Deletes a file
Conclusion
This handout provides a foundational understanding of Linux, its file system, and basic
commands. Practice these commands in a Linux environment to become more comfortable with
the system. Happy learning!