Guest User

http://forums.macrumors.com/newreply.php?do=newreply&p=20538

a guest
Dec 29th, 2014
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. [QUOTE=BradHatter;20538045]How can you tell from those error/warning messages what their level is? [/QUOTE]
  2.  
  3. The Info window of Console.
  4.  
  5. [QUOTE]… Scannerz … [/QUOTE]
  6.  
  7. (Interesting software. A window to its web page has been lurking in the background here for more than a week, I also saw it in June 2013.)
  8.  
  9. [QUOTE]… IconServicesAgent using several hundred megs of memory, and it's usually about 300MB or more. … yes, it really is eating up 300MB of RAM. [/QUOTE]
  10.  
  11. Here, Activity Monitor shows that around 10 MB of real memory is used. It varies a little. Screenshots attached.
  12.  
  13. [QUOTE]… if you kill IconServicesAgent it will eventually get relaunched. [/QUOTE]
  14.  
  15. That's proper. Related:
  16.  
  17. [CODE]sh-3.2$ defaults read /System/Library/LaunchDaemons/com.apple.iconservices.iconservicesd.plist
  18. {
  19. Label = "com.apple.iconservicesd";
  20. LaunchEvents = {
  21. "com.apple.dispatch.vfs" = {
  22. "Monitor Low Disk Conditions" = {
  23. LowDisk = 300;
  24. VeryLowDisk = 0;
  25. };
  26. };
  27. };
  28. MachServices = {
  29. "com.apple.iconservicesd" = 1;
  30. };
  31. POSIXSpawnType = Adaptive;
  32. ProgramArguments = (
  33. "/System/Library/CoreServices/iconservicesd"
  34. );
  35. RunAtLoad = 0;
  36. }
  37. sh-3.2$ [/CODE]
  38.  
  39. [QUOTE]Another thing it does is generate gigabytes of data in the /var directory. [/QUOTE]
  40.  
  41. Yes, the cache files are stored in the user's temporary directory in that area. For this cacheing technology, it's not appropriate to store the files in the home directory.
  42.  
  43. [QUOTE]If I track all the IconServicesAgent files down, it will appear that I've just given myself gigabytes of free space, but fear not…IconServicesAgent will eventually kick in and while hogging the CPU up for about an hour, it will regenerate all those files all over again [/QUOTE]
  44.  
  45. Attempting to manually clear the cache is counterproductive. It's proper for the operating system to create and make good use of this cache of files.
  46.  
  47. [QUOTE]and I'm right back where I started.[/QUOTE]
  48.  
  49. That's where you should be :)
  50.  
  51. [URL="http://apple.stackexchange.com/questions/107154/com-apple-iconservicesagent-using-a-lot-of-ram-in-10-9/113552#comment169639_110586"]bmike wrote[/URL]:
  52.  
  53. [QUOTE]… Complaining about iconservicesagent doing too much is literally "shooting the messenger" - the system services provide data to apps that run. …[/QUOTE]
  54.  
  55. [QUOTE]I have no problem with some background program generating icons and storing them on disk, my problem is why is it using so many resources. We're talking over 10GB of disk space …[/QUOTE]
  56.  
  57. Usage here is around twenty percent of that figure.
  58.  
  59. [CODE]sh-3.2$ whoami ; date ; sw_vers
  60. gjp22
  61. Mon 29 Dec 2014 23:16:23 GMT
  62. ProductName: Mac OS X
  63. ProductVersion: 10.9.5
  64. BuildVersion: 13F34
  65. sh-3.2$ cd $TMPDIR/../C/
  66. sh-3.2$ du -hs com.apple.IconServices/
  67. 1.8G com.apple.IconServices/
  68. sh-3.2$ [/CODE]
  69.  
  70. [IMG]http://forums.macrumors.com/attachment.php?attachmentid=522159[/IMG]
Add Comment
Please, Sign In to add comment