This commit is contained in:
2026-07-02 11:42:41 +02:00
parent 199941da62
commit 3faa16d783
2 changed files with 23 additions and 3 deletions
+23 -1
View File
@@ -110,4 +110,26 @@ tar -xzf yourfile.tar.gz
### sync two dirs ### sync two dirs
``` ```
unison /path/to/dir/one /path/to/dir/two unison /path/to/dir/one /path/to/dir/two
``` ```
### useradd
```bash
useradd -m -s /bin/bash username
userdel -r username
```
### ssh disable password
https://askubuntu.com/questions/1516262/why-is-50-cloud-init-conf-created
```sh
#/etc/ssh/sshd_config.d/00-only-pubkey-auth.conf
PasswordAuthentication no
ChallengeResponseAuthentication no
UsePam no
```
### Network speed monitor
```
slurm
```
-2
View File
@@ -59,5 +59,3 @@ Restart=always
WantedBy=default.target WantedBy=default.target
``` ```
## CALENDAR