Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)HU
Posts
6
Comments
438
Joined
2 yr. ago
Eternity @lemdro.id
HulkSmashBurgers @reddthat.com

Is there a way to export data?

Is there a way to export data from the app (saved posts, etc.)? Thanks.

Guix @lemmy.ml
HulkSmashBurgers @reddthat.com

PantherX - A modern operating system based on GNU Guix

Guix @lemmy.ml
HulkSmashBurgers @reddthat.com

How to connect to protonvpn via openvpn

Protonvpn has some instructions to connect via openvpn:

https://protonvpn.com/support/linux-openvpn/

Where I'm stuck is step 3, where the guide has you download a dns update script into /etc/openvpn.

Openvpn doesn't reside in /etc so I'm not sure how to handle that. Any advice? Thanks.

General Discussion @lemmy.world
HulkSmashBurgers @reddthat.com

Florida man games lmfao

Privacy @lemmy.ml
HulkSmashBurgers @reddthat.com

Nymvpn

If this ever gets to the point where I can use this by paying cash for access (and not having to deal with cryptocurrency) I would totally give it a try.

Guix @lemmy.ml
HulkSmashBurgers @reddthat.com

How to luks encrypt raid drive?

Edit: Turns out for what I'm trying to do (mount luks encrypted raid after start up) only needs the device mapping for the raid drive and not a file-system object.

So I luks encrypted the raid and call a script to open the vault and mount it when I need to.


In my system config file I added a raid drive like so:

 undefined
    
(mapped-devices (list (mapped-device
                                     (source (uuid
                                                  "205e5caa-694f-4457-a2a1-8affa3536e75"))
                                     (target "guix")
                                     (type luks-device-mapping))

                                  (mapped-device
                                     (source (list "/dev/sdb1" "/dev/sdc1"))
                                     (target "/dev/md0")
                                     (type raid-device-mapping))))

(file-systems (cons* (file-system
                                  (mount-point "/")
                                  (d