Apple Event: May 7th at 7 am PT

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

Will Disk Warrior Help These Issues?

Have been using my MacPro for about 18 months and it's been almost flawless ... until the last few months. Seem to be experiencing all kinds of strange system behavior, like:


  • applications sometimes freeze when using File->Quit
  • sometimes when I select "Restart" from Finder menu (espec. after a force-quit of app), everything on the desktop disappears EXCEPT for my wallpaper and the system never reboots
  • when viewing Finder windows in Column View, often it takes a loooong time for subdirectories to appear
  • lately, when I reboot, the grey screen with the Apple logo and rotating wheel stays for ... maybe 2 minutes or more? Then it goes to a blue screen for about as long before giving me my desktop
  • backup to Time Capsule (via WiFi) runs very slow and sometimes interferes with the network


Here's what I've done:


  • rebuilt permissions a million times
  • ran Repair Disk a hundred times (no problems)
  • ran Onyx and cleaned caches and Launch Svcs database and other things
  • ran Apple Hardware Utility (no problems)
  • pared down fonts that are loaded into the system at start-up


I have an older version of Disk Warrior that is showing my hard drive to be fairly fragmented. I'm wondering if I updated DW and de-fragged the hard drive, it might improve system performance (?) Someone recently told me that de-fragging is no longer necessary since OS does this on its own. I'm NOT a techie type person and am clueless about such things.


I have four internal 1-Terrabyte hard drives, none of which is more than 25% filled.


I'm still using Snow Leopard since I have apps that are not Lion-compatible.


Any ideas or suggestions?

Mac Pro Xeon 64-bit Workstation, Mac OS X (10.6.8), 16 GB 1333 MHz DDR3

Posted on Mar 20, 2012 4:25 PM

Reply
18 replies

Mar 31, 2012 5:16 PM in response to FatMac-MacPro

FatMac\>MacPro wrote:


Since DW doesn't fix files, just directories, all it can do is tell you about damaged files. One solution is a handy troubleshooting tool called AppleJack: http://applejack.sourceforge.net/ and http://sourceforge.net/projects/applejack/. It runs in single user mode so if your OS has problems, this can do some repair without having to first get to the desktop.

Downloaded AppleJack and started to read the ReadMe file. I have to admit that booting up in "single user mode" scares a bit since I've never heard of this ability, much less have done it.


I'm not highly technical when it comes to computers ... am I asking for trouble by going down this path?

Mar 31, 2012 7:17 PM in response to KatieOConnell

Katie \'OConnell wrote:


...I'm not highly technical when it comes to computers ... am I asking for trouble by going down this path?

I don't think so if you read through the ReadMe file (printing it is a good idea for when you're actually using AppleJack) and go slowly. Since you're using Snow Leopard as I am, it shouldn't be a problem, but in reading through the AppleJack user's help forum, there's some question about whether a wireless keyboard would work properly. I ordered mine with a wireless keyboard and track pad but have never used them, preferring the wired keyboard from my old G4 and a Logitech trackball. As you can see from the ReadMe and the screenshot of the AppleJack menu on the website, it does a variety of things. Since the issue here is corrupt preference files, I'd suggesting doing only the "validate preference files" option and then restarting when that's done. You'll find any corrupt Preferences in the Preferences (Corrupt) folder immediately following the Preferences folder in list view of the Users library folder.

Apr 1, 2012 12:59 AM in response to KatieOConnell


Katie \'OConnell wrote:


booting up in "single user mode" scares a bit



Naturally. My understanding is that AppleJack basically does a syntax check on .plists, using plutil. If that's correct, then you can use the script below, which does pretty much the same thing. Copy it and paste in AppleScript Editor, then run it. (Be patient, it's takes a while.) When it's done, you should have on the clipboard a listing of plists in your <~/Library/Preferences> which failed the syntax check or generated an error. You can paste in, say, TextEdit, and then track the problematic ones.


--script begins


set prefPath to path tolibrary folderfromuser domain

set prefPath to (prefPath as text) & "Preferences" as alias

set k to 0

set e to 0

set myPrefs to {}

set myResults to ""


tell application "Finder"

set bigList to every item of (the entire contents of prefPath) --whose name extension is "plist"

repeat with i in bigList

if name extension of i is "plist" then set myPrefs to myPrefs & (i as alias)

end repeat

end tell


repeat with i in myPrefs

set thePref to quoted form of POSIX path of i

try

do shell script "plutil -lint " & thePref

set theCheck to result

if theCheck does not contain "plist: OK" then

set theLine to thePref & return & return & result & return & return

set myResults to myResults & theLine & return

set k to k + 1

end if

on error

set theLine to thePref & return & return & "An error has occurred." & return & return

set myResults to myResults & theLine & return

set e to e + 1

end try

end repeat


"PLIST CHECK" & return & return

set mySummary to result

"Plists checked: " & ((count of myPrefs) - e) & return

set mySummary to mySummary & result

"Plists OK: " & ((count of myPrefs) - (k + e)) & return

set mySummary to mySummary & result

"Plists failed: " & k & return

set mySummary to mySummary & result

"Plists not checked due to errors: " & e & return

set mySummary to mySummary & result & return


set myResults to mySummary & return & myResults


set the clipboard tomyResults


--script ends

Will Disk Warrior Help These Issues?

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