Updated BSD (markdown)

Lauri Ojansivu 2023-02-09 07:39:19 +02:00
parent 09848f21ca
commit a2834d4494

42
BSD.md

@ -44,6 +44,21 @@ reboot.sh
sudo shutdown --reboot now
```
## FreeDOS
update.bat
```
fdnpkg update
```
reboot.bat
```
reboot
```
shutdown.bat
```
shutdown
```
## NetBSD
Before these, change to root:
@ -70,3 +85,30 @@ reboot.sh
```
shutdown -r now
```
## OpenBSD
Before these, change to root:
```
su
```
update.sh
```
pkg_add -u
```
install.sh
```
pkg_add $1
```
uninstall.sh
```
pkg_delete $1
```
shutdown.sh
```
halt -p
```
reboot.sh
```
reboot
```