AnonStoleMyPants

joined 1 year ago
[–] 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 12 points 1 month ago

You don't say.

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

Nah I've been listening to it in my native tongue!

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

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 11 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 1 points 2 months ago

Yeah and we kinda need to start doing it soon. Because it might become a thing we have to do, and I'd rather we know how to do it and not just wing it.

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

Just borrowed a copy from the library! Was going to start it today.

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

Same as with anything that needs a collection of people to make a change. You just do it so that more people start to do it and at some point that number of people is large enough that it makes a dent. Or more likely, large enough that companies realise potential for profit and invest more into it, making a positive feedback loop.

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

I think you mean most of the world.

[–] 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 64 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 1 points 3 months ago

If you want a bit better graphics I'd recommend you check out Tales of Maj'Eyal (ToME for short). It is on steam but the game is open-source and can be downloaded for free on its website.

 

Pretty much the title. I could not find an option to do it, nor did I find comments or commits about it.

 

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.

 

I got an answer to a post I made and the person who made it deleted the post. Now there I a permanent "1" on the messages button as if I still have a reply that I have not ticked as "seen". But I can't do it because the button does not exist, assuming this is due to the post being deleted.

Anything I can do to fix this? It is kinda annoying.

 

Is there a way to filter or block communities? Can't browse by new at all because kbin's "random" is filled with spam bots and I'd rather not block entire kbin due to it.

view more: next ›