UbuntuSetup: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(added unattended oracle jdk 8, youtube-dl install, bash envs) |
||
Line 1: | Line 1: | ||
=Install Main Apps= | =Install Main Apps= | ||
<syntaxhighlight lang=bash> | <syntaxhighlight lang=bash> | ||
git config --global user.name "Drew Holt" | |||
git config --global user.email "[email protected]" | |||
sudo sh -c 'echo "drew ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers' | sudo sh -c 'echo "drew ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers' | ||
cd $HOME; rmdir Documents/ Music/ Public/ Templates/ Videos/; rm examples.desktop | |||
sudo dpkg-reconfigure popularity-contest # disable | sudo dpkg-reconfigure popularity-contest # disable | ||
sudo apt-get update | sudo apt-get update | ||
sudo apt-get upgrade -y | sudo apt-get upgrade -y | ||
sudo apt-get dist-upgrade | sudo apt-get -y dist-upgrade | ||
sudo apt-get install -y etckeeper | sudo apt-get install -y etckeeper | ||
Line 12: | Line 18: | ||
cd /etc | cd /etc | ||
sudo etckeeper init | sudo etckeeper init | ||
cd $HOME | |||
DEBIAN_FRONTEND=noninteractive `#no prompting` \ | |||
sudo apt-get install -y \ | sudo apt-get install -y \ | ||
keepass2 gnome-tweak-tool chrome-gnome-shell `#tools` \ | keepass2 gnome-tweak-tool chrome-gnome-shell `#tools` \ | ||
Line 25: | Line 32: | ||
virtualenv python2.7-examples python-pip `#python` \ | virtualenv python2.7-examples python-pip `#python` \ | ||
build-essential `#build-tools` \ | build-essential `#build-tools` \ | ||
sqlitebrowser `#dev-tools` \ | sqlitebrowser yamllint highlight gawk `#dev-tools` \ | ||
lynis pandoc `#misc` \ | |||
xchat pidgin `#chatapps` \ | xchat pidgin `#chatapps` \ | ||
ansible `#automation` | ansible `#automation` | ||
# Set good vim | |||
sudo update-alternatives --set editor /usr/bin/vim.basic | |||
sudo update-alternatives -- | # Install Oracle Java 8 | ||
sudo add-apt-repository ppa:webupd8team/java | |||
sudo apt-get update | |||
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections | |||
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections | |||
sudo apt-get install -y oracle-java8-installer | |||
#sudo apt-get install -y oracle-java9-installer | |||
#sudo update-alternatives --config java | |||
#per user JAVA_HOME="/usr/lib/jvm/java-8-oracle" | |||
pip install youtube-dl | |||
cat <<EOF >> $HOME/.bashrc | |||
export PATH="$HOME/.local/bin:$PATH" | |||
alias xclip='xclip -selection clipboard' | |||
alias rdesktop='rdesktop -g 1280x720 -r clipboard:CLIPBOARD -r disk:share=/home/drew' | |||
alias get_ip='_get_ip() { VBoxManage guestproperty get "$1" "/VirtualBox/GuestInfo/Net/1/V4/IP";}; _get_ip' | |||
EOF | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 46: | Line 71: | ||
= Next = | = Next = | ||
* VirtualBox [https://www.virtualbox.org/] | * VirtualBox [https://www.virtualbox.org/] | ||
* Vagrant [https://www.vagrantup.com/] | * Vagrant [https://www.vagrantup.com/] | ||
Line 63: | Line 87: | ||
* rvm [https://github.com/rvm/ubuntu_rvm Ubuntu RVM Instructions] | * rvm [https://github.com/rvm/ubuntu_rvm Ubuntu RVM Instructions] | ||
* Studio 3T (mongodb browswer) (https://studio3t.com/download/) | * Studio 3T (mongodb browswer) (https://studio3t.com/download/) | ||
* IntelliJ [https://www.jetbrains.com/idea/download/] | * IntelliJ [https://www.jetbrains.com/idea/download/] | ||
* Android Studio [https://developer.android.com/studio/index.html] | * Android Studio [https://developer.android.com/studio/index.html] |
Revision as of 23:50, 28 March 2018
Install Main Apps
git config --global user.name "Drew Holt"
git config --global user.email "[email protected]"
sudo sh -c 'echo "drew ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers'
cd $HOME; rmdir Documents/ Music/ Public/ Templates/ Videos/; rm examples.desktop
sudo dpkg-reconfigure popularity-contest # disable
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get -y dist-upgrade
sudo apt-get install -y etckeeper
cd /etc
sudo etckeeper init
cd $HOME
DEBIAN_FRONTEND=noninteractive `#no prompting` \
sudo apt-get install -y \
keepass2 gnome-tweak-tool chrome-gnome-shell `#tools` \
vim vim-scripts vim-runtime vim-doc curl xd \
lm-sensors p7zip-full exfat-utils exfat-fuse encfs libimage-exiftool-perl `#systools` \
ubuntu-restricted-extras gimp audacity vlc vlc-plugin-fluidsynth ffmpeg atomicparsley `#media` \
openjdk-8-jdk icedtea-8-plugin `#java` \
openssh-server fail2ban `#daemon` \
openvpn network-manager-openconnect-gnome network-manager-openvpn-gnome `#network-client` \
rdesktop freerdp2-x11 xtightvncviewer sshpass qbittorrent wireshark nmap nikto chkrootkit wavemon namebench apache2-utils mailutils `#netutils` \
virtualenv python2.7-examples python-pip `#python` \
build-essential `#build-tools` \
sqlitebrowser yamllint highlight gawk `#dev-tools` \
lynis pandoc `#misc` \
xchat pidgin `#chatapps` \
ansible `#automation`
# Set good vim
sudo update-alternatives --set editor /usr/bin/vim.basic
# Install Oracle Java 8
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections
sudo apt-get install -y oracle-java8-installer
#sudo apt-get install -y oracle-java9-installer
#sudo update-alternatives --config java
#per user JAVA_HOME="/usr/lib/jvm/java-8-oracle"
pip install youtube-dl
cat <<EOF >> $HOME/.bashrc
export PATH="$HOME/.local/bin:$PATH"
alias xclip='xclip -selection clipboard'
alias rdesktop='rdesktop -g 1280x720 -r clipboard:CLIPBOARD -r disk:share=/home/drew'
alias get_ip='_get_ip() { VBoxManage guestproperty get "$1" "/VirtualBox/GuestInfo/Net/1/V4/IP";}; _get_ip'
EOF
- Chrome, verify Google Hangouts
- Atom [1]
- atom-beautify
- linter-flake8
- linter-pep8
- autocomplete-python
- django-templates
- script-runner
- teletype
Next
- VirtualBox [2]
- Vagrant [3]
- vagrant plugin install vagrant-berkshelf
- vagrant plugin install berkshelf
- Terraform [4]
- KeyBase [5]
- DropBox [6]
- Docker [7]
- Insynq [8]
- Synergy
- Gitter
- Ramlog or equivalent for SSD
- nvm
- gvm for goland
- rvm Ubuntu RVM Instructions
- Studio 3T (mongodb browswer) (https://studio3t.com/download/)
- IntelliJ [9]
- Android Studio [10]
- Eclipse [11]
- NetBeans [12]
- PyCharm [13]
drew@drew-8570w:~$ snap list
Name Version Rev Developer Notes
core 16-2.29.4.2 3604 canonical core
drive current 22 fireeye -
juju 2.3.1 3106 canonical classic
kubectl 1.9.0 266 canonical classic
Configure misc
Dash to Dock
https://extensions.gnome.org/extension/307/dash-to-dock/
Set gnome-screenshot default save directory
?
Gnome3 Fix alt+tab to move across windows and not just grouped apps
Application Launcher > Settings > Keyboard
- Under Navgiation, Set Switch Windows to alt+tab and replace. Yes to confirm override of "Switch Applications"
Gnome Tweak Tool
TopIcons-plus - for Insync, Slack, Skype icons
Extension update notifier
Freon
Status area horizontal spacing
$ ~/.local/share/gnome-shell/extensions
sudo apt-get install chrome-gnome-shell
* restart GNOME Shell (Alt+F2, r, Enter) and enable the extension through gnome-tweak-tool.
Maybe Snaps
drew@drew-8570w:~$ snap list
picard 1.4.2 2 pachulo -
spotify 1.0.70.399.g5ffabd56-26 5 spotify -
sqlitebrowser-casept 3.9.1 2 casept -
vault v0.9.0 236 snapcrafters -
vscode 1.19.1-1513676564 22 flexiondotorg classic