diff --git a/alma-linux.md b/alma-linux.md index bfb8dae..b840ee9 100644 --- a/alma-linux.md +++ b/alma-linux.md @@ -3,6 +3,14 @@ AlmaLinux is a continuation of open source work for enterprise grade Red Hat Enterprise Linux (RHEL). Its a spiritual successor to CentOS and bug-for-bug compatible with RHEL same as Rocky Linux but without the toxic community. +## Enabling SELinux + +If its disabled on boot, enable it back with + +```sh +sudo grubby --update-kernel ALL --remove-args selinux +``` + ### What about Debian / Ubuntu ? Tbh, at the time of setting up new servers the `Debian` install was not working on my host, thats why i picked `AlmaLinux` for all installations to keep them uniform. diff --git a/applications.md b/applications.md index 446b73f..fa2d756 100644 --- a/applications.md +++ b/applications.md @@ -1,5 +1,14 @@ # Installing applications and their dependencies +## Create your SSH keys for Github + +Generate ssh-key for private Git porjects +then copy it to Github project under Settings -> Deploy keys +```sh +ssh-keygen -t ed25519 +cat /home/admin/.ssh/id_ed25519.pub # (or whatever u named it, if u only need it for 1 project, keep it default) +``` + ## Put your apps in `/usr/local/bin/` Do not just install stuff in `/home/` dirs.