[Testing Update] 2021-12-16 - Kernels, Pipewire 0.3.42, Python 3.10, KDE Frameworks 5.89, Nvidia, Xorg-Server 21.1.2

Hello community,

Another testing branch update with some usual updates for you.

Find out whats new in Python 3.10

  • We pulled 2560 packages from Arch due to Python 3.10 rebuilds. Report any issues with packages we might have missed.
  • pacman-mirrors 4.23.1 provides numereous small cosmetic fixes over the past months
  • KDE Frameworks is at 5.89
  • Nvidia drivers got updated to 470-94 and 495-46
  • Xorg-Server is now at 21.1.2 adding needed security fixes
  • Pipewire 0.3.42 fixs some severe problems with the previous release
  • The usual upstream updates

:information_source: You will need to rebuild any AUR packages that install files to site-packages. :information_source:

You may need to rebuild any Python packages you’ve installed from the AUR. To get a list of them, you can run:

pacman -Qoq /usr/lib/python3.9

And to rebuild them all at once with an AUR helper such as yay, you can do:

yay -S $(pacman -Qoq /usr/lib/python3.9) --answerclean All

But if any of the packages don’t work with Python 3.10 yet, this might fail halfway through and you’ll have to do rebuild the remaining ones one or a few at a time.

Get our latest daily developer images now from Github: Plasma, Gnome, XFCE. You get the latest stable releases of Manjaro from CDN77.


Our current supported kernels

  • linux44 4.4.295
  • linux49 4.9.293
  • linux414 4.14.258
  • linux419 4.19.221
  • linux54 5.4.165
  • linux510 5.10.85
  • linux514 5.14.21 [EOL]
  • linux515 5.15.8
  • linux516 5.16-rc5
  • linux510-rt 5.10.83_rt58
  • linux515-rt 5.15.5_rt22

Package Updates (Thu Dec 16 12:42:48 CET 2021)

  • testing community x86_64: 2959 new and 2975 removed package(s)
  • testing core x86_64: 48 new and 48 removed package(s)
  • testing extra x86_64: 521 new and 531 removed package(s)
  • testing kde-unstable x86_64: 371 new and 372 removed package(s)
  • testing multilib x86_64: 21 new and 21 removed package(s)

A detailed list of package changes can be found here

  • No issue, everything went smoothly
  • Yes there was an issue. I was able to resolve it myself.(Please post your solution)
  • Yes i am currently experiencing an issue due to the update. (Please post about it)

0 voters

Check if your mirror has already synced:

9 Likes

Known issues and solutions

This is a wiki post; please edit as necessary.
Please, consider subscribing to the Testing Updates Announcements RSS feed


New issues:

Xorg-Server 21.1.2 breaks suspend/wake on systems with proprietry NVIDIA drivers

Issue in Xorg Bug Tracker

nvidia-390xx is not compatible to Xorg-Server 21.1.1 yet

For all those with that Xorg ABI error and having no /etc/X11/xorg.conf: Search for a file called /etc/X11/xorg.conf.d/20-server_flags.conf. If it does not exist yet, create it. Amend the file and paste the well-known contents there:

Section "ServerFlags"
  Option "IgnoreABI" "1"
EndSection
freetype2 update might result in font characters becoming squares

Don’t worry, a relogin to your UI should fix it. We recommend to do the update in a TTY. Affected UIs so far: Gnome, Phosh, Cinnamon.

compiz packages like compiz-easy-patch got dropped from our repositories.

compiz packages like compiz-easy-patch got dropped from our repositories. Due to protobuf update you may need to rebuild that package locally on your end. Compiz-easy-patch removed from repos

Announcement for PipeWire users

Re-enable any per-user enabled pipewire-media-session.service manually:

You should re-enable any per-user pipewire-media-session.service manually to establish a new service alias for pipewire-session-manager.service added with 0.3.38.

systemctl --user enable pipewire-media-session

See the PipeWire Release Notes for more info

