Articles

RPM, Urpmi & Yum commands

RPM List all installed packages: 1$ rpm -qa Get the list of all installed packages and their architecture: 1$ rpm -qa --queryformat "%-40{NAME} %-8{ARCH}\n" Same as above, but show i586 packages only: 1$ rpm -qa --queryformat "%-40{NAME} %-8{ARCH}\n" | grep i586 Downgrade a package to …
➟ Read more


i18n / l10n commands

Check a .po file: 1$ msgfmt -c -v -o /dev/null file.po Wipe out a .po file and keep only translated messages: 1$ msgattrib --translated -o cleaned.po messy.po Delete duplicate messages in a .po file: 1$ msguniq -o no_duplicate.po duplicate_content.po Show differences between two .po …
➟ Read more