diff --git a/os/openSUSE/openSUSE.md b/os/openSUSE/openSUSE.md new file mode 100644 index 0000000..fbef686 --- /dev/null +++ b/os/openSUSE/openSUSE.md @@ -0,0 +1,30 @@ +SSH + +```sh +mkdir .ssh +chmod 700 .ssh/ +echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIBQ4kte/4pMPgX+kKaQkTMb4OX9OCsFyQ1/ej5i27+M mghaoui@gmail.com' > .ssh/authorized_keys +chmod 600 .ssh/authorized_keys +``` + +Change hostname + +```sh +sudo hostnamectl set-hostname moni-opensuse +``` + +Update + +```sh +sudo zypper dup +``` + +Install my favorites + +```sh +sudo zypper install tmux htop ncdu neovim git +``` + +# Docker + +Official instructions: https://en.opensuse.org/Docker \ No newline at end of file