• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Looking for a way to 'benchmark' CPU performance on my TFS

diegozenho

Member
Joined
Feb 26, 2011
Messages
31
Solutions
1
Reaction score
9
Hi, I'm using google translator, sorry if a grammar error occurs, a friend of mine said he once saw a system here in otland, which was doing the same thing as "perf" parsing everything and seeing what is consuming more cpu, I was wondering if anyone here knows about this system, my tfs is pulling a lot of cpu, thanks even more!
 
Depends on your kernel, I had to run:
Code:
sudo apt install linux-tools-5.0.0-23-generic
I also had to run this to let it read kernel address maps:
Code:
sudo bash
echo 0 > /proc/sys/kernel/kptr_restrict

Then you can run "pgrep tfs", choose the process id, then I use "perf top -K --pid TFS_PID", -K is to disable kernel symbols from the list.
 
Back
Top