Skip to main content

Command Palette

Search for a command to run...

Suppress "freedesktop.home1.service" Logs

Published
1 min read

Pretty simple.

always remember to backup your default configs kids
mkdir ~/.backupconfigs
sudo cp /etc/pam.d/system-auth ~/.backupconfigs/pam.d.system-auth

Then edit the system-auth pam file
sudo nano /etc/pam.d/system-auth

and change

-auth      [success=2 default=ignore]  pam_systemd_home.so
auth       [success=1 default=bad]     pam_unix.so          try_first_pass nullok

to

auth       [success=2 default=ignore]  pam_unix.so          try_first_pass nullok
-auth      [success=1 default=ignore]  pam_systemd_home.so

Success?

More from this blog

My memory is Volatile

28 posts

This is a place where I'll be making tutorials for future-me on archlinux-related installs and fixes so I don't have to figure stuff out againe every few months. Use at your own risk.

Suppress freedesktop.home1.service Logs