I'm currently working on Raspberry pi zero. When i write:
perf --version
/usr/bin/perf: line 13: exec: perf_4.14: not found E: linux-perf-4.14 is not installed.
when i do:
sudo apt-get install linux-perf
Then:
linux-perf is already the newest version (4.9+80+deb9u4+rpi1)
0 upgraded, 0 newly installed, 0 to remove and 216 not upgraded.
sudo apt-get install perf_4.14
E: Unable to locate package perf_4.14
E: Couldn't find any package by glob
'perf_4.14' E: Couldn't find any package by regex 'perf_4.14'
sudo apt-get install linux-tools-common linux-base
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package linux-tools-common
sudo apt-get install linux-tools-$(uname -r)
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package linux-tools-4.14.79
E: Couldn't find any package by glob 'linux-tools-4.14.79'
E: Couldn't find any package by regex 'linux-tools-4.14.79'
Please help me in this!
Thanks