mirror of
https://github.com/wekan/wekan.git
synced 2026-01-30 05:05:17 +01:00
Updated BSD (markdown)
parent
09848f21ca
commit
a2834d4494
1 changed files with 42 additions and 0 deletions
42
BSD.md
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
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue