Good to know! I didn’t see a link in your about page.
- 0 Posts
- 7 Comments
Hi, nice project. Why would I use your project over similar (open-source) projects like sharry and lufi?
I personally would prefer to use those alternatives because their source is available and can be reviewed, I didn’t see any reference to your source code - which is fine, but a no-go for me personally.
redxef@feddit.orgto Linux@lemmy.ml•[SOLVED] System freezes at boot and I'm not sure if it's a software or hardware problemEnglish6·3 months agoI think I remember some weird power bugs in the 2700x, though I never encountered them myself. The best thing I could find was this reddit thread https://www.reddit.com/r/Amd/comments/apw8im/ryzen_freezes_in_linux_even_if_linux_is_in_vm/
redxef@feddit.orgto Linux@lemmy.ml•[SOLVED] System freezes at boot and I'm not sure if it's a software or hardware problemEnglish5·3 months agoDo you still have the live iso you used to install arch? Does it work? Do other distros work (just the live systems are enough)?
Edit:
Some more things: Did you try disconnecting the pc from mains, pressing the power button (to discharge all capacitors) and reconnecting. Reseat the button cell for the bios?
There are good April’s fools jokes and there is this. Some things you just don’t joke about.
Docker container can’t read a bind mount. Permission issue? No, it’s SELinux, again. And I didn’t even install it explicitly, it just got pulled in by another package.
And to be clear, the issue isn’t SELinux really, but
unexpectednon standard behaviour which I never asked for (never explicitly installed it).
def is_even(n: int) -> bool: if n < 0: return is_even(-n) r = True for _ in range(n): r = not r return r