Ubuntu 25
update & upgrade
sudo apt update && sudo apt upgrade
Node (Using nvm)
wget -q -O- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash. ~/.zshrc
nvm --version
nvm install node
Docker
sudo apt install docker.iosudo apt install docker-composesudo usermod -aG docker $USERnewgrp docker
ZSH & oh-my-zsh
sudo apt updatesudo apt install zsh curl git
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlightinggit clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
Configure ~/.zshrc
to:
...plugins=( git zsh-autosuggestions zsh-syntax-highlighting)...
Then
source ~/.zshrc
reboot