Advanced Search
Search Results
24 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...
What's different between Ctrl+Z and Ctrl+C in Unix command line
Found this explanation on this forum post (thanks to @Wuffers for the post). Control+Z is used for suspending a process by sending it the signal SIGTSTP, which cannot be intercepted by the program. While Control+C is used to kill a process with the signal SIGI...