0% found this document useful (0 votes)
23 views2 pages

Linux Setup Commands

The document provides installation commands for various software on Linux, including Visual Studio Code, NVM, Node.js, NPM, Postman, Wireshark, and Net Tools. It outlines the steps for each installation, such as downloading files, executing scripts, and configuring desktop entries. Each section includes specific commands to ensure successful installation and verification of the software versions.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views2 pages

Linux Setup Commands

The document provides installation commands for various software on Linux, including Visual Studio Code, NVM, Node.js, NPM, Postman, Wireshark, and Net Tools. It outlines the steps for each installation, such as downloading files, executing scripts, and configuring desktop entries. Each section includes specific commands to ensure successful installation and verification of the software versions.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Linux Setup Installation Commands

Installing Visual Studio Code:


Find out your cpu arch:
uname -a

Grab the .deb le for your CPU architecture from here and then run:
sudo apt install ./<file-name>.deb

Installing NVM, Node & NPM:


1. Grab a bash script from the internet and execute it:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash

2. After this, NVM version 0.39.5 should be successfully installed:


. ~/.nvm/nvm.sh

3. Install Node.js version 20 and NPM version 10:


nvm install 20

Verify the versions by running:


nvm -v

node -v

npm -v

Installing Postman:
1. Opening a le named Postman.desktop in this path for creation:
code ~/.local/share/applications/Postman.desktop
2. Pasting this in that file, replacing “/path/to/Downloads” with the correct location:
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=/path/to/Downloads/Postman/app/Postman %U
Icon=/path/to/Downloads/Postman/app/resources/app/assets/icon.png
Terminal=false
fi
fi
Type=Application
Categories=Development;

Installing Wireshark:
1.
sudo add-apt-repository ppa:wireshark-dev/stable

2.
sudo apt-get update

3. Install Wireshark:
sudo apt-get install wireshark

4. Run Wireshark:
sudo wireshark

Installing Net Tools:


Installing important tools for controlling the network system, esp. getting the ifcon g command

sudo apt install net-tools


fi

You might also like