Advanced Search
Search Results
25 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...
Change LXC from unprivileged to privileged
Article taken from Bobcares: original post From the Proxmox GUI First, log in to the Proxmox Web UI and access the dashboard. Next, we have to shut down the LXC Container. So, click the container on the left panel and click Shutdown from the top menu. ...