diff options
author | bt <bt@web> | 2024-01-18 13:45:48 -0500 |
---|---|---|
committer | IkiWiki <ikiwiki.info> | 2024-01-18 13:45:48 -0500 |
commit | 45f8574dca5fa9ae7ff46bd379639d2490286065 (patch) | |
tree | 5284ec9d6ce899265bd58296db75109ab6fd8bf9 /wiki/alpine-linux.mdwn | |
parent | f7104b1a12a3769119d2ba42ba8432d8684a729c (diff) |
Diffstat (limited to 'wiki/alpine-linux.mdwn')
-rw-r--r-- | wiki/alpine-linux.mdwn | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/wiki/alpine-linux.mdwn b/wiki/alpine-linux.mdwn new file mode 100644 index 0000000..cfdcfef --- /dev/null +++ b/wiki/alpine-linux.mdwn @@ -0,0 +1,35 @@ +This page contains a helpful collection of configuration and application setups for Alpine Linux. + +## Run Mullvad on Alpine Linux (Wireguard) + + + # Install wireguard + apk add wireguard-tools + + +Login into Mullvad and download the proper wireguard configuration files(s). After downloaded, place in the proper directory: + + + doas cp <MULLVAD_FILENAME>.conf /etc/wireguard/" + + +Then setup an aliases for easier up/down states: + + + alias vpnup="doas wg-quick up /etc/wireguard/<MULLVAD_FILENAME>.conf" + alias vpndown="doas wg-quick down /etc/wireguard/<MULLVAD_FILENAME>.conf" + +## Alpine Linux `mini_racer` Tweaks + +Gem lockfile: + + + PLATFORMS + ruby + x86_64-linux-musl + + mini_racer (0.6.3) + <remove child dependency> + + +then run: `bundle update mini_racer` |