Created
March 17, 2019 16:21
-
-
Save capi1O/b3c7d0b894ad483837c0f7507352f5c2 to your computer and use it in GitHub Desktop.
bash and ssh setup fro ubuntu
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
# install FR locale fr_FR.UTF-8 | |
sudo locale-gen fr_FR.UTF-8 | |
sudo dpkg-reconfigure locales | |
# zsh | |
sudo apt install -y zsh git-core | |
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh | |
chsh -s `which zsh` | |
sudo shutdown -r 0 | |
sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="agnoster"/' .zshrc | |
sudo apt install -y fonts-powerline | |
# direnv | |
sudo apt install -y direnv | |
# sshrc | |
mkdir ~/.sshrc.d | |
# zfs | |
sudo apt install -y zfsutils-linux zfs-initramfs | |
# ssh-key | |
## ssh key | |
# from client copy your ssh-key with ssh-copy-id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment