This commit is contained in:
foglar 2024-10-19 12:32:27 +02:00
parent fe799e761c
commit 6247019e12
2 changed files with 11 additions and 2 deletions

View File

@ -0,0 +1,9 @@
# Linux drivers
- kernel: hardware-abstracting layer
- uniform interface (API, system calls)
```c
#include <linux/module.h>
#include <linux/init.h>
```

View File

@ -3,7 +3,7 @@
## Installation and setup
- Install OpenSSH package (`sudo pacman -S openssh`) on client and server
- On server, start ssh service with `sudo service enable sshd.service` and `sudo service start sshd.service`
- On server, start ssh service with `sudo systemctl enable sshd.service` and `sudo systemctl start sshd.service`
- Configuration file for ssh server is at `/etc/ssh/sshd_config`
- Configuration file for ssh client is at `/etc/ssh/ssh_config`
- More info at [archwiki](https://wiki.archlinux.org/title/OpenSSH)
@ -60,4 +60,4 @@ Include /etc/ssh/sshd_config.d/*.conf
## SSH port forwarding
- Complete this someday
- Complete this someday