If you have installed Python packages via Pip: Do `pip freeze` BEFORE the update

If you have installed something via Pip, get this info before the python upgrade, as there’s no easy way to get it afterwards.

pip freeze --user > pip_list_user.txt
/path/to/<venv_name>/python -m pip freeze -l > pip_list_<venv_name>.txt

NEVER use sudo with Pip,
Look for packages you could install from AUR instead, and if you still want some pip installs, do: pip install --user

Also, the list from ‘pip freeze’ includes version numbers,
so you might want to manually install afresh to get current versions.

pacman -Qoq /usr/lib/python3.9 is quite different.
If you use it before the update, it will list many packages
that pacman will soon re-install for python 3.10,
so use it after the update, when it will get only AUR packages.
To use it with pikaur:
pikaur -S $(pacman -Qoq /usr/lib/python3.9) --rebuild


Older Issues

OS prober does not run and add other operating systems*

To restore, please execute: echo GRUB_DISABLE_OS_PROBER=false|sudo tee -a /etc/default/grub && sudo update-grub

For more information, see opening post in [Stable Update] 2021-03-08.

Nvidia card owners
  • We simplified nVidia driver installation. This means we dropped legacy drivers.
    • We recommend to switch over to Nouveau drivers if your card is mentioned here and the feature you need is not in red TO DO here for your particular card.

    • If you however still need proprietary drivers, you may want to execute the following to ensure all parts of the nVidia drivers get installed properly:

      sudo mhwd -a pci nonfree 0300
      
      If proprietary drivers don't fix everything, please click the â–ș at the beginning of this line to view more info
      1. try installing kernel 5.4 LTS (Long Term Support)
      2. If that doesn’t fix it, take a full system backup, go to a console using Ctrl+Alt+F2 and:
      • Backup /etc/X11/mhwd.d/nvidia.conf if you ever edited that manually
      • remove all nVidia related drivers and applications:
        pacman --remove nvidia*
        
      • Note which applications are being removed and keep them handy in a list
      • Install the driver first:
        mhwd --install video-hybrid-XXX-nvidia-prime
        
        (Where XXX is amd or intel if you have hybrid graphics or the whole thing is video-nvidia if you’re on an nVidia-only system)
      • reboot and see if you at least get a screen.
      • Install all the other applications from your handy list that you still need one by one.
      • Restore /etc/X11/mhwd.d/nvidia.conf if you ever edited that manually
      • If that wouldn’t solve the issue open a new issue here referring to this update and posting at a minimum the full output of:
        inxi --admin --verbosity=7 --filter --no-host --width
        

      If you however still have issues with your Nvidia card, you may open a new thread in our forum: Graphics & Display - Manjaro Linux Forum or look at our tutorial on compiling old Nvidia drivers.

For AMD GPU users having a black screen with kernel 5.10

Due to a bug in the AMD drivers, please try the following first:

For GRUB:

  1. Open a terminal or a TTY
  2. Open /etc/default/grub in your favourite CLI editor (nano vi, emacs`)
  3. Find the line: GRUB_CMDLINE_LINUX_DEFAULT="
  4. Add amdgpu.dc=0
  5. Save
  6. Execute sudo update-grub and reboot

For systemd-boot:

  1. Open a terminal or a TTY
  2. Open /boot/loader/entries/manjarolinux5.10.conf in your favourite CLI editor (nano vi, emacs`)
  3. Add amdgpu.dc=0 to the end of the line options
  4. Save & reboot

For rEFInd:

  1. Open a terminal or a TTY
  2. Open /boot/refind_linux.conf in your favourite CLI editor (nano vi, emacs`)
  3. Find the line: "Boot using default options" "root=
  4. Add amdgpu.dc=0
  5. Save & reboot
Possible 2 Min delay on shutdown with Gnome
  • If you got the problem with shutdown delay (about 2min) on Gnome, here is a workaround:
    • Edit /usr/lib/systemd/user/gnome-session-restart-dbus.service in your favourite editor as root and add Slice=-.slice as a line all by itself like this:

      [Service]
      Type=notify
      Slice=-.slice
      ExecStart=/usr/lib/gnome-session-ctl --restart-dbus
      
    • Click this link For more information

Touchpad on a ThinkPad stops working

Restart again, please.

$PKGNAME warning: directory permissions differ on $Directoryname

followed by:

Filesystem: NNN package MMM

  • The solution:

    sudo chmod MMM DirectoryName
    

    Where obviously MMM is the second number you see (the correct one)

  • The explanation:
    Your package expects the security permissions to be MMM but your system is set to NNN. This is just a warning (today) but to ensure you remain up-to-date with the latest and greatest security rules it’s advised to execute the above command.

Systemd error message: .slice: Failed to migrate controller cgroups

If you have a similar error message like this:

systemd[1004]: -.slice: Failed to migrate controller cgroups from /user.slice/user-1000.slice/user@1000.service, ignoring: Permission denied


 you may need to add this Grub parameter to your /etc/default/grub file in line GRUB_CMDLINE_LINUX_DEFAULT: systemd.unified_cgroup_hierarchy=true. To update your grub menu, call: sudo update-grub. For more information on that issue, see also Arch Forum.

Python 3.9 Requires Rebuilds

Instructions for quickly and easily rebuilding affected AUR packages:

# Install yay
sudo pacman -S --needed --noconfirm yay

# Rebuild AUR python packages
yay -S --noconfirm $(pacman -Qqo "/usr/lib/python3.8/site-packages")
libtraceevent>=5.9-1 update requires manual intervention

2020-10-23 - SĂ©bastien Luttringer

The libtraceevent package prior to version 5.9-1 was missing a soname link. This has been fixed in 5.9-1, so the upgrade will need to overwrite the untracked files created by ldconfig. If you get any of these errors

libtraceevent: /usr/lib/libtraceevent.so.1 exists in filesystem

when updating, use

pacman -Syu --overwrite /usr/lib/libtraceevent.so.1

to perform the upgrade.

Arch Linux - News: libtraceevent>=5.9-1 update requires manual intervention

OpenVPN connection times out

Workaround: downgrade openvpn (2.5.0-1 => 2.4.9-2).
For a proper solution follow this bug report on Arch Linux: https://bugs.archlinux.org/task/68480

PAM and PAMBASE got updated, which might prevent you from login

Due to updates from pambase and pam you might take care about any .pacnew files in /etc/pam.d as for example pam_tally, pam_tally2 and pam_cracklib got deprecated. Read in the ArchWiki about managing those files.

Typical issue:

For recovery, it is enough to boot with kernel option “systemd.unit=rescue.target”, then proceed into /etc/pam.d and merge “system-auth” and “system-auth.pacnew”

System takes a long time to boot

If you’ve got errors like Failed to start Network Manager Wait Online. you can try removing systemd from passwd and group in /etc/nsswitch.conf as described here
Update: If you can see the line
dbus-daemon[1453]: [system] Connection has not authenticated soon enough, closing it (auth_timeout=30000ms, elapsed: 45146ms)
in in your dbus log ( journalctl -b -u dbus ), the new/better workaround is to switch cups from service to socket as described here:
systemctl disable cups.service
systemctl enable cups.socket

I think I've some font problems

With the update of fontconfig some major rules how fonts get applied changed. Make sure that your system has ttf-dejavu installed. A more in depth explanation can be found here.

Please RTFT (Read This Fine Thread) first before reporting the same issues over and over again!

1 Like

Hi,
I had to rename /usr/bin/sz manually to allow to update lrzsz package.

/update 18/12: fixed with updated version 1.4.3


Hmm with this update at a first glance newly built on python 3.10 optimus-manager can’t switch to Nvidia:

$ optimus-manager --switch nvidia
ERROR: the optimus-manager service failed boot-time startup.
Log at /var/log/optimus-manager/daemon/daemon-20211216T170736.log
Error loading config file : Cannot find header for section [optimus]
$
$ systemctl status optimus-manager
● optimus-manager.service - Optimus Manager Commands Daemon
     Loaded: loaded (/usr/lib/systemd/system/optimus-manager.service; enabled; vendor preset: disabled)
     Active: active (running) since Thu 2021-12-16 17:07:36 EET; 5min ago
    Process: 481 ExecStartPre=/usr/bin/python3 -u -m optimus_manager.hooks.pre_daemon_start (code=exited, status=1/FAILURE)
    Process: 539 ExecStartPre=/usr/bin/python3 -u -m optimus_manager.hooks.pre_xorg_start (code=exited, status=0/SUCCESS)
   Main PID: 560 (python3)
      Tasks: 1 (limit: 9363)
     Memory: 16.0M
        CPU: 216ms
     CGroup: /system.slice/optimus-manager.service
             └─560 /usr/bin/python3 -u -m optimus_manager.daemon

Dec 16 17:07:36 msi python3[481]:   File "/usr/lib/python3.10/site-packages/optimus_manager/config.py", line 28, in _load_config
Dec 16 17:07:36 msi python3[481]:     _validate_config(base_config)
Dec 16 17:07:36 msi python3[481]:   File "/usr/lib/python3.10/site-packages/optimus_manager/config.py", line 114, in _validate_config
Dec 16 17:07:36 msi python3[481]:     raise ConfigError("Cannot find header for section [%s]" % section)
Dec 16 17:07:36 msi python3[481]: optimus_manager.config.ConfigError: Cannot find header for section [optimus]
Dec 16 17:07:36 msi python3[481]: [48] INFO: Writing state {'type': 'startup_failed', 'startup_mode': None, 'daemon_run_id': '20211216T170736'}
Dec 16 17:07:36 msi systemd[1]: Started Optimus Manager Commands Daemon.
Dec 16 17:07:36 msi python3[560]: [2] INFO: # Commands daemon
Dec 16 17:07:36 msi python3[560]: [2] INFO: Opening UNIX socket
Dec 16 17:07:36 msi python3[560]: [2] INFO: Awaiting commands
$

The log

$ cat /var/log/optimus-manager/daemon/daemon-20211216T170736.log
[43] INFO: # Daemon pre-start hook
[43] INFO: Removing /etc/X11/xorg.conf.d/10-optimus-manager.conf (if present)
[46] INFO: Copying /etc/optimus-manager/optimus-manager.conf to /var/lib/optimus-manager/tmp/config_copy.conf
[48] ERROR: Daemon startup error
Traceback (most recent call last):
  File "/usr/lib/python3.10/site-packages/optimus_manager/hooks/pre_daemon_start.py", line 27, in main
    config = load_config()
  File "/usr/lib/python3.10/site-packages/optimus_manager/config.py", line 16, in load_config
    config = _load_config()
  File "/usr/lib/python3.10/site-packages/optimus_manager/config.py", line 28, in _load_config
    _validate_config(base_config)
  File "/usr/lib/python3.10/site-packages/optimus_manager/config.py", line 114, in _validate_config
    raise ConfigError("Cannot find header for section [%s]" % section)
optimus_manager.config.ConfigError: Cannot find header for section [optimus]
[48] INFO: Writing state {'type': 'startup_failed', 'startup_mode': None, 'daemon_run_id': '20211216T170736'}
[2] INFO: # Commands daemon
[2] INFO: Opening UNIX socket
[2] INFO: Awaiting commands
$
1 Like

It’s a known issue: FS#68599 - [sx] [sz] [lrzsz] Conflict on /usr/bin/sx /usr/bin/sz files

if i test nvidia drivers , how to downgrade all version ( nvidia & kernel ) ?
see this
https://bugs.archlinux.org/task/73031
ko for mate , I3 , dwm , and on login Xorg

I confirm, with optimus-manager there is an issue. When I rebooted, the secondary monitor didn’t work and Steam was constantly crashing. I suspected some problems with driver load. So I rebuild optimus-manager-git, rebooted and all is fixed. Secondary monitor is working, Steam is not crashing and showing correct drivers.

I rebuild AUR packages as suggested in the first post. There were only few packages that needed it and all went fine. I also noticed other AUR packages that need rebuild (like kwin-effects-yet-another-magic-lamp), but so far, the rest seems to be working fine now.

@tuxmanjarino, switch to optimus-manager-git, it’s more safe on testing, since the repo version is always lagging behind.

Ah, forgot to add, that during update I got this soft warning:


warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyparsing-2.4.7-py3.9.egg-info/
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyparsing-2.4.7-py3.9.egg-info/PKG-INFO
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyparsing-2.4.7-py3.9.egg-info/SOURCES.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyparsing-2.4.7-py3.9.egg-info/dependency_links.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyparsing-2.4.7-py3.9.egg-info/top_level.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2-0.19.1-py3.9.egg-info/
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2-0.19.1-py3.9.egg-info/PKG-INFO
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2-0.19.1-py3.9.egg-info/SOURCES.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2-0.19.1-py3.9.egg-info/dependency_links.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2-0.19.1-py3.9.egg-info/requires.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2-0.19.1-py3.9.egg-info/top_level.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2/__pycache__/__init__.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2/__pycache__/auth.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2/__pycache__/certs.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2/__pycache__/error.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2/__pycache__/iri2uri.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/httplib2/__pycache__/socks.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules-0.2.8-py3.9.egg-info/
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules-0.2.8-py3.9.egg-info/PKG-INFO
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules-0.2.8-py3.9.egg-info/SOURCES.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules-0.2.8-py3.9.egg-info/dependency_links.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules-0.2.8-py3.9.egg-info/requires.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules-0.2.8-py3.9.egg-info/top_level.txt
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules-0.2.8-py3.9.egg-info/zip-safe
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/__init__.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/pem.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc1155.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc1157.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc1901.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc1902.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc1905.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2251.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2314.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2315.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2437.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2459.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2511.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2560.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2631.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2634.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2985.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc2986.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3114.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3161.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3274.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3279.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3280.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3281.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3412.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3414.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3447.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3560.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3565.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3709.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3770.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3779.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc3852.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc4043.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc4055.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc4073.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc4108.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc4210.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc4211.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc4334.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc4985.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5035.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5083.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5084.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5208.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5280.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5480.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5649.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5652.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5751.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5755.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5913.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5914.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5915.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5916.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5917.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5924.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5934.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5940.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5958.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc5990.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6010.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6019.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6031.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6032.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6120.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6170.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6187.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6210.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6211.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6402-1.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6402.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6482.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6486.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6487.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6664.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6955.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc6960.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7030.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7191.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7229.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7292.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7296.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7508.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7585.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7633.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7773.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7894-1.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7894.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7906.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc7914.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8017.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8018.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8103.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8209.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8226.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8358.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8360.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8398.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8410.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8418.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8419.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8479.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8494.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8520.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8619.cpython-39.opt-1.pyc
warning: can't retrieve information for file usr/lib/python3.9/site-packages/pyasn1_modules/__pycache__/rfc8649.cpython-39.opt-1.pyc

There is no direct downgrade. You can only restore a system snapshot (backup) from before the update, providing you created one.

yes I could, but since optimus-manager is maintained by Manjaro it’s better to be addressed directly to not affect Stable users who are using it from the repo.

1 Like

This one btw needs a rebuild with every Kwin update.

1 Like

Can confirm, having the same issue

I think --rebuild option is needed in order to force rebuild packages with the same version, otherwise they are just reinstalled without rebuilding.

My wired mouse doesn’t work. It shows up in lsusb but there’s no input (movement or click).
I tested the mouse in another computer and it’s fine. Also tested a wireless mouse and that one works. I would appreciate any help since I can’t find anything.
I think I should add I’m on XFCE.
Edit: It’s only this mouse, it’s not the USB port.

See man yay:

  --answerclean <All|None|Installed|NotInstalled|...>
          Set a predetermined answer for the clean build menu question.
          This answer will be used instead of reading from standard input
          but will be parsed exactly the same.

Kernel 5.16-rc5 seems to have some issues, apparently with memory management, on machines with only 8 GB RAM:

#2  0x00007f43050472ac _ZN4base17ConditionVariable9TimedWaitERKNS_9TimeDeltaE (libbase.so + 0x2272ac)
                                                     #3  0x00007f4305047c96 _ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE (libbase.so + 0x227c96)
                                                     #4  0x00007f4305011cf4 _ZN4base8internal12WorkerThread8Delegate11WaitForWorkEPNS_13WaitableEventE (libbase.so + >
                                                     #5  0x00007f430501295a _ZN4base8internal12WorkerThread9RunWorkerEv (libbase.so + 0x1f295a)
                                                     #6  0x00007f430501249e _ZN4base8internal12WorkerThread15RunPooledWorkerEv (libbase.so + 0x1f249e)
                                                     #7  0x00007f430504b6dc n/a (libbase.so + 0x22b6dc)
                                                     #8  0x00007f42f5c8a259 start_thread (libpthread.so.0 + 0x9259)
                                                     #9  0x00007f42f56735e3 __clone (libc.so.6 + 0xfe5e3)
                                                     
                                                     Stack trace of thread 9300:
                                                     #0  0x00007f42f5c968ca __futex_abstimed_wait_common64 (libpthread.so.0 + 0x158ca)
                                                     #1  0x00007f42f5c90574 pthread_cond_timedwait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf574)
                                                     #2  0x00007f43050472ac _ZN4base17ConditionVariable9TimedWaitERKNS_9TimeDeltaE (libbase.so + 0x2272ac)
                                                     #3  0x00007f4305047c96 _ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE (libbase.so + 0x227c96)
                                                     #4  0x00007f4305011cf4 _ZN4base8internal12WorkerThread8Delegate11WaitForWorkEPNS_13WaitableEventE (libbase.so + >
                                                     #5  0x00007f430501295a _ZN4base8internal12WorkerThread9RunWorkerEv (libbase.so + 0x1f295a)
                                                     #6  0x00007f430501249e _ZN4base8internal12WorkerThread15RunPooledWorkerEv (libbase.so + 0x1f249e)
                                                     #7  0x00007f430504b6dc n/a (libbase.so + 0x22b6dc)
                                                     #8  0x00007f42f5c8a259 start_thread (libpthread.so.0 + 0x9259)
                                                     #9  0x00007f42f56735e3 __clone (libc.so.6 + 0xfe5e3)
                                                     
                                                     Stack trace of thread 9315:
                                                     #0  0x00007f42f567392e epoll_wait (libc.so.6 + 0xfe92e)
                                                     #1  0x00007f43050bfec6 n/a (libbase.so + 0x29fec6)
                                                     #2  0x00007f43050bd699 n/a (libbase.so + 0x29d699)
                                                     #3  0x00007f430508286c _ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE (libbase.so + 0x26286c)
                                                     #4  0x00007f4304ffc142 _ZN4base16sequence_manager8internal35ThreadControllerWithMessagePumpImpl3RunEbNS_9TimeDel>
                                                     #5  0x00007f4304fb8a11 _ZN4base7RunLoop3RunERKNS_8LocationE (libbase.so + 0x198a11)
                                                     #6  0x00007f430501d52b _ZN4base6Thread3RunEPNS_7RunLoopE (libbase.so + 0x1fd52b)
                                                     #7  0x00007f430501d6e1 _ZN4base6Thread10ThreadMainEv (libbase.so + 0x1fd6e1)
                                                     #8  0x00007f430504b6dc n/a (libbase.so + 0x22b6dc)
                                                     #9  0x00007f42f5c8a259 start_thread (libpthread.so.0 + 0x9259)
                                                     #10 0x00007f42f56735e3 __clone (libc.so.6 + 0xfe5e3)
                                                     
                                                     Stack trace of thread 9523:
                                                     #0  0x00007f42f566e18d syscall (libc.so.6 + 0xf918d)
                                                     #1  0x00007f42f5bedbbb g_cond_wait_until (libglib-2.0.so.0 + 0xa2bbb)
                                                     #2  0x00007f42f5b6e7d3 n/a (libglib-2.0.so.0 + 0x237d3)
                                                     #3  0x00007f42f5b6e964 g_async_queue_timeout_pop (libglib-2.0.so.0 + 0x23964)
                                                     #4  0x00007f42f5bd096a n/a (libglib-2.0.so.0 + 0x8596a)
                                                     #5  0x00007f42f5bcdce1 n/a (libglib-2.0.so.0 + 0x82ce1)
                                                     #6  0x00007f42f5c8a259 start_thread (libpthread.so.0 + 0x9259)
                                                     #7  0x00007f42f56735e3 __clone (libc.so.6 + 0xfe5e3)

As these errors do not seem to occur when using kernel 5.15.7, I assume that the 5.16-rc5 kernel is at fault here:
After having started chromium-dev the first time, it crashes as soon as it receives any keyboard input. Subsequent starts turn out to be successful (at least no immediate crashes upon keyboard input).

I think --rebuild forces yay to ignore previously built packages from cache. Without it cached package is installed. See man yay:

--rebuild
Always build target packages even when a copy is available in cache.
--norebuild
When building packages if the package is found in cache and is an equal version to the one wanted skip the package build and use the existing package.

update done , and nvidia drivers is ok
something wrong on side Archlinux

With the 2 latest updates CUPS is not working anymore. I can search and install network printers but the print job stops with “Der Drucker »EPSON-WF4830.local« kann nicht lokalisiert werden.” (Printer cannot be localized).
I found his resolved does not answer with NXDOMAIN to local queries when mDNS is disabled as a possible issue. My systemd version shows systemd 249 (249.7-2-manjaro) compared to systemd 249 (249.7-2-arch) from the bug report.
I’m still trying to get the printer back online.

After this python update, skype-web-jak does not launch anymore:

$ skype-web 
JAK v3.5.6
PyQt5 Bindings
Attribute Qt::AA_EnableHighDpiScaling must be set before QCoreApplication is created.
Production Mode On, use (--dev) for debugging
NVIDIA detected:Known bug - kernel rejected pushbuf
Falling back to Software Rendering
Attribute Qt::AA_UseSoftwareOpenGL must be set before QCoreApplication is created.
Engine online IPC and Bridge Disabled
Cookies PATH:/home/chainofflowers/.jak/microsoft
Use of deprecated not thread-safe setter, use setUrlRequestInterceptor instead.
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.15.7 Chrome/87.0.4280.144 Safari/537.36
Loading URL:https://web.skype.com
Registering ['view'] Instance
icon not found: None
loading default icon:
Registering and Retrieving ['win'] Instance
Traceback (most recent call last):
  File "/usr/bin/skype-web", line 32, in <module>
    skype().run()
  File "/usr/lib/python3.10/site-packages/JAK/Application.py", line 137, in run
    win.resize(win.default_size("width"), win.default_size("height"))
TypeError: arguments did not match any overloaded call:
  resize(self, QSize): argument 1 has unexpected type 'float'
  resize(self, int, int): argument 1 has unexpected type 'float'

I was able to get the printer online again with a manually configured IPP connection directly in CUPS:
ipp://192.168.0.11/ipp/print?waitjob=false&waitprinter=false
The connection with IPP over DNS-SD in the KDE control center is still not working.

1 Like

Received an update today with a new nsswitch.conf and now the printer also works with DNS-SD: dnssd://EPSON%20WF-4830%20Series._ipp._tcp.local/?uuid=cfe92100-67c4-11d4-a45f-50579ce0f7b6

Thanks for the bugfix!