Advanced Search
Search Results
23 total results found
Tauri apps with blank screen on Linux
Description Multiple times, with my desktop computer running Archlinux with bspwm, I couldn't correctly open a Tauri app, it only showed a blank window with nothing inside. The app seemed to function well though, because I could see the cursor change in certai...
Running chronyd on Almalinux LXC (Proxmox)
When running chronyd on AlmaLinux OS on a Proxmox Server, it may raise permission issues, because the container is not privileged. To resolve that issue, you only need to add -x to the options in the UNIT file of the chronyd service.
Create system user with custom home directory
To create a system user to run an app, you can use the useradd command. Here is an example to create one with a custom home directory: sudo useradd -d /opt/app -m -r -G docker,www-data docker-website That docker-website user will have its home directory at /o...