Skip to content

Latest commit

 

History

History
125 lines (105 loc) · 3.43 KB

Ubuntu-New-Install-Config.md

File metadata and controls

125 lines (105 loc) · 3.43 KB

Create a new Directory in Downloads or any where else to store the packages or tar's, if any:

$ cd Downloads
$ mkdir Apps
$ cd Apps
  1. Installing Mozilla Firefox Manually- Reference : Look for manualy install section

    a) Downlaod latest tar of Firefox from this link

    OR

    a) Use the following command to downlaod latest version of firefox automatically.

    $ wget -O firefox.tar.bz2 "https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US"

    b) Use the following commands.

OR

  1. Installing latest firefox automatically using packet manager
$ sudo apt-get install firefox 
  1. Installing Spotify
$ sudo snap install spotify
  1. Installing VLC
$ sudo snap install vlc
  1. Installing Postman
$ sudo snap install postman
  1. Installing Okular
$ sudo snap install okular
  1. Installing Java : Reference
$ sudo add-apt-repository ppa:openjdk-r/ppa
$ sudo apt-get update
$ sudo apt-get install openjdk-11-jdk

Now check whether java is correctly installed

$ javac -version
javac 11.0.2
$ java -version
openjdk version "11.0.2" 2019-04-16
OpenJDK Runtime Environment (build 11.0.2+7-Ubuntu)
OpenJDK 64-Bit Server VM (build 11.0.2+7-Ubuntu, mixed mode, sharing)
  1. Installing Jetbrains Font:
$ wget -O JetBrainsMono-1.0.3.zip https://download.jetbrains.com/fonts/JetBrainsMono-1.0.3.zip
$ sudo unzip JetBrainsMono-1.0.3.zip -d /usr/share/fonts
$ fc-cache -f -v
  1. Installing Development tools:
$ sudo apt install build-essential
  1. Installing nvm, node, yarn: Reference
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash

This automatically installs nvm and puts the required command in "/.bashrc" if you use something else like "ZSH" then you have to edit the "/.zshrc" or respective yourself like this:

$ sudo nano ~/.zshrc
# Add the folowing lines and save the file with Ctrl+S and exit with Ctrl+Z:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion
$ source ~/.zshrc
$ nvm --version
0.34.0

Now Let's install node and yarn

$ nvm install node
$ node --version
v14.0.0
$ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
OK
$ echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
deb https://dl.yarnpkg.com/debian/ stable main
$ sudo apt update && sudo apt install yarn
  1. Installing Flameshot
$ sudo apt-get install flameshot

Then configure, the short for taking screenshots using following:

  1. Installing Tor Browser

a) Download tor from tor b) Foolow the steps link

$ cd /Downloads/Apps//tor-browser-linux64-9.0.9_en-US/tor-browser_en-US
$ sudo mv start-tor-browser.desktop /usr/share/applications
  1. Installing Pomodoro
$ sudo apt-get install gnome-shell-pomodoro