HulkSmashBurgers

joined 2 years ago

Looks like she gets a lot of free bus tickets.

I wonder which is saltier, oil companies or the batteries.

Nah she'll always be willies to me because that's what she gives me.

The Child Rapist League.

She'll go on tour with the side talkers daughter when she runs for prez.

He did nazi her coming.

If I fits I sits right lol?

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

Yes it's decentralized and very hard to stop to parties from making a crypto transaction. But what about cases where you need to convert your crypto to say euros because the person/business you need to pay doesn't accept crypto? Don't you need an exchange for that?

How easy/ widely accepted is it to pay for things using crypto (gas, rent, mortgage etc.)?

The point I was trying to make is that if paying for stuff in crypto isn't ubiquitous, it's far less practical as a form of currency.

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

Or what happens when governments ban crypo exchanges?

I think the real answer is for us (the electorate) to start electing officials who aren't puritanical twats. Way way harder to do tough.

What an asshole.

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

Saw this last night in IMAX. Thoroughly enjoyed it. Good acting all around I thought. I really liked Mister Teriffic and his t-balls.

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

They're morons.

 

Just finished watching this. I liked it!

 

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 2 years ago* (last edited 2 years 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 ›