You are not logged in.
In /usr/bin/
I have cpufreqctl.auto-cpufreq
I would like to find out for which package it belongs.
I thought that it was installed with auto-cpufreq from AUR, but I don't have this package currently installed.
Last edited by 860lacov (2022-10-04 04:22:15)
Offline
man pacman | less -p -FOffline
Offline
Thank you.
I tried to find out this with pacman -F and pacman -Qs and -Qi and nothing
Anything somehow related to this file is when I do:
pacman -F /usr/bin/cpufreqctl.auto-cpufreq -v
Root : /
Conf File : /etc/pacman.conf
DB Path : /var/lib/pacman/
Cache Dirs: /var/cache/pacman/pkg/
Hook Dirs : /usr/share/libalpm/hooks/ /etc/pacman.d/hooks/
Lock File : /var/lib/pacman/db.lck
Log File : /var/log/pacman.log
GPG Dir : /etc/pacman.d/gnupg/
Targets : /usr/bin/cpufreqctl.auto-cpufreqLast edited by 860lacov (2022-08-27 23:02:09)
Offline
Further down than Qs and Qi examples:
To query the database to know which package a file in the file system belongs to:
$ pacman -Qo /path/to/file_name
If you have files in /usr/bin not owned by any package then see Tips_and_tricks#Identify_files_not_owned_by_any_package.
Offline
pacman's -F flag will not properly account for files from aur packages, but -Qo will so long as those packages are installed:
pacman -Qo /bin/cpufreqctl.auto-cpufreqThat will either report which package owns said file, or it will confirm that it is not owned, in which case you may want to remove it.
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
pacman's -F flag will not properly account for files from aur packages, but -Qo will so long as those packages are installed:
pacman -Qo /bin/cpufreqctl.auto-cpufreqThat will either report which package owns said file, or it will confirm that it is not owned, in which case you may want to remove it.
Qo gave me:
pacman -Qo /bin/cpufreqctl.auto-cpufreq
error: No package owns /bin/cpufreqctl.auto-cpufreqSo I will remove it.
But why it is there in the first place?
I had auto-cpufreq installed from AUR. But I removed it with pacman -Rsn.
Offline
Possibly self installed by auto-cpufreq https://github.com/AdnanHodzic/auto-cpu … re.py#L307
The git version of the package removes that file on package removal https://aur.archlinux.org/cgit/aur.git/ … eq-git#n29 while the none git version removes a different file https://aur.archlinux.org/cgit/aur.git/ … to-cpufreq
Offline