sudo apt update
sudo apt upgrade
sudo apt install curl vim git
-
Download :
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -
Install :
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt update
or
sudo apt-get update
Go to the link: https://github.com/nodesource/distributions/blob/master/README.md
- To compile and install native addons from npm you may also need to install build tools - sudo apt-get install -y build-essential
Go to the link : https://classic.yarnpkg.com/lang/en/docs/install/#debian-stable
Or
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
curl https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/dn.yarnpkg.com.gpg >/dev/null
update and install
sudo apt update && sudo apt install yarn
Go to the link: https://docs.docker.com/engine/install/ubuntu/
-
Uninstall old version of docker (if exists)
sudo apt-get remove docker docker-engine docker.io containerd runc
-
Update
sudo apt-get update sudo apt-get install \ ca-certificates \ curl \ gnupg \ lsb-release -
Add Docker's official GPG key
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg -
Use the following command to set up the stable repository
echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null -
Update & install
sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin -
Do the following
sudo usermod -aG docker $USER newgrp docker docker version sudo systemctl status docker
-
Install using the repository
sudo apt-get update sudo apt-get install docker-compose-plugin
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
sudo apt install zsh
-
Download zsh-autosuggestions by
sudo git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions -
Download zsh-syntax-highlighting by
sudo git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting -
Open .zshrc file. find
plugins=(git)sudo vim ~/.zshrc -
Append
zsh-autosuggestions & zsh-syntax-highlightingtoplugins()like thisplugins=(... git zsh-autosuggestions zsh-syntax-highlighting) -
Reopen terminal
-
Update apt
sudo apt update && sudo apt upgrade -
Install few dependencies required by this tutorial with the below-mentioned command
sudo apt install software-properties-common ca-certificates lsb-release apt-transport-https -
Add the Ondrej PPA to your system, which contains all versions of PHP packages for the Ubuntu systems.
sudo LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php -
Update apt again
sudo apt update -
Insall php now. This command will install latest stable php version
sudo apt install php -
Install php extenstion
sudo apt install php-[extension] // ex: sudo apt install php-mbstring php-xml php-bcmath -
Check Active PHP Version
php -v -
Check php extension list (installed)
php -m