Search
How do I solve the error 'Dependencies installation failed' when installing a program using an installer in Bottles? I'm using Bottles 51.15. Console log 15:08:16 (INFO) Installing dependenc...
Rationale Occasionally, audio from a very useful proprietary application is too quiet to be audible. This is impossible to remediate at the application level because: I am unable to request t...
Hello everyone 👋 The problem I have ~200 video files (.MP4) that I would like to organise based on their dimensions. However, the Dolphin File Manager (that I installed with Flatpak) does not di...
Hello, fellow Arch user. I had never heard of this wireless protocol until reading your question. A web search for zigbee linux brings up Zigbee2MQTT and a couple pages with setup instructions: ht...
Just run the installation again, Bottles already deleted the file with the not-matching checksum. This might be required multiple times if there are multiple files to be downloaded and installed al...
Some Linux users prefer to have /home mounted on a separate partition from the filesystem root, while others prefer a unified partition. I can find plenty of tutorials out there for moving /home on...
I want my SysRq key to be fully functional. When I look in sudo sysctl -a I see kernel.sysrq = 1 in the output. This tells me it should be working. To test, I run echo h > /proc/sysrq-trigger ...
Bottles has a builtin dependency manager which it looks like you are using. The manager downloads dependencies from their official location and installs them in some way that works "better" for Wi...
Turns out this is a known bug in QT 5 that has been fixed in QT 6. It only happens in the following constellation, which I hit exactly: Wayland Two or more screens different scaling per scree...
For functions, you could dump all currently-defined functions to a file such as appending to ~/.bashrc. typeset -f >> ~/.bashrc Note that this specifically will display every function, re...
Are you familiar with the Bash history shortcuts? The most basic is !! to refer to the last command you entered. This lets you do things like sudo !! to run the last command with privileges. You co...
Hi, i need to setup a script to validate the raspberry hardware connected to a desktop PC, and im not sure how to go about it. We are in an environment where we need to flash an OS + some goodies ...
There are two key ideas here: Moving data between partitions entails copying it onto the new one and then deleting it from the original - just like copying between different physical drives. H...
I have a RPi in the car that I need to act as a mobile AP. I need it to provide a consistent, unchanging ESSID (in AP mode) using the onboard wlan0 for all devices that stay in my car. Dashcams, t...
Actually, there's another process is running in another terminal. Seems like that is installing something or update or upgrading your system. That's why dpkg -i returned that database is locked ...
Don't try to move to 64 bit if your system isn't using 64 bit kernel. The solution is pretty is for Debian-based linux. sudo dpkg --add-architecture amd64 sudo apt-get update sudo apt-get -f ins...
Wait a minute I think you missed something, yesterday when I read your message in Discord I thought you were unable to install RVM which were producing that error. But this question clears my confu...
Airflow is a distributed workflow manager intended for complex cloud computing use. However, it can be used to run tasks locally. You can run Airflow in single-node mode, with LocalExecutor, and w...
I'm trying to containerize an application that currently uses apparmor to confine Python. This allows sandboxing of user-submitted code. How can I get docker and apparmor to play well together? Cu...
That sounds like bad design on the developers' part. There are many unavoidable ways a program may be terminated unexpectedly: Killed by an OOM killer Program crash Terminated by virus OS cra...
I found a partial fix. You have to run: sudo nvidia-ctk cdi generate --output=/etc/cdi/nvidia.yaml After this, podman is able to run it: sudo podman run --rm --device nvidia.com/gpu=all ubuntu...
Git is a very good way to sync dotfiles. There are other sync methods, but git also gives you version control, which is the other crucial part of the dotfile approach. Dealing with secrets in git ...
I store my address book with abook(1). https://manpages.debian.org/bookworm/abook/abook.1.en.html Let's say I want to introduce some contact in some field that accepts the usual name <email>...
There's no such feature. But it's easy to write. Apply this patch: From 8ea7d1cf4933ca24006308ac61aa50fb8ab33b02 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar <[email protected]> Date: S...
MWE With the following tree: l1 └── l2 ├── d0 │ ├── f0 │ ├── f1 │ ├── f2 │ ├── f3 │ ├── f4 │ └── f5 ├── d1 │ ├── f0 │ ├── f1 ...