DEV Community

Cover image for I am practicing this all below Commands to master Ubuntu & Start my Journey in DevOps
Omkar Pomendkar
Omkar Pomendkar

Posted on

I am practicing this all below Commands to master Ubuntu & Start my Journey in DevOps

Let's Start

Terms related to OS

Windows vs Ubuntu
Folder -> Directory
Administrator-> Root
File -> File
Software -> Package

Basic Linux Commands

1) sudo su - Changing to Root user to get Administrative Privilages
sudo

2) pwd - present location of working directory
pwd

3) ls - to list all files & Directory
ls

4) cd - change directory
cd

5) cd .. - To Come out from Directory
cd ..

6) clear - To clear the Output
clear

File Creation Commands

1) touch - Create Empty file
touch

2) cat - use to create file able to to write in terminal to exit press CONTROL+D
Cat

Directory Creation

1) mkdir - Create a folder
mkdir

Top comments (0)