Skip to content

Instantly share code, notes, and snippets.

@capi1O
Created March 17, 2019 16:21
Show Gist options
  • Save capi1O/b3c7d0b894ad483837c0f7507352f5c2 to your computer and use it in GitHub Desktop.
Save capi1O/b3c7d0b894ad483837c0f7507352f5c2 to your computer and use it in GitHub Desktop.
bash and ssh setup fro ubuntu
# 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