summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author諏訪子 <suwako@076.moe>2024-06-21 20:22:51 +0900
committer諏訪子 <suwako@076.moe>2024-06-21 20:22:51 +0900
commit96c5f9fdf06e7e1d944da3a1800cf9f7f00e8398 (patch)
treeba7ea3aa03dbabb54b11535e372c3061e927954d
parent35d8bf287fc646969f6b67c89cd491a19dbc98da (diff)
OpenBSD以外、全部sudo化
-rw-r--r--README.md28
1 files changed, 17 insertions, 11 deletions
diff --git a/README.md b/README.md
index 8dcaf91..d446def 100644
--- a/README.md
+++ b/README.md
@@ -3,44 +3,50 @@
![](https://this.is.very.dangerous.software/2024-06-20-114921_1920x1080_scrot.png)
## インストールする方法 | Installation
-### OpenBSD | NetBSD | FreeBSD
+### OpenBSD
```sh
make
doas make install
```
+### NetBSD | FreeBSD | Dragonfly BSD
+```sh
+make
+sudo make install
+```
+
### CRUX
```sh
-doas prt-get bmake
+sudo prt-get bmake
bmake
-doas bmake install
+sudo bmake install
```
### Void
```sh
-doas xbps-install bmake
+sudo xbps-install bmake
bmake
-doas bmake install
+sudo bmake install
```
### Artix
```sh
-doas pacman -S base-devel bmake
+sudo pacman -S base-devel bmake
bmake
-doas bmake install
+sudo bmake install
```
### OmniOS
```sh
gcc -Wall -Wextra -O3 -I/usr/include -o farfetch main.c src/*.c src/logo/*.c -L/usr/lib -lc
-doas cp farfetch /usr/bin
-doas cp farfetch.1 /usr/bin/share/man/man1
+sudo cp farfetch /usr/bin
+sudo cp farfetch.1 /usr/bin/share/man/man1
```
### Debian | Devuan | Ubuntu | Linux Mint | PopOS
[Kazuhikoさん](https://social.076.moe/conversation/1127279#notice-2122922)
```sh
-doas apt install -y build-essential bmake git pciutils
+sudo apt install -y build-essential bmake git pciutils
bmake
-doas bmake install
+sudo bmake install
```