Linux

Ton Yeung
Ton Yeung
Aug 29, 2017 · 2 min read

Update Ubuntu and clean up:

sudo apt-get update && sudo apt-get dist-upgrade -y && sudo apt-get clean && sudo apt-get autoremove -y

So I forgot my password, just going to reinstall since I’ve forgotten most of what I worked on anyway.

Installing ubuntu gnome 17.04. Too bad Ubuntu with Gnome baked in is still a few months out.

This time I’ve stored my password so I don’t forget. Also using medium as a dev log so I won’t forget what I’ve been working on.

Additional Installations and updates

  • VirtualBox Guest Additions- allows copy paste, requires reboot
  • Run updates- installer is supposed to install them but it looks like it missed some
  • Visual Studio Code- classic snap, no GUI install, do sudo snap install vscode --classic
  • Azure CLI
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ wheezy main" | sudo tee /etc/apt/sources.list.d/azure-cli.listsudo apt-key adv --keyserver packages.microsoft.com --recv-keys 417A0893 sudo apt-get install apt-transport-https sudo apt-get update && sudo apt-get install azure-cliaz --version
  • nvm- run command then restart terminal
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
  • npm- run command then restart terminalnvm install node
  • gulpjs- run commands
npm install gulp-cli -g
npm install gulp -D
  • docker
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install docker-ce
sudo docker run hello-world
  • git
sudo apt-get update
sudo apt-get install git
)
Welcome to a place where words matter. On Medium, smart voices and original ideas take center stage - with no ads in sight. Watch
Follow all the topics you care about, and we’ll deliver the best stories for you to your homepage and inbox. Explore
Get unlimited access to the best stories on Medium — and support writers while you’re at it. Just $5/month. Upgrade