HulkSmashBurgers

joined 2 years ago

I also like to use bowls with more vertical sides as it helps prevent stuff escaping the bowl.

Sorry to hear you lost your job. Hoping the best for you, internet stranger!

I agree that tying healthcare to one's job is totally fucked up. Everyone should get healthcare, period. A less than 40 hour work week, and a ubi would be nice too.

Now that's a picture.

Months will go by between hanging out with friends. Texting is a rare occurance too.

Hanging out at home with my wife is more enjoyable to me.

Yeah well congress is currently controlled by ass clowns so here we are.

Just a death cult doing death cult things.

[–] HulkSmashBurgers@reddthat.com 71 points 1 week ago (13 children)

I wonder how many more unfavorable rullings the court has to make before trump starts demanding they be arrested.

[–] HulkSmashBurgers@reddthat.com 79 points 1 week ago (9 children)

Conan is way more funny than Leno and Fallon.

[–] HulkSmashBurgers@reddthat.com 1 points 2 weeks ago (1 children)

I'm thinking The Wild Robot!

[–] HulkSmashBurgers@reddthat.com 7 points 2 weeks ago* (last edited 2 weeks ago)

Trump's actions didn't directly cause this guys death but I'm betting when some people do die as a direct result of his actions they'll have the same sentiment. It's cult mentality really.

"Thank you mr president for killing me!"

So fucking Bizarre.

 

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

 

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.

 

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.

0
submitted 1 year ago* (last edited 1 year ago) by HulkSmashBurgers@reddthat.com to c/guix@lemmy.ml
 

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:

(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 "/")
                                  (device "/dev/mapper/guix")
                                  (type "ext4")
                                  (dependencies (list (list-ref mapped-devices 0))))

                               (file-system
                                  (mount-point "/mnt/nas")
                                  (device "/dev/md0")
                                  (type "ext4")
                                  (mount? #f)
                                  (dependencies (list (list-ref mapped-devices 1)))) %base-file-systems)))

I'd now like to luks encrypt the raid drive but I'm not sure how to go about doing it. Do I simply make a another mapped-device object, specifying the raid drive uuid and "/dev/md0" as the target:

(mapped-device
   (source (uuid
                {raid uuid}))
                (target "/dev/md0")
                (type luks-device-mapping))

and then pass that as a dependency to the raid file system object?

Thanks

view more: next ›