Debian 12 – Fix libjpeg8 missing dependency error for Parsec

While trying to install Parsec application in Debian 12, I came across the following error: root@x220:~# dpkg -i /home/panos/Downloads/parsec-linux.deb (Reading database … 347864 files and directories currently installed.) Preparing to unpack …/Downloads/parsec-linux.deb … Unpacking parsec (150-91a) over (150-91a) … dpkg: dependency problems prevent configuration of parsec: parsec depends on libjpeg8; however: Package libjpeg8 is not … Read more

Enable serial terminal for Proxmox Linux guest VMs

Configuration on the hostAdd a virtual serial port to the VM: qm set -serial0 socket or echo “serial0: socket” >> /etc/pve/qemu-server/.conf Configuration on the guest Enable and start serial console on the guest VM: systemctl enable serial-getty@ttyS0.servicesystemctl start serial-getty@ttyS0.service Instruct grub2 to send the boot messages on the serial port by editing /etc/default/grub and adding: … Read more