Last active
November 27, 2018 15:41
-
-
Save Lucky-Loek/17e476187037400ab078a207aff40674 to your computer and use it in GitHub Desktop.
Things to do when installing Ubuntu Linux for the 2^nth time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# Update | |
sudo apt update | |
# Upgrade | |
sudo apt upgrade -y | |
# Install fonts and Z-shell | |
sudo apt install xfonts-terminus zsh -y | |
# Change shell to Zsh | |
chsh -s $(which zsh) | |
# Reboot since kernel updates and shell change | |
sudo reboot now |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# Updating never hurts | |
sudo apt update | |
# Remove unnecessary kernels | |
sudo apt autoremove -y | |
# Get oh-my-zsh | |
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" | |
# Possibly add auto-config of oh-my-zsh based on my other gist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment