Secrets Error -- Network Manager If you see Network logs showing error like: secrets provided, associating -- disassociating , over and over. Also, using nmcli or nmtui or raspi-config doesn't work to connect to a new or same access point. I'm not entirely sure, but in my case it was, 1. Shared Space using ntfs-3g (/etc/fstab) can cause Network Errors ( wlan0 ) because of the shared DBUS space namespace & FUSE (Filesystem in Userspace) both of which NetworkManager relies on. 2. USB Interference Also, If you have unshielded cable from your USB 3.0 Port, it can conflict with the radio , interfering with the signals, therefore, unable to associate or authenticate. FIX Use USB 2.0 -- if you have unshielded cable. Avoid using ntfs-3g -- instead use native kernel support ntfs3 -- insmod Delay ntfs-3g mount -- after boot has long finished -- use systemctl script
If you have encrypted /boot, make sure it's LUKS1, GRUB doesn't support LUKS2 , if you want to use LUKS2 make sure it is the pbkdf2 and not argon , as it is not supported as of yet and is the default one used by LUKS2, so take care of it. cryptsetup luksDump /dev/sda** BOOT INTO THE LIVE ENVIRONMENT Make folders for mount mkdir /mnt/ boot mkdir /mnt/ boot/efi #Decrypt luks drives / and /boot Cryptsetup luksOpen /dev/ sda** mount-name-x // both root and boot mount -o subvol=@ /dev/m apper /mount-name-root /m nt mount /dev/m apper /mount-name-boot /m nt/boot mount /dev/ sda1 /mnt/ boot/efi #Bind /dev /proc /sys /run mount --bind /dev /m nt/dev mount --bind /proc /m nt/proc mount --bind /sys /m nt/sys mount --bind /run /m nt/run update-grub // Update the grub config (grub.cfg) based on current working update-initramfs -u // Update the initramfs grub-install /dev/ sda // Update the efi one, only use when /boot part is changed aka change in / dev /sda-boot, like when you en...