Initialisation Serveur Ubuntu
Commandes rapides pour initialiser un serveur Linux sous Ubuntu avec l'essentiel
Paquets de base
apt update && apt upgrade -y
apt install git zsh curl htop python3-pip vim wget -y
Shell
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
Remplacer le thème par défaut de OhMyZsh par :
ZSH_THEME="powerlevel10k/powerlevel10k"
Puis recharger le shell :
source ~/.zshrc
Installation de Docker
Suivre cette documentation
No Comments