https://github.com/wellsjo/ubuntu-start-script
Make an ubuntu box usable
https://github.com/wellsjo/ubuntu-start-script
Last synced: about 2 months ago
JSON representation
Make an ubuntu box usable
- Host: GitHub
- URL: https://github.com/wellsjo/ubuntu-start-script
- Owner: wellsjo
- Created: 2015-07-23T19:08:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-31T18:58:37.000Z (over 8 years ago)
- Last Synced: 2025-01-28T11:22:15.137Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 13.7 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ubuntu Boilerplate
This script is intended to set up an Ubuntu box for development with all my preferences and configurations. It instsall things like git, htop, build-essential, my dotfiles, and some commonly used programming languages.### Install
```bash
wget https://raw.githubusercontent.com/wellsjo/ubuntu-boilerplate/master/start && chmod +x start && ./start && rm -f start
```**start.sh**
```bash
#!/bin/bash# udpate and upgrade aptitude
sudo apt-get update -y
sudo apt-get upgrade -y# system essentials
sudo apt-get install postfix -y
sudo apt-get install tree -y
sudo apt-get install default-jre -y
sudo apt-get install exuberant-ctags -y
sudo apt-get install build-essential -y# git, htop
sudo apt-get install git -y
sudo apt-get install git-extras -y
sudo apt-get install htop -y# python / pip
sudo apt-get install python-pip -y
sudo apt-get install python-dev -y
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
sudo pip install --upgrade ohmu# node / npm
wget https://raw.githubusercontent.com/isaacs/nave/master/nave.sh
sudo bash nave.sh usemain $(sudo bash nave.sh stable)
rm -f nave.sh# extensions
sudo npm install forever -g
sudo npm install serve -g
sudo npm insatll js-beautify -g
sudo npm install jscs -g
sudo npm install nixar -g# install dotfiles
git clone [email protected]:wellsjo/dotfiles.git ~/.dotfiles
source ~/.dotfiles/bash/profile
install_dotfiles
```