Hi Eko, thanks for sharing the link.
I read through the thread and just proceed with the workaround.
When I initially installed Debian12, my GPU drivers were all from repository. Long story short, since iām having ok-ish GPU which is Nvidia Quadro K2200, I decided to make use of the GPU by installing proprietary Nvidia driver. When I finished installed, that is where the problem comes for the error mentioned above.
Iām new to Linux and not a programmer myself. But what I can understand from your sharing is that the problem is due to GPU Acceleration not working with Manager.io. So, that is the reason why when we load Manager and use browser to open the address http://127.0.0.1:55667/businesses it worked flawlessly.
With the workaround in previous thread, this is what I did. And hopefully it works for other people as well.
STEP 1 - Installation
Installing Manager-linux-x64.AppImage is not required as it is an AppImage.
Just put the file in any directory will do. For me, I put all AppImage file in /home/AppImage directory.
STEP 2 - Create Workaround Script
The script can be put in any directory, but I prefer to put in the shortcut directory which I will share in Step 3.
2.1 Open any text editor
2.2 Copy and paste the following in the editor;
#!/bin/bash
export WEBKIT_DISABLE_DMABUF_RENDERER=1
/home/XXXXXX/AppImage/Manager-linux-x64.AppImage
2.3 Save the file and name it anything of your choice. The file should be auto extension .sh
2.4 Make the file you just created executable
STEP 3 - Create Shortcut to Manager
Navigate to shortcut directory: /home/XXXXX/.local/share/applications/
3.1 Open text editor
3.2 Copy and paste the following;
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/home/XXXXX/.local/share/applications/manager_launcher.sh
Name=Manager
Comment=Manager.io
Icon=/home/XXXXX/.local/share/applications/manager-logo.png
3.3 Save the file.
Manager should appear in the launcher menu.
===================================
How this works is that the script in STEP 2 is disabling GPU Acceleration before it loads Manager.
STEP 3 launcher is just a normal launcher (shortcut in menu). But instead of direct link to Manager, the launcher link to the āworkaround scriptā. In which, the script then loads Manager.
I donāt use Manager often. Coz I just data entry once a month. So, this workaround it ok for me. I was thinking if there is no such workaround, I could live with data entry using browser instead.
I hope the steps above could help anyone with similar issues.