JATtho

joined 1 year ago
[–] [email protected] 3 points 4 months ago

A lot. That's the answer.

[–] [email protected] 7 points 6 months ago (1 children)

I think the difference with Dolphin is that it now emulates an extinct system(s), so it cannot possibly compete with the actual thing. They did have a close call last year, if I remember, and they pretty quickly went into "jettison all illegal shit out of the code base NOW." -mode.

 

Have a good day.

1
Stubb. (sopuli.xyz)
 

Haavisto.

[–] [email protected] 3 points 7 months ago

I had a similar debacle, when I managed to corrupt a btrfs file system to point it wouldn't mount again...

I was preparing it to have as my main system on bare hardware. I had accidentally mounted the same block device simultaneously in the host and guest: kablamo silent corruption and all 5 hours of progress lost.^*^ :(

*shred the guest VM, host was ok.

[–] [email protected] 3 points 7 months ago

On arch, UEFI boot vars are mounted at /sys/firmware/efi/efivars. It's unwise to rm -rf them....

[–] [email protected] 1 points 8 months ago

GameBoy Color with a single game: Pokémon Red.

Next time I was able go to the shop they had upgraded to GameBoy Advance and no GB/GBC games were to be never found again. It was the best/worst thing I ever got. :'(

[–] [email protected] 2 points 8 months ago

Please, never run plain "sudo make install" on a package managed system. With linux from scratch it might make sense... Doing so will "install" the thing (copy the files), but the copied files are foreign to the package manager. You cannot easily undo this, and can cause issues in future.

You had a compiler error about missing header file, libXft is from Xorg project. "devel" versions of packages usually provide these files.

st is from suckless project so it doesn't need much to be "installed": copy the built binaries into ~/bin/ or /opt/ and set your user PATH to look into those dirs. Check your user env if you need to modify the PATH.