- Download latest Manjaro Architect iso
- Burn the iso to a usb following the steps from the Manjaro wiki
- On Lenovo BIOS
- Disable Secure boot
- Set USB boot configuration on UEFI only.
- Save changes and press F12 to choose from boot menu.
- On Manjaro GRUB menu, add the
ivrs_ioapic[32]=00:14.0
grub parameter. Source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Write the new file | |
awk 'NR==2 {print "auth sufficient pam_tid.so"} 1' /etc/pam.d/sudo > /etc/pam.d/sudo.new | |
# Make a backup of the current file | |
cp /etc/pam.d/sudo /etc/pam.d/sudo.bak | |
# Replace the current file with the new file | |
mv /etc/pam.d/sudo.new /etc/pam.d/sudo | |
# If you need to restore the backup and do not have | |
# access to sudo due to the issue. Reboot into recoveryOS | |
# Mount your data volume |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
for i in `find . -name "*.png"`; do | |
pngcrush -e .png2 -rem allb -brute -reduce $i | |
mv ${i}2 $i | |
optipng -o7 $i | |
done |