Merge branch 'master' of git.starbeamrainbowlabs.com:sbrl/Linux-101
All checks were successful
continuous-integration/laminar-elessar Build 53 succeeded in 53 seconds .

This commit is contained in:
Starbeamrainbowlabs 2019-08-15 17:43:06 +01:00
commit 464670c0d9
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -17,10 +17,27 @@
- Thread-based vs event-based servers - Thread-based vs event-based servers
## Basic Security ## Basic Security
- Creating a non-root account ```root``` is the administrative account of Linux systems. Owing to the extremely broad permissions granted to root accounts, one of the core tenants of Linux security is ensuring each user has their own account.
- `adduser` "yourusername"
- `sudo` permissions This is because root can be used, even accidentally to damage or destory the system because of its extensive permissons. Having seperate accounts, such as "yourusername" also increases accountability and decreases the likelihood of system damage.
-
- Creating a non-root account:
```adduser "yourusername" ```
We should create the new user as root.
Execute the command as above, replacing ```"yourusername"``` with a desired username.
During the setup, you may be asked for a password along with other information. You may customise this information as you wish.
```usermod -aG sudo yourusername```
Now that the user has been created, we should ensure that that user can execute commands with escalated permissions. These are called ```sudo``` permissons.
Execute the command as above, replacing ```"yourusername"``` with the user created in the previous step.
- The Linux security model: Knowing why you're typing your password - The Linux security model: Knowing why you're typing your password
- SSH - SSH
- Disable root login - Disable root login