ssh fix
This commit is contained in:
parent
fe799e761c
commit
6247019e12
9
Development/LinuxDrivers/README.md
Normal file
9
Development/LinuxDrivers/README.md
Normal 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>
|
||||
```
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user