Last active
June 1, 2024 16:30
-
-
Save sadfuzzy/e06a9818dd942ec8fb2e to your computer and use it in GitHub Desktop.
Ubuntu setup
This file contains hidden or 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
System: | |
sudo apt-get install software-properties-common ncdu | |
Git: | |
sudo apt-get install git git-core | |
git config --global user.email "[email protected]" | |
git config --global user.name "Denis Savitskiy" | |
git config --global push.default simple | |
https://github.com/settings/ssh | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/id_rsa | |
Add keys: | |
https://bitbucket.org/account/user/sadfuzzy/ssh-keys/ | |
https://dashboard.heroku.com/account | |
https://github.com/settings/ssh | |
Zsh: | |
sudo apt-get install zsh | |
http://ohmyz.sh/ | |
Rbenv: | |
sudo apt-get install curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev libffi-dev | |
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc | |
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build | |
https://github.com/sstephenson/rbenv | |
https://github.com/sstephenson/ruby-build | |
Ruby: | |
jruby: https://www.digitalocean.com/community/tutorials/java-ubuntu-apt-get-ru | |
Rails: | |
nodejs: https://www.digitalocean.com/community/tutorials/node-js-ubuntu-14-04-ru | |
bower: ln -s /usr/bin/nodejs /usr/bin/node | |
PostgreSQL: | |
sudo apt-get install libpq-dev | |
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-ubuntu-14-04 | |
gem install pg | |
Htop: | |
sudo apt-get install htop | |
Apache Derby: | |
http://tutorialforlinux.com/2014/12/18/how-to-install-apache-derby-on-ubuntu-14-04-trusty-lts-linux-easy-guide/ | |
Telegram: | |
https://desktop.telegram.org/ | |
Popcorn Time: | |
http://www.webupd8.org/2014/05/install-popcorn-time-in-ubuntu-or.html | |
Vlc: | |
https://www.videolan.org/vlc/ | |
Heroku Toolbelt: | |
wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh | |
https://toolbelt.heroku.com/debian | |
Dropbox: | |
https://www.dropbox.com/install?os=lnx | |
Yandex.Disk: | |
echo "deb http://repo.yandex.ru/yandex-disk/deb/ stable main" | sudo tee -a /etc/apt/sources.list.d/yandex.list > /dev/null && wget http://repo.yandex.ru/yandex-disk/YANDEX-DISK-KEY.GPG -O- | sudo apt-key add - && sudo apt-get update && sudo apt-get install -y yandex-disk | |
yandex-disk setup | |
GUI: | |
sudo add-apt-repository ppa:slytomcat/ppa | |
sudo apt-get update | |
sudo apt-get install yd-tools | |
http://repo.yandex.ru/yandex-disk/ | |
Skype: | |
http://www.skype.com/ru/download-skype/skype-for-linux/ | |
Indicators: | |
sudo add-apt-repository ppa:caffeine-developers/caffeine-dev | |
sudo add-apt-repository ppa:indicator-multiload/stable-daily | |
sudo apt-get install caffeine indicator-multiload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment