Skip to content

Instantly share code, notes, and snippets.

@AmitGupta7580
Last active April 3, 2022 20:18
Show Gist options
  • Save AmitGupta7580/d39aaeaf4278fd50aa96bc3a1c100e80 to your computer and use it in GitHub Desktop.
Save AmitGupta7580/d39aaeaf4278fd50aa96bc3a1c100e80 to your computer and use it in GitHub Desktop.

Linux Setup

Proxy-Settings

Set System Proxy IP and PORT

IP : 172.31.102.29 PORT : 3128

Upgrade ~/.bashrc

export http_proxy="http://edcguest:edcguest@172.31.102.29:3128/" export https_proxy="http://edcguest:edcguest@172.31.102.29:3128/"

Add proxy configrations to apt

sudo touch /etc/apt/apt.conf sudo gedit /etc/apt/apt.conf Acquire::http::proxy "http://edcguest:edcguest@172.31.102.29:3128/"; Acquire::https::proxy "http://edcguest:edcguest@172.31.102.29:3128/"; Acquire::ftp::proxy "http://edcguest:edcguest@172.31.102.29:3128/";

Update/Upgrade Apt

sudo apt update sudo apt-get update sudo apt-get upgrade

Install PIP

sudo apt-get install python3-pip

Install Curl

sudo apt-get install curl

Install GIT

sudo apt-get install git

Install Sublime-Text

sudo apt install dirmngr gnupg apt-transport-https ca-certificates software-properties-common curl --proxy-user edcguest:edcguest -fsSL https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - sudo add-apt-repository "deb https://download.sublimetext.com/ apt/stable/" sudo apt install sublime-text

Install VS-Code

Install Deb Package : Link sudo apt install ./<file>.deb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment