> Searching for the program in my pacman.log did not show me anything so I'm > wondering where this program comes from. Can anyone of you maybe help me to > at least get this thing removed without having any files left that are only > used by this program? You can find the absolute path to the program by running something like $ which your_fire_program then you can determine which package owns it. $ pacman -Qo `which your_file_program` Then you can decide if you want to remove that package. If the file isn't owned by any package then it is probably something you installed yourself at some point in time. HTH