docs: remove unused

main
Tran Hau 2021-04-22 03:35:07 +00:00
parent 834ca49797
commit f275ac9b32
11 changed files with 0 additions and 148 deletions

View File

@ -1,6 +0,0 @@
# [Blueman](https://github.com/blueman-project/blueman)
| Distribution | Package |
| ------------ | --------- |
| Arch Linux | `blueman` |
| Ubuntu | `blueman` |

View File

@ -1,7 +0,0 @@
# [NetworkManager](https://wiki.archlinux.org/index.php/NetworkManager)
| Distribution | Package |
| ------------ | ---------------- |
| Arch Linux | `networkmanager` |
Service: `NetworkManager.service`

View File

@ -1,23 +0,0 @@
# [dnscrypt-proxy](https://github.com/DNSCrypt/dnscrypt-proxy)
| Distribution | Package |
| ------------ | ---------------- |
| Arch Linux | `dnscrypt-proxy` |
| Ubuntu | `dnscrypt-proxy` |
Service: `dnscrypt-proxy.service`
Edit `/etc/dnscrypt-proxy/dnscrypt-proxy.toml`:
```toml
listen_addresses = ['127.0.0.1:53', '[::1]:53']
server_names = ['google', 'google-ipv6', 'cloudflare', 'cloudflare-ipv6']
```
In NetworkManager GUI, turn off automatic DNS and edit:
```txt
IPv4 127.0.0.1
IPv6 ::1
```

View File

@ -1,8 +0,0 @@
# [earlyoom](https://github.com/rfjakob/earlyoom)
| Distribution | Package |
| ------------ | ---------- |
| Arch Linux | `earlyoom` |
| Ubuntu | `earlyoom` |
Service: `earlyoom.service`

View File

@ -1,3 +0,0 @@
# fstrim
Service: `fstrim.timer`

View File

@ -1,28 +0,0 @@
# [iwd](https://git.kernel.org/pub/scm/network/wireless/iwd.git/)
| Distribution | Package |
| ------------ | ------- |
| Arch Linux | `iwd` |
| Ubuntu | `iwd` |
Service: `iwd.service`
After run `iwctl`:
```sh
device list
# Change device to real device
station {device} scan
station {device} get-networks
# Change SSID to real SSID
station {device} connect {SSID}
```
To use NetworkManager, edit `/etc/NetworkManager/conf.d/wifi_backend.conf`
```txt
[device]
wifi.backend=iwd
```

View File

@ -1,8 +0,0 @@
# [systemd-coredump](https://wiki.archlinux.org/index.php/Core_dump#Using_systemd)
Create directory if not exist `/etc/systemd/coredump.conf.d` and edit `/etc/systemd/coredump.conf.d/custom.conf`:
```txt
[Coredump]
Storage=none
```

View File

@ -1,10 +0,0 @@
# [systemd-journald](https://wiki.archlinux.org/index.php/Systemd/Journal)
Service: `systemd-journald.service`
Create directory if not exist `/etc/systemd/journald.conf.d` and edit `/etc/systemd/journald.conf.d/00-journal-size.conf`:
```txt
[Journal]
SystemMaxUse=50M
```

View File

@ -1,33 +0,0 @@
# [systemd-networkd](https://wiki.archlinux.org/index.php/systemd-networkd)
Service: `systemd-networkd.service`
Need [systemd-resolved](Applications/System/systemd-resolved.md).
Wired adapter, edit `/etc/systemd/network/20-wired.network`:
```txt
[Match]
Name=en*
[Network]
DHCP=yes
[DHCP]
RouteMetric=10
```
Wireless adapter, edit `/etc/systemd/network/25-wireless.network`:
```txt
[Match]
Name=wl*
[Network]
DHCP=yes
[DHCP]
RouteMetric=20
```
For wireless adapter, need [iwd](Applications/System/iwd.md).

View File

@ -1,3 +0,0 @@
# [systemd-resolved](https://wiki.archlinux.org/index.php/Systemd-resolved)
Service: `systemd-resolved.service`

View File

@ -1,19 +0,0 @@
# [systemd-swap](https://github.com/Nefelim4ag/systemd-swap)
| Distribution | Package |
| ------------ | -------------- |
| Arch Linux | `systemd-swap` |
Service: `systemd-swap.service`
Create directory if not exist `/etc/systemd/swap.conf.d` and edit `/etc/systemd/swap.conf.d/overrides.conf`:
```txt
swapfc_enabled=1
```
Edit `/etc/sysctl.d/99-swappiness.conf`:
```txt
vm.swappiness=10
```