I'm struggling with this bug, https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1972725. Can anyone help with this? Any comment, testing, fix, ... is welcome.
Asked
Active
Viewed 1.4k times
2 Answers
7
Run these two commands:
sudo systemctl start pcscd
sudo systemctl enable pcscd
The first starts a service that is necessary for the card to work, the other one ensures it will be running on startup next boot. Source comment #14 here: https://answers.launchpad.net/ubuntu/+question/701636#12
sup
- 4,964
1
I've just experienced this as well. My temporary solution was to remove the snap package and force Ubuntu to use the ppa/deb package. Note: I wasn't the one that came up with this, I found it here: https://www.omgubuntu.co.uk/2022/04/how-to-install-firefox-deb-apt-ubuntu-22-04
sudo add-apt-repository ppa:mozillateam/ppa
followed by this all in one block
echo '
Package: *
Pin: release o=LP-PPA-mozillateam
Pin-Priority: 1001
' | sudo tee /etc/apt/preferences.d/mozilla-firefox
then
sudo snap remove firefox && sudo apt install firefox
and this is to try to keep the snap from overwriting the deb
echo 'Unattended-Upgrade::Allowed-Origins:: "LP-PPA-mozillateam:${distro_codename}";' | sudo tee /etc/apt/apt.conf.d/51unattended-upgrades-firefox
user1624543
- 11
- 1