10.5.2 Update and Available Files Space Error

OK, I as read some of the posts I have a new problem under 10.5.2 update. Prior to running software update I had almost 120 gb free on my iMac 20 (last years model) After downloading, the update FAILED as it indicated i had only 300mb free and the update requires 1.3 gb. It rebooted anyway and after coming back up I still only have a faction (1.5gb) free of disk free. I knew this couldnt be true and using both the terminal DU command a using a utility called 'WhatSize' I confirmed I am only using 100gb of my 250 gb drive. I tried a repair using disk utility yet nothing. It almost appears the FS journaling is wrong or something. Any suggestion on how to get my disk reporting the right amount of space and applying the update?
Many Thanks

I wanted to post an update on my own thread for a general sharing of information.
First, I ran a number of things to determine the delta. I ran the Verify Disk Utility--Result No change.
As I stated ran both the DU command and the "WhatSize" Utility, both indicating only 101gb used...
Finally decided to call AppleCare. After being on hold for the first 20 min and then dealing with a guy who did help at all for another 20 min, I was put back on hold for another 30min. The next person I spoke with had me try a few thigns (such as create a new 'Admin' Account and see how much Available disk space was showing under that account' Same amount....Finally he told me ai needed to do an 'Archive and Install' Well after rebooting into the Leopard DVD it woudl not allow that as I didnt have enough Disk Space. He then suggested backing the Users directory up and doing an Erase and Install. Not being overly fond of that I decided to do some additional research on my own.
Recognizing the 10.5 is really UNIX underneath, there had to be other ways to verify the root File System. recalling back from many years ago, I recalled a command similar to the Windows Chkdsk, called Fschk. Looking up how to run on MAC OS X i determined I could in fact boot into single user mode.
Geting to the command line, I ran the command to no avail....Drive still should only 1.5 gb free. and no errors running that command. HOWEVER>.........
If I now ran the DU command to 1 depth level '-d1' it showed my the Users folder at 224gb (different then the 58gb run when in my own admin account'
After some further digging I discovered a 119gb file under another account and specifically appeared tied to the iDisk of that account. I was unable to 'remove' the file and I didnt want to change the UNIX permissions to access it so I rebooted, and opened that specific account. Upon login it started a process that indicated it was Compacting the iDisk.Sparsebundle account....after about 10 min---the file was compacted and viola...back to my 126gb free.
So, what I determined is that this account was in fact logged in while System Update was run on the Admin account. During the update and reboot it didnt properly shut that account down and the iDisk seemed to grow exponentially....
bottom line: I fixed the problem with some more thorough investigation and WITHOUT a Erase and Install as recommended by AppleCare...that seems to have been the easy way out for them and would have been the hard way out for me having to reinstall all my apps etc. Since MAC OS is really unix there are so many ways to fix things without reinstalling...How many people really reinstall UNIX in production environments at the littlest problems....
Message was edited by: jrjeffOH

Similar Messages

  • Trying to install the new itunes update and it keeps saying error could not install itunes. Currently I am running windows 7. Any advise to fix this problem.

    Trying to install the new itunes update and it keeps saying error could not install itunes. Currently I am running windows 7. Any advise to fix this problem. This is doing this when installing itunes/quicktime, safari 5, mobileme control panel, and the software update itself. The itunes version is 10.3.1

    That suggests that the installer is getting damaged during the download.
    I'd first try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/itunes/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • I bought a new itouch 5, and when I plugged it in to get the updates it could not update and I got an error code

    I bought a new itouch 5, and when I plugged it in to get the updates it could not update and I got an error code

    And that error code is?

  • HT201210 I was updating to the latest software thru iTunes and it failed to update and giving an unknown error (3). My phone stopped working what to do. Please help...

    I was updating to the latest software thru iTunes and it failed to update and giving an unknown error (3). My phone stopped working what to do. Please help...

    Hi there bugzystein,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    -Griff W.

  • Troubleshooting Updates and Corrupted Files

    Since a few days ago, my computer is not downloading its updates and its says that the downloaded files may have been corrupted and although I download them again and again, it still says the same thing. Also my computer isnt reading the adobe flash player nor silverlight.

    FrancisClass,
    your image shows that three of these four updates have a “Restart” button rather than an “Update” button. After restarting your MacBook Pro, does Software Update still show you these same updates? If it does, are they shown with “Update” buttons, or with “Restart” buttons?
    Regarding Flash Player and Silverlight, are you using Safari? If so, have you ensured that its plug-ins (such as Flash Player and Silverlight) are allowed to run? Open Safari’s Preferences, select the Security tab, and make sure that the “Internet plug-ins: Allow Plug-ins” checkbox is checked.

  • How to Update and XML file

    Hi,
    I'm reading an XML file using SAX api, now based on some calculations, i want to add a new Element inside the same XML file.
    <?xml version="1.0" encoding="UTF-8"?>
    <types>
    <type super = "City">
    <t>Faro</t>
    <t>Porto</t>
    <t>Helsinki</t>
    </type> 
    </types>Now in the above XML snippet, i want to add an new sub element <t> Islamabad </t>, inside types.
    Following is the point in the code where i'm stuck:
    for (int typeID = 0; typeID < typeList.size(); typeID++) {
                        Element type = (Element) typeList.get(typeID);
                        String superTypeStr = type.getAttributeValue("super").toString();
                        if (superTypeStr.equalsIgnoreCase(comboValue)) {
                             Element t = new Element("t");
                             t.addContent(typeValue);
                             //NOW HOW TO ADD THIS <t>, inside a matched type element (in this case "city"), and write it into the xml file
                             break;
    typeList is a List object, which i get using : typeList = types.getChildren("type");Hope i have explained the problem clearly, writing an XML fime from scratch is easy. but in my case i want to update an existing xml file with a new element entry.
    The XML file should need to be updated like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <types>
    <type super = "City">
    <t>Faro</t>
    <t>Porto</t>
    <t>Helsinki</t>
    <t>Islamabad</t>
    </type> 
    </types>--
    Regards Suleman

    hey mate, i remember when i had a similar issue before. I ended up using parsing the document using DOM instead of SAX. The reason being that i wanted to update the XML file and if i parsed the document using DOM i had a handle on the document object so i could subsequently update it. But the drawback is that the entire xml structure is parsed into memory, as opposed to SAX which im sure you know is event driven and memory friendly. I would use SAX for the simple process of parsing the xml file to either examine, or print out the content or both.Perhaps consider DOM?

  • Downloading software updates and largish files

    Hi--
    Ever since bringing in my old home computer (imac 10.4.5) to use on the office network, I am having trouble getting software updates or other downloads such as Palm software and audible.com audiobooks. Small downloads work fine, as does my mail and net access, but software update and other application downloads stall about two minutes in. Our ISP and tech consultant insist I am connected correctly and that they do not limit download size. It all worked fine at home. What am I doing wrong?

    Note, before updating any software, read carefully my FAQ* to avoid surprises:
    http://www.macmaps.com/upgradefaq.html
    There a download manager built-in to Safari. Just download your updates from http://www.apple.com/swupdates/
    And open the Downloads window to manage your download.
    Given the size of the updates, you may want to consider gettin an airport card for your iMac, and occasionally taking it in to a WiFi hotspot mentioned on http://www.jiwire.com/ to download your updates. Package it carefully in the original packaging it came in, or get an iLugger bag to carry it. Or you can put the update on a flash drive and bring it to your iMac if you also have a notebook computer. Some stores also let you bring your own blank CD to burn the update as well. Check with the stores in your area. Dialup has a lot of problems when software downloads get over 10 MB getting a reliable copy of the download because of errors on the line.
    * Links to my pages may give me compensation.

  • Microsoft 2003 Server not able to do Microsoft Updates and giving a "404 error file or directory not found"

    Can anyone provide a fix or suggest fixes for this issue and is there another way around getting updates from the site that i can try.  Not sure why it keeps coming up with this error each time i click the microsoft update option.
    thanks
    Nexusxox

    Hi Nexusxox,
    In addition, To troubleshoot the winodws updates issue, please follow these methods:
    1.  You should be able to access the Windows Update website. If you can't access this site, try to use the
    Windows Update Troubleshooter to fix the problem.
    Refer to:
    http://support.microsoft.com/kb/2497281#manually
    2.  Recreate SoftwareDistribution folder:
     1) Stop the Automatic Updates and Background Intelligent Transfer Service services.
     2) Delete or rename the %windir%\SoftwareDistribution folder.
     3) Restart Automatic Updates and Background Intelligent Transfer Service services.
    3.  Reset Windows update:
    How do I reset Windows Update components?
    To do so: Important this section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that you follow these steps carefully. For added
    protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following article number to view the article in the Microsoft Knowledge
    Base: 322756 (http://support.microsoft.com/kb/322756/)
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • HT4623 When I go into settings and general the option to download ios7 is not there when it then says "checking for updates" and I recieve an error

    When I go into settings and general the option to download ios7 is not there when it then says "checking for updates" and I recieve an error

    What version of iOS is the device currently running?
    In order to update over the air on the device, it must be running iOS5 or higher.

  • Can't update and download get stopped error = .3259?

    I hace tried several times to update and download from pc to ipad and get "network timed out - check network connections, etc.
    I turned off firewall in Mcafee and windows firewall but did not help.  what else can i check?

    YIPPEE...I figured this out and all is fine now.  I found one other anti-spam notice to turn off and then it downloaded fine.  My confidence is restored.  Cancel this question.

  • Problem: ipod server could not be contacted, i went to control panel, lan settings, ck'd auto detect and went back to i-tune to update and got the same error message, any help is appreciated

    Error message: Ipod software update server could not be contacted. I went to control panel, lan settings, clk'd auto detect settings and ok. When i went back to i tunes and clk's update, i got the same error. Any help is appreciated.
    Rand221

    See the previous posts on the right side of this page under the heading "More Like This" that have you same error message.

  • I'm using my Iphone 3GS, when I want to update the software to IOS5. It not allow me to update and prompt me the error message say that connection error or server problem. Anyone have any suggestion.

    I'm using Iphone 3GS, When I want to update the software to IOS 5 (latest software). It not allow me to update and prompt the error message say that the connection problem, time out on server. Any suggestion on this matter. Have try different date before.
    Thanks.

    Try temporarily disabling your firewall and antivirus software and try again...
    See here for Connection Issues
    http://support.apple.com/kb/TS1379
    From Here
    http://www.apple.com/support/itunes/troubleshooting/

  • Software Update and Hard Drive Space Driving me crazy...

    Evening,
    I have been experiencing this issue for a long time and I don't know what to do. Ever since February 14, 2011 (a SL reinstall) my MacBook Pro for some reason is not recovering the HDD space after Software Update downloads are completed. Before updating Safari and applying the security update my HDD space was 381.79GB, when the update files were downloaded before reinstalling the space went down to 381.72. When the updates were installed and the system rebooted, I expected that the HDD space would have increased but it remained at 372.72GB. I know is not that much of HDD however, I remember that before the HDD space would increase after a software update was applied since SU would delete the installer packages. I have tried 3 full reinstalls with zero out option and unfortunately the problem is still there. Do you think I have a software problem? or hardware problem?
    Thank You!

    Forgot to post: I don't know what is causing the problem, could it be a damaged drive or other hardware or is it a software problem? I have tried the following:
    Reinstalled OSX more than 3 times each with Zero Out option activated and the problem keeps resurfacing...
    Repaired Permissions
    Repaired the drive with OSX Install disc
    deleted caches, plist both in finder and SU
    Safeboot
    Things to still try out:
    Reinstall OSX with Zero Out option but with another install disc (I got a replacement from apple care).
    and the final one throw my MBP out the window...
    Last one is just a joke but I am lost on this issue that has persisted everytime since February 14...
    Message was edited by: vea1083

  • Is anyone else having conflict with 10.8.2 update and audio files?

    I recently updated from 10.8.1 to 10.8.2 (big mistake).  Now my digital interface has all of these random clicks and pops.  Worse yet, when I try and play my audio files (Digital Performer) or ITUNES that music stops, starts, stutters and is basically unlistenable.  Before the update everything ran smoothly.  I talked with the tech support for my digital music application (Digital Performer) and he thinks there is a conflict with the latest Apple update too.  Is anyone else having these problems?
    To get back to 10.8.1 do I have to wipe the hard drive and re-install everything?  I use my Mac for music production so this is killing me.  Any ideas?

    I once again reloaded 10.8.2, all of the current firewire, USB, and printer drivers (why not make sure those are up to date too, what have I got to lose?).  Checked the cables, the Mac firewire ports etc.  No change.
    So I bought a cheap back up firewire drive (Western Digital, My Passport Studio-about $100).  That worked perfectly on the firewire port of my Mac Pro.
    I hooked up my MOTU 828 firewire audio interface into the Western Digital's second firewire port, and everything works perfectly.
    I wish I had known that daisey chaining devices would solve my problem before I spent $500 on a new firewire interface.
    If you are having similar problems with firewire connection, then try daisey chaining through a device that has no problems.  Who knew a solution could be so simple?

  • ITunes update and WAV files

    I recently updated my iTunes and since then my WAV files playback very distorted. Not being a mac boffin I tried to retrieve my old iTunes through my timemachine. This told me that I didn't have enough privileges with iTunes to carry out the function.....now I can't access my iTunes at all. How can I sort this all out?

    VictorSMiller wrote:
    I have a number of WAV files on my PC (from an Olympus digital recorder). Before iTunes version 8, the played just fine. Starting with version 8, they all play extremely noisy and choppy. I've tried playing selected files on Quicktime and they all play just fine. Clearly some sort of bug was introduced in version 8. Has anyone else encountered this?
    Victor
    Yes, that problem with WAVs from voice recorders has been reported here several times. Haven't seen anything about a fix. Converting the files to MP3 will probably help.

Maybe you are looking for

  • Hostapd - client sees network but can't connect

    I have a mobile phone Samsung S5230W with WiFi capability, and a laptop HP Compaq nx7400 with Broadcom BCM4311 wireless card. I'm trying to share an Internet connection between those two devices, but I can't because i receive 'authentication failed'

  • Problem with total page numbers in Scripts

    Hi, I have a problem with total number of pages in the Script. I have a script of 15 pages. On every page, I am using &PAGE& of &SAPSCRIPT-FORMPAGES(C)&. Problem is : I am getting only single digit for SAPSCRIPT-FORMPAGES as long as the page number r

  • Using window.alert in a jsp file

    I am creating a website, when a user is found invalid I want to display an alert. The code is below     if( invalid )          window.alert( "Invalide user" );          response.sendRedirect( "login.jsp" );    }  The problem is that window.alert is n

  • Vendor balance confirmation form.

    Hi Experts, I want to change the vendor balance confirmation form. The form is F130_CONFIRM_01 .I have copied this form and changed according to my requirment and now i attatched it to the program . Here i have to display on total vendor balance(cumi

  • Issue with a lov

    Hi, i have a lov called amt_tag which picks up the value form the record group query(query is based on database tables). when i run this query in sql prompt or with the help of pl/sql editor it gives me the result within seconds.....but when i try to