Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Activity Manager - tunmgr

Hello dear MacBookers,


I am actually experiencing some autonomy issues with my MacBook Pro 2012 (2.9 CPU).

I checked out the Activity Manager of my computer and I instantly noticed that there's a process named "tunmgr" which takes 99.5% of my CPU percentage. I am always keeping an eye on the Activity Manager to quit it each time it appears.


Do you guys know how to disable/remove it, or anyhing to fix this issue?


You will enclosed a screenshot of my Activity Manager.


Thank you in advance.


User uploaded file

Safatri Download

Posted on May 19, 2013 12:37 PM

Reply
Question marked as Best reply

Posted on May 19, 2013 12:39 PM

Other users say that this process is related to the Blackberry app. See > https://discussions.apple.com/thread/4957570?start=0&tstart=0

9 replies

Aug 7, 2013 6:37 PM in response to AnRho

I had the same problem and researched it. The tunmgr is essentially a bug that spawns a looped process due to checking the "Open Blackberry Link when a device is connected" in Blackberry Link. To stop the process, open Blackberry Link -->> Preferences (not in the main menu, the gear in the top right corner) -->> uncheck "Open Blackberry Link when a device is connected". Then restart and it should be back to normal.


ps - thanks for fixing this Blackberry!User uploaded file

Sep 3, 2013 9:19 PM in response to AnRho

Here's another, that doesn't involve removing the BB software or changing its settings. Since the program hangs on a reliable basis, just look for it using a lot of CPU time and kill it when it is:



#! /bin/sh -


cpu=`ps aux | grep -ie tunmgr | grep -v grep | awk '{print $3}'`


if [ $(echo "$cpu > 50" | bc) -ne 0 ]; then

ps aux | grep -ie tunmgr | grep -v grep | awk '{print $2}' | xargs kill -9

fi



The program looks for "tunmgr" and kills tunmgr if it is using more than 50% CPU when the program runs. Put it in a crontab that has administrator privileges set to run every 1-5 minutes and tunmgr won't eat your battery again.

Activity Manager - tunmgr

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.