Linux
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 -ySo 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 terminal
nvm 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