FWIW you can use the
which command to find out the full path of a program, and then
rpm -qf on that full path to see which package this comes from.
In this case you could have done:
- Code: Select all
rpm -qf $(which userdrake)
This is also contained on the wiki page with the instructions:
https://wiki.mageia.org/en/How_to_report_a_bug_properly#Reporting_a_New_Bug wrote:Source RPM: This is where you can identify exactly which RPM package is involved in this bug report. For instance, if you know the problem you are having is with the program mysqld, then execute rpm -qif /usr/sbin/mysqld. This will tell you the name and version of the RPM package (i.e. MySQL-5.0.27-1mga1) as well as other information. In particular, you are looking for the "Source RPM" field (i.e. MySQL-5.0.27-1mga1.src.rpm) -- this is the information you should provide here. Alternatively, you may use rpm -qf /usr/sbin/mysqld --qf '%{SOURCERPM}\n' to obtain the information. If you do not know the location of the program in question, use rpm -qf `which mysqld` to obtain it.