shaked_coffee

joined 11 months ago
[–] [email protected] 3 points 3 weeks ago (1 children)

Up! Depending on what you are looking for also VanillaOS could be an interesting option

[–] [email protected] 2 points 2 months ago* (last edited 2 months ago) (1 children)

I was on Wayland, but unfortunately switching to X11 didn't fix the issue

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

Unfortunately yes, but I have the same issue there :((

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

OH I didn't know that ubi games worked that way on Steam, well then I guess this means that AC Odissey (and all other ubi games actually) are broken for everyone playing on linux, steam deck included atm?

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

But wouldn't it still try to update the Ubisoft Connect launcher to its latest version, even if the wine runner is older?

 

Yesterday I was trying to install the Ubisoft version of AC Odissey on my PopOS! machine, and I wasn't able to do so because when I try to launch Ubisoft Connect from Lutris, it asks me to do the login and then shows only a black rectangle.

I tried looking online for a solution but as far as I understood it's a problem of the new Ubisoft Connect UI and I wasn't able to find any fix... can someone help?

It really sucks because it prevents me to play some games that are supposed to run on Linux just because at the time I bought them on Ubisoft Connect instead of Steam :/

 

I've recently bought my first Tuxedo laptop, an InfinityBook Pro 16 - Gen8 and after having some minor issues with Fedora on it (mainly with the Tuxedo Control Center) I moved to PopOS! and since then it worked flawlessly. Or at least, it used to work flawlessly until last week, when the laptop started to reboot at (apparently) random points of its usage. This is REALLY annoying.

Does anyone encountered the same issue? Have you identified its causes? And how have you fixed it?

 

Looks like a new model for the Fairphone has been announced! What do you think about it?

Personally I love the fairphone project but after having tried GrapheneOS on my Pixel 6a it would be hard to move to a different OS

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

I totally agree that screenshots and a proper description of the app in the README are a must-have for all foss apps, but as a developer I know that most of the times you prefer use your time to add new features to your app rather then documenting existing ones...

Personally I'll try to add them to all my future projects but what I would suggest to everyone who use and love a foss app is to check out its README and, if needed, submit a pull request with an updated version of it with screenshot etc (You don't need to be a developer to do that and it can be really appreciated)

[–] [email protected] 5 points 10 months ago (2 children)

For me the choice was easy: I was already into the fediverse thanks to Mastodon and then (before all the reddit api drama) some lovely people I had already heard about decided to spin up a general purpose Italian Lemmy instance, and so far I couldn't be happier for my experience here.

Maybe I was just lucky but what I would suggest is try to see if there is a small/medium sized instance of your university/city/country as I think they are the ones that works our best (not just for Lemmy but for the fediverse in general)

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

Thank you! I'll check it out and see if I can turn it into a permanent fix

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

I've tried to look at kernel logs opening journalctl -f or sudo dmsg -H -W before suspending the system but I'm not an expert and I didn't found anything weird to me. It just seems that immediately after the sleep state was reached I asked the system to wake up

 

UPDATE:

After some more testing, trying to disable one by one the entries on proc/acpi/wakeup and comparing them with the output of lspci, I think I found out that the problem is related with the PCIE components that idk why send a wake-up signal to the system every time it enters sleep mode. As a temporary fix, I created a service that runs a script to disable those four lines every time I start / reboot the system, waiting for a proper fix in a future kernel update. Here are the two files I created:

/etc/systemd/system/disable-PCIE-wakeup.service:

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/local/bin/disable-PCIE-wakeup.sh

[Install]
WantedBy=multi-user.target

/usr/local/bin/disable-PCIE-wakeup.sh:

#!/bin/sh
for i in $(cat /proc/acpi/wakeup | grep RP | grep enabled | grep S4 | awk '{print $1}'); 
  do 
    echo $i > /proc/acpi/wakeup; 
  done

(and after creating those files, I enabled the new service with sudo systemctl enable disable-PCIE-wakeup.service)


ORIGINAL POST:

Some time ago I posted on Fedora Discussion because my Fedora system (MSI Summit e16 flip running Fedora 38) started having problems with sleep mode after a kernel update (actually, starting from kernel 6.3.x and with all later versions).

Unfortunately I didn't receive that many replies there, so I tried to troubleshoot by myself and I found out that what's causing this problem is probably an internal device of the laptop that is supposed to be used to wake up the laptop from sleep (like the touchpad or the fingerprint reader? idk) and that instead is misfunctioning and waking it up immediately after it reached the sleep state. I'm saying so because I tried to temporarily disable all the lines in /proc/acpi/wakeup using this simple script below that I found somewhere online and, after doing that until the next time I reboot, the laptop stays asleep as expected.

So now my question is: how do I isolate which device is causing the problem? And how can I permanently fix this issue? I suspect that the problematic device could be the fingerprint reader since it was unsupported up until Fedora 38 and doesn't still work properly since it keeps forgetting the fingerprints I add... is there a way for me to disable it completely and try to see if it fixes the issue?

(I’m not sure about if this is the proper place to ask questions like this, or if I should report this issue somewhere else, since it seems more a kernel issue. Recommendations about better place to ask it are welcomed 🙃)