diff options
author | Bradley Taunt <bt@btxx.org> | 2024-05-30 09:02:38 -0400 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-05-30 09:02:38 -0400 |
commit | 8f28fc58d5fe68775fbe552eb172cbb4ad8614b1 (patch) | |
tree | 65c5ef1ba611db1aa9fe80d65d2fffca950238e9 /wiki/alpine-linux.md | |
parent | fa6aded86998639a53aecfa7b76e0ecd800fd9f0 (diff) |
Further customization and porting of older content
Diffstat (limited to 'wiki/alpine-linux.md')
-rw-r--r-- | wiki/alpine-linux.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/wiki/alpine-linux.md b/wiki/alpine-linux.md new file mode 100644 index 0000000..53d2e4e --- /dev/null +++ b/wiki/alpine-linux.md @@ -0,0 +1,41 @@ +--- +layout: page +title: Alpine Linux +permalink: /wiki/alpine-linux +--- + +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` |