You are not logged in.
Hello.
Wouldn't it be easier to download qbittorrent appimage from the official website and use it?
Because there are 32bit systems still available.....so those old computers are still usable/useful, even if a bit slow....not everyone expects instant website access.
Totally agree with you mate.
are there any fixes for this?
Just update your system
sudo apt update
sudo apt upgrade
P.S.
Reboot is required.
Hello.
It is already fixed in kernel, version
6.1.67-1 (2023-12-12)
Just update your system
sudo apt update
sudo apt upgrade
and reboot.
Just use ERC.ERC is an IRC client. It is included in Emacs as of version 22.3
Hello.
What if you try to disable lxqt power monitoring and switch it to xscreensaver?
Hello.
What Devuan version you are using?
New kernel (6.1.0-15) is available by now.
Thanks, this worked well, just had to run pavucontrol to pick the correct output once and the setting was saved.
It's great to hear that everything is working as it should. By the way, I also use pavucontrol, because it's practically the easiest way to switch sound cards.
Just navigate to Devuan Download Zone and select
devuan_daedalus_5.0.1_amd64_desktop.iso
This iso image is 4 Gb in size.
Hey, any ideas about editors that a) are available for Devuan and b) have an autosave function? I mean editors for coders....
Just use Emacs.
Well, I sick of GNU/Linux for today, I'll try FreeBSD and see the video games support on it.
Good luck to you then.
But I'll put in my three cents. If you can't solve the sound problem in Gnome, then FreeBSD will be even more difficult....
Hello.
Just install package
pavucontrol
and make sound card adjustment from this program....
Run the iso, I have partition already prepared, install only barebones and will install grub. Reboot. I'm assuming i'll still be able to automatically connect to internet when I re-boot to CLI of this install?
Yes, if you are connected to wired internet. If it's wireless, you'll need to go to the configuration files and configuring wireless manually.
Add these lines as a more elegant way instead of typing out instructions for apt? Good to go?
You should be more careful with these settings, because if you don't install the recommended packages, you will get cut off functionality. As an example package firejail. In this case, the recommended packages include firejail-profiles. Without this package, the functionality of firejail is severely limited. The same applies to the chromium web browser...
Then time to install programs, I have a list of about 20 to start with, but would it be better to just install Xorg, DM, WM, FM, panel, network manager and Synaptic and reboot first and do the rest from synaptic?
In this case, there is no difference... if my opinion is important to you, then that synaptics is not really necessary. In my personal opinion aptitude is better....
pavucontrol dependence pulseaudio-utils, pulseaudio-utils and pipewire-audio Install together ??
No, the pavucontrol package does not depend on pulseaudio-utils.....for pure set up with alsa, install
pipewire-audio
package...
The
pavucontrol
package can be useful if you want to change order of the audio cards, set your audio card as default, etc.
For my modest virtualization needs, I always use QEMU and KVM.....
it doesn't protect you from someone who is continually watching (or filming) your screen.
Very accurately and correctly said!
if you really like browsers based on chromium, why not use qtebrowser?
This is Trinity's log management tool, a legacy of KDE.
https://i.postimg.cc/T1M4mvKf/14.jpg
Very nice tool.
As far as I know, this program does not work with gmail and yandex mail. You should thank gmail's "security" policy for that.
PPA is not compatible with Devuan (and Debian)...
Just check this
OTOH, if you don't want anything written to it, why not just 'chattr +i .xsession-errors'? That's kind of what the immutable attribute is for.
Thanks for the advice. By the way, I've noticed that when using lightdm, it automatically clears .xsession-errors after a session ends, a new file is created when a new session is started, and the old one is renamed to ..xsession-errors.old
If it already happened that you ran out of disk space and using the du -k /home | sort -n | tail -5 command you were able to determine that the .xsession-errors file is the one that takes up more space, the first step to fix the problem is to empty it completely:
$ >~/.xsession-errors
Once the space is freed, you will want this situation not to be repeated again in the future. To achieve this it is best to try to find the origin of the problem, ie, to know which process is writing uncontrolled to the error log and why.
If you want to forget about this log because in normal operation you are not interested in its debugging information, you can redirect to /dev/null everything that is written to it and thus always keep a size of 0 bytes. For this you can delete the .xsession-errors file and create a symbolic link to /dev/null instead in order to get the same result:
$ rm .xsession-errors
$ ln -s /dev/null .xsession-errors
The problem is that when you restart the session the symbolic link will be replaced back by a regular file and will start to grow again. To avoid this you must add the following lines to the .bashrc in your home directory:
# If the .xsession-errors file is not a symbolic link, delete it and create it as such
if [ ! -h $HOME/.xsession-errors ]; then
/bin/rm $HOME/.xsession-errors
ln -s /dev/null $HOME/.xsession-errors
fi