Updated BSD (markdown)

Lauri Ojansivu 2023-02-09 07:17:51 +02:00
parent fb5bab8200
commit 09848f21ca

16
BSD.md

@ -35,6 +35,14 @@ uninstall.sh
sudo apt remove $1
# more dangerous, all configs and data: sudo apt --purge remove $1
```
shutdown.sh
```
sudo shutdown --poweroff now
```
reboot.sh
```
sudo shutdown --reboot now
```
## NetBSD
@ -54,3 +62,11 @@ uninstall.sh
```
pkg_delete $1
```
shutdown.sh
```
shutdown -p now
```
reboot.sh
```
shutdown -r now
```