AnonStoleMyPants

joined 1 year ago
[–] AnonStoleMyPants@sopuli.xyz 7 points 1 month ago (1 children)

Nonono.

I like alien movies.

Moar please. Just not sucky ones.

[–] AnonStoleMyPants@sopuli.xyz 1 points 1 month ago

Yeaaah I doubt they give a fuck about this. Just an automated system doing automated things.

[–] AnonStoleMyPants@sopuli.xyz 2 points 1 month ago

My library loan for the Expanse second book expired because I was lazy. Also I had a 5h car trip the other day and decided for the first time to start listening to an audio book! It will take me 20ish hours of listening to finish the first book of Lord of the rings but I am kinda exited about it!

[–] AnonStoleMyPants@sopuli.xyz 2 points 2 months ago

Thanks!

I don't think I've ever eaten something like this. Maybe worth a try!

[–] AnonStoleMyPants@sopuli.xyz 8 points 2 months ago (1 children)

Not just meat industry but to everyone even with a slight cold because doctors feel like they have to "do something" or the patient is unhappy and complains.

[–] AnonStoleMyPants@sopuli.xyz 2 points 2 months ago (2 children)

Yup same here, starting to get massive zucchinis and no idea what to do with them lmao.

Gotta figure something or give them to neighbours.

[–] AnonStoleMyPants@sopuli.xyz 3 points 2 months ago (1 children)

I mean, the rest of the world has been hyping AI since the start, no? Most companies are not run by billionaires.

[–] AnonStoleMyPants@sopuli.xyz 65 points 2 months ago (2 children)

Musk decided to respond to the EC's findings on Friday by claiming: "The European Commission offered X an illegal secret deal: If we quietly censored speech without telling anyone, they would not fine us.

"The other platforms accepted that deal. X did not."

The same Musk who in March said, "Just to be super clear, I am not donating money to either candidate for US President," and reportedly now has donated to a super PAC working to elect Donald Trump to the White House.

Lmao. What a response. Doesn't respond in any way, instead blames eu for some random "illegal secret deal". Sure bud.

Weird how much that response sounds like Trump. Just say random bs to divert the actual question.

[–] AnonStoleMyPants@sopuli.xyz 5 points 2 months ago* (last edited 2 months ago)

Honesty I'm shocked nobody has mentioned Tales of Maj'Eyal or ToME for short. Extremely deep roguelike with story and it is getting expansions ans updates all the time.

Also it is open-source, so can be downloaded for free, but I would recommend you also buy it in steam for instance to support it.

[–] AnonStoleMyPants@sopuli.xyz 1 points 3 months ago

Nice. Good to hear.

[–] AnonStoleMyPants@sopuli.xyz 1 points 3 months ago

Some countries have limits to nfc payments with a card. Finland has 50e but with a phone no limits (unless the bank limits).

[–] AnonStoleMyPants@sopuli.xyz 4 points 3 months ago

First thing I noticed too! Gorgeous graph.

 

So I installed Debian 12 with btrfs and apparently it only uses a single subvolume rootfs. I would like to have my /home in a separate subvolume (and possibly /var too I guess) and with a flat subvolume structure. I started figuring out on how to do it and I feel like I'm not entirely sure yet so I need a sanity check.

Lots of comments online seem to use something like this method:

cd /
mv /home /home_old
btrfs subvolume create home
cp -a --reflink=always  /home_old/* /home/

But this would NOT create a flat subvolume structure, right? And you woul NOT need to modify fstab as the /home would be automatically mounted because it resides under rootfs actually because / is rootfs and not its parent?

If I want to actually have a flat structure, then I would first need to mount the actual parent subvolume (subvolumeid=5), cd into it, then create the home subvolume, copy everything from the current home directory into there, unmount, modify fstab to mount home, and delete the old stuff and reboot I guess.

Soo something like this:

mkdir /mnt/tmp
    Make a folder for mount
mount -o subvolid=5 /dev/sdXX /mnt/tmp/
    Mount the actual parent subvolume
cd /mnt/tmp/
    Here 'ls -a' would output 'rootfs' if I understood correctly
btrfs subvolume create home
    Create new subvolume, now being sibling of 'rootfs'
cp -a --reflink=always  /home/* /mnt/tmp/home/
    Copy old /home
umount /mnt/tmp/
    Don't need it anymore 

Then go to fstab, and do something like

...
UUID=  / btrfs  subvol=rootfs bunch_of_options_and_stuff
...
-> change into
...
UUID=  / btrfs  subvol=rootfs bunch_of_options_and_stuff
UUID=  /home btrfs  subvol=home bunch_of_options_and_stuff
...

Then just rm -rf /home/* (or just move to keep it as backup if something is fucked up) and reboot?

Does this sound about right?

Edit:

Everything went smoothly. Well just don't fuck up fstab like I did. Decided not to make /var into a subvolume because not sure if you can do it the same way, thinking that logs etc are being written all the time so the gap between me copying everything to the subvolume, and eventually booting might make weird things but dunno. Also added compress=zstd into fstab mount options to reduce writes on the ssd.

 

Not entirely sure yet how Lemmy works, but I can't find functionalprint in Kbin through Sopuli. Like this works fine: https://sopuli.xyz/c/RedditMigration@kbin.social but this: https://sopuli.xyz/c/functionalprint@kbin.social does not, even though https://kbin.social/m/functionalprint exists. Anyone know why this is?

view more: next ›