Posts by bgstack15
That depends on your definition of convenient. Are you familiar with git? Is the source of the relevant package stored on salsa.debian.org? If yes, then you can just run: git clone https://salsa.d...
Here goes nothing. An Internet search shows an answer on AskUbuntu#1164, author aneesheep. The gist is to install ImageMagick (try package name imagemagick) and then use the convert utility: conv...
Assuming that systemctl start $SERVICE.service returns right away (some [poorly] written StartExec commands do not), you can run this: systemctl start $SERVICE.service & journalctl -f -u $SERV...
I do not see a way to tell on the main list of questions which ones have been marked as "works for me" by the OP. I can see the questions which indicate they have zero answers, but I consider any ...
Each situation is different. Some programs in Wine/Windows will work better with the Windows dlls, and some will work better with the Wine (builtin) dlls. The best way to learn how which dlls work...
Devuan GNU+Linux is still around. It's boring, just like the Debian it's based on, because it's without the added drama of systemd and whatever systemd has supplanted. That will become a bigger pro...
LibreOffice Draw (MPL-2.0) does that. It's hardly ideal, because unless you have all the standard Windows fonts (not actually tested!), almost all PDFs will have their text get rendered oddly inclu...
Wild idea (NOT TESTED): This would not be for booting a whole second kernel, so it might fail badly if the distros were on wildly different kernel levels. For a graphical environment for X11, try ...
You said rsyslog specifically. Hopefully you are using a version new enough to use the advanced syntax (aka RainerScript). 1 Would something similar to the following work for you? $EscapeControlC...
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...