Skip to content

Latest commit

 

History

History
61 lines (52 loc) · 1.56 KB

File metadata and controls

61 lines (52 loc) · 1.56 KB

2025techpro_Session1 ( IDEs | Linux | Terminal |Tools)

1.Prepare your Developer Environement

Install WSL if you are using windows

WSL installation

Install VS Code

VS CODE Installation

Install VS Code extensions

Install Git

Git Installation

2.Linux Commands

Display Current Directory path

pwd

Change the working directory

cd home | cd..

Current user

whoami

Create directories

mkdir <directory_name>

List content of a directory

ls | la | ls -a | ls -l

Displays content of a file

cat

Display text in terminal

echo

Move files

mv

Delete files

rm | rmdir | rm -R

Copy files

cp

Documentation for commands

man

Get the power of an admin

sudo

3.Create your first project

Go to home directory

cd ~/.

Create a folder for your project

mkdir awesomeproject

Access directory awesomeproject

cd awesomeproject

Create a file readme.md

echo "I like Coding and this is my first readme.md" > readme.md

Display the contents of readme.md file

cat readme.md

Open awesomeproject in VS code

code . if the this is not working follow link below ⬇️

Open Folder in VS Code UI