Disk & File Size Not Calculating

I have an installation of 10.5.5 on a external firewire hard drive I use to boot machines for backups. For some reason it is not calculating the hard drive sizes. When I check Get Info for a hard drive it says --KB.
It wont let me transfer data to another drive, stating there is not enough free space, even when there is. Can't even move an empty folder to a volume that has over 120GB free.
Any ideas? I have tried to repair permissions already.

Might the drive be locked or otherwise set to read only? Also, while system permissions may be fine, are those for the drive set correctly?
All of this can be checked in the Get Info tab.

Similar Messages

  • How to avoid db_recover "file size not a multiple of the pagesize" error?

    I am writing some backup and recovery scripts for a Berkeley DB application. I'm using the Oracle supplied db_hotbackup.exe and db_recover.exe executables (DB 4.5.20). My very first recovery unit test has resulted in the following error from db_recover:
    "file size not a multiple of the pagesize"
    What is the cause of this error, and how do I create my backup files to avoid this problem?

    This error message indicates that a file that should be made up of pages of a certain size is not a multiple of that size. For example, if a database file configured with 4KB pages was found in a 10KB file, you would get this error message.
    Can you check that however the scripts manipulate the database files, they don't add or remove any bytes from the end?
    Regards,
    Michael Cahill, Oracle.

  • File Sizes Not Showing Up In Finder

    Well lately spotlight has been really slow and sizes for files have not been showing up in spotlight, what could be the problem?
    Here is a screenshot:
    http://img169.imageshack.us/img169/1299/picture1av9.png

    I don't think your picture has anything to do with Spotlight. My Applications folder shows up the exact same way. Mac OS X applications aren't usually a single item, they're "packages" with items and folders inside. To get folders and packages to show their size, you'll have to change the "View Options" from the View menu. Check the box on to "Calculate all sizes". I would probably change the dialog box to reflect the changes to "This window only". Otherwise the Finder will be re-calculating the size of everything in every window. That could slow things down a bit.
    -Doug

  • Recovery disk/files size

    My notebook OS is Windows 7 Home Premium 64-bit.
    I was going to run HP recovery manager and save the recovery files to a 16 GB USB flash drive.
    To my surprise the recovery files size is over 19 GB!
    I do not want to burn, carry and safeguard five DVDs all my life.
    USB flash drive is much safer and portable.
    Please provide detailed instructions on how to get this 19 GB down to 14 GB or less.
    Any useful response will be much appreciated.

    good idea in that hard drives are slightly better than DVDs from safety point of view.
    but since laptop's hard drive is out of question (last time i needed the recovery disks because laptop's hard drive failed) i would have to find atleast two other hard drives and occupy about 20GB space on both and hope that both do not fail if and when the time comes.
    i would still prefer USB flash drive or SDHC card.
    is there no one in HP smart enough to reduce the size?
    or is it such a cash cow that HP does not want to let it go?
    i am sure if an option to choose what gets included is provided then the user can reduce the size substantially on his/her own.
    or alternatively HP can provide an option to create the disks with bare minimum required to recover.
    if user wants/needs then he/she can always download the rest from HP website later on.
    all this just seems a very avoidable waste of so many people's time and effort.

  • How to reduce jpg file size, not pixel dimensions?

    I am preparing images for the web and I really have 2 questions: one about gifs, and one about jpgs.
    My standard procedure is to reduce the image to the desired pixel dimensions at 600 dpi
    That gives me a crisp small image. then I either use it as is if the file size is low enough (I try for under 600 kb) or convert it to a gif with the save for web and devices tool.
    So here are my 2 questions (I will count this solved with either answer)
    1) When I convert to a gif I have the 4 boxes: one with original size, the other 3 with options but often the options are too low res for me How do I change my 3 options to start at a higher gif res?
    2) If I try to reduce the file size of the jpg in the image size box I set the resolution lower ( 400, 300), which lowers the pixel dimensions and the filesize, but I don't want to cahnge the pixel dimensions. And  If I reset the pixel dimensions back to the size I want them, even though it is a lower resolution the file size doesn't change. How to reduce jpg file size using only the resolution, not pixel dimensions?  PS I have tried messing with checking and unchecking the 3 little boxes( scale styles, constrain proportions, and resample) but nothing has worked.

    Gif is not a great filetype, especially if you want a crisp image. What are your pixel dimensions?
    For web, it makes no difference what the dpi is, only the final pixel dimensions so once you have that as you want, use 'Save for Web and Devices' and you can lower the quality - 100% being max and 0% being lowest. I wouldn't save anything below 55%. For a 600kb image, your dimensions must be rather big.

  • Help with compress function--file sizes not substantially reduced

    I've tried to use the compress function (right click "compress" or Finder/File/Compress) a few times on files from a variety of different programs. While this results in creating a zip file, the file size is not substantially reduced (e.g., from 43.4 MB to 42.9 MB). Is there a way to change how much a file is compressed?
    Thanks in advance for your help.
    Eric

    Not all material is very compressible. Text files and word processor documents usually compress very well. Photos and movies don't compress much if at all due to the nature of their structure (in some cases, using a general-purpose compressor can actually make a file larger). So it will depend on what it is you're compressing.

  • Applescript: file size not recognized as changed in script

    This is difficult for me to explain.
    I'm trying to delay the start of a Folder Action because it's starting before the file has time to finish writing.  So I've written a script to try and sample the file size, wait a few seconds then sample the file size again, compare the two sizes and as long as they are different I figure the file is still being written.  However when I implement the code below I don't see a difference in the two file sizes.  And the delay command does not seem to be working.  I put the display dialogs and the beeps in there for troubleshooting purposes.
    on run
              tell application "Finder"
                        set myDelta to 1.0
                        set mySize1 to 1.0
                        set muSize2 to 1.0
              end tell
              repeat until myDelta = 0.0
                        tell application "Finder"
                                  set myFile1 to item 1 of folder "abc" of desktop
                                  set mySize1 to size of myFile1
      display dialog mySize1 as string
      beep
                                  delay 8
      beep
                                  set myFile2 to item 1 of folder "abc" of desktop
                                  set mySize2 to size of myFile2
      display dialog mySize2 as string
                                  set myDelta to mySize2 - mySize1
      display dialog myDelta as string
                        end tell
              end repeat
    end run
    Any suggestions?
    Thanks.

    I find that if I'm copying a big file from a thumb drive Lion will hold off until the file is finished writing (e.g. around 1 minute), however if I'm bouncing a file from ProTools (i.e. 20 min)  the Folder Action starts immediately and the desired action does not work (even with your code or my code.)
    Maybe you might want to try another version of the Folder Action script, where I've added a “with timeout” statement:
    on adding folder items to this_folder after receiving added_items
        set thisFile to item 1 of added_items
        with timeout of 3600 seconds
            tell application "Finder"
                activate
                repeat
                    set size1 to size of thisFile
                    delay 1
                    set size2 to size of thisFile
                    if size2 = size1 then exit repeat
                end repeat
                display dialog "Done!" with icon 1
            end tell
        end timeout
    end adding folder items to
    Message was edited by: Pierre L.

  • Estimated File Size not updating

    I have a project in vers. 5.5 that I am exporting.
    I am saving as a Windows Media File and am going from 1080 to 720.  File size is critical, however the Estimate File Size in Encoder seems to get stuck.  For instance, if I half the frame rate I see no difference in file size.  I would think that there would be significant reduction in estimated file size if half the frames are being tossed.  Am I not understanding something about how this works?

    There are only two things that significantly affect file size - duration and bitrate.  Changing other specs may affect quality, but those two determine file size.

  • SQL 2008 R2 - Mirror sys.master_files data file size not updating

    Hi,
    I have an odd issue where the primary server is SQL 2008 R2 SP1 and the secondary is SQL 2008 R2 SP2. I have databases mirroring between these servers. We recently moved the log file on the secondary to a different drive. The file sizes match and are updating
    exactly the same between both servers. The mirror monitor shows the mirroring successful and everything is up to date. When we check the sys.master_files tables on the mirror, the size of the data file has not updated since moving the log file. Tried restarting
    SQL but not joy.
    Anyone have any ideas?
    Thanks
    Rob

    Hi,
    I would say you wait for some time it would get reflected I have seen this with sys.master_files they are updated late. Like when you delete heavy data, data would be gone but space captured by data would be  released slowly due to internal ghost operation
    cleaning and after this operation completes sys.master_files catalog is updated I guess this is what happening here as well , this is pure speculation. I will stick to this thread please look for a day and then update again
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • Reduce file size not working

    I have Adobe Acrobat 7 Professional.  I scanned an 868 page text only document using two different professional scanners at my work, Xerox Docucolor and Canon DR-6030 Scanner.
    The scanned settings were 300 dpi, black and white, duplex.  No photos, not even line art.
    1.  The result was a 32 mb file.  I don't know why it's so big.  It should be no more than 4-6 mb. 
    2.  Furthermore, the file size remained unchanged after I used the reduce file size command.
    I am baffled, any help would be appreciated.
    Thank you.

    Try the PDF Optimizer. You could also try a ClearScan OCR. If you did OCR, but did not do ClearScan, then you are simply looking at pictures of your scan. The ClearScan will replace photos of text with actual text and a text file. You have left a lot out of what you have done in the scan. Also, scanners or the translations often give you a 24-bit graphic file even if it is really only B&W. Often the best results for OCR are gotten from a Gray Scale form in my experience. So, the structure of your PDF may be the issue. The PDF Optimizer also has an audit feature to show where most of the memory is being used.

  • Save for Web file size not updaing

    I am trying to save out a graphic for the web and I'm noticing that the little number indicating file size is not updating..did something change?
    OS X, CS6 Mac Pro, 16GM RAM Yosemite, 10.10.2
    Thank you!

    It should work. Maybe it needs a reset.
    Open Save for Web, press the Option key on your Mac, the Cancel button changes to Reset. Click on it and it should clear it to defaults.
    Alternate:  Reset Photoshop preferences: Hold down cmd-opt-shift, start Photoshop and click on Yes when the "delete Photoshop settings file" dialog comes up.

  • 16-bit to 8-bit round-trip file size not amending.

    If I hit shift-apple-O and send a 12mb RAW out to PS (.psd, but get the same with .tiff preset), then simply change it to 8-bit then save, why doesn't the File Size in the Aperture's metadata view reduce to ~36mb rather than the 72.7mb which the same file processed yet kept at 16-bit does. Is this a bug with 1.5.6, or is there a sneaky way to refresh Aperture's indexing?
    Forgiveness applied for if this is one of those dumb ones, only I couldn't find any reference to this using 'Search Forum', honest.
    Thanks
    - KHPhoto

    This is a bug with 1.5.6, it's fixed in 2.0 and above.
    Ian

  • Smallest File Size not so small

    Hi in CS2 here..
    Exporting a .pdf. The InDesign file has 3 colored rectangles, some text, a few lines at 1pt. & two copied vector logos from Illustrator (no images or tiffs). In Pagemaker the smallest file size was always like 30K or something.... In InDesign I am getting almost 200k. What am I doing wrong?
    Do I have to change something in the export dialog? I made the Bicubic Downsampling to 72, Compression JPEG & Image Quality - Minimum.
    (Also, why do Small File .pdfs print different in color than regular ones from Reader?)
    Thanks.
    Jules

    > two copied vector logos from Illustrator
    Get rid of them, then File > Place to import the Illustrator artwork.
    Minimize your use of transparency.
    You can knock a bit off that by editing the Output section of the export dialogue. Change Profile Inclusion Policy to Don't Include Profiles.
    Try printing to a PostScript file and distilling in Acrobat Distiller.
    > Also, why do Small File .pdfs print different in color than regular ones from Reader
    Define "regular ones".

  • File size (not size on the disk)

    It seems to me that the file-info subVI (or getfilesize for labview 8) gives the size of the file on the disk, not the real size. Did anyone investigate this issue? If, so, and the size is the one on the disk, do you have any suggestion for the real size (except going to the end with seek and retrieve the offset). Windows properties windows contains this info, so it's probably possible to have it without opening the file.
    thanks for your comments and replies

    Well I use LabVIEW 7.1.1 on WinXP and both "fill/dir size" and [open+get end of File+close] returns the same size in bytes and this size is the real size and not the size on disk...
    PS : the file I tested was a LabVIEW VI...
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • Why does my .sparseimage file size not reflect the amount of data insde of it?

    SUMMARY
    I have an uncompressed sparese image file that has over 35GB of data inside of it, yet the image file always claims to be taking up 4.29GB of space on the drive on which it resides.
    DETAILS
    The image file was created with Disk Utility useing the following settings:
    When I mount the image and Show Inspector for the contents, I see this:
    However, when I Get Info on the image file itself, mounted or not, I get this:
    I was expecting that the size of the file would be reported as roughly the same as the size of it's contents. 
    What gives?
    -t

    Hello, and thank you for the new reply.
    I'm sorry to be slow with my responses, but I am wrapped up in the task of sorting out what has turned out to be over 100GB of photos and videos that I shot over the last ten years and have backed up all over the place ... I'm sorting through all of it and getting it all organized for the first time.
    OK, here are the results of ls -lR@ /Volumes/Bin/
    $ ls -lR@ /Volumes/Bin/
    total 8382080
    -rwxrwxrwx@        1      <username>  staff  4291448832 Nov 12 09:04 00000.MTS
        com.apple.ResourceFork           286
    drwxrwxrwx        32      <username>  staff        1088 Jan 30 15:38 Misc
    drwxr-xr-x       1638      <username>  staff       55692 Mar  3 00:02 Images
    drwxr-xr-x         922      <username>  staff       31348 Mar  3 00:02 Videos
    That'st the first bit, and there there are a zillion pages listing the contents of the top level directories. (Over 17k files)
    Again, when I mount the sparseimage file, I see everything that I expect to see inside of it ... my backups of thousands of photos and hundreds of video files.  I can view all of them, so the data is definitely there.  This is why I am confused as to why the sparseimage file itself is being reported as so small!
    I just noticed this ... there is a large video file in the root of the mounted image; 00000.MTS which happens to be 4.29GB in size ... everything else is located in one of the three directories that are listed.  Now, the sparseimage  happens to be reported as 4.29GB in size.  That can't be a coincidence.   Is the OS reporting the size of the sparseimage file based on the total reported contents of only the root directory?  If so, that would explain why it shows as being 4.29GB.  That would, however, be kind of a bug, no?  Should it not report the size of the sparseimage as being the total size of all of the contents of the image?
    As a test, I just moved that file into the Videos directory and then unmounted the image.  bin.sparseimage is still reported as being 4.29GB. 
    Thanks,
    -t

Maybe you are looking for

  • Is there a way to create a report of topics with missing images?

    If I move all images in a project to a different directory, is there a way to print out which topics have missing images? I would like to have all images in the HTMLHelp folder, since this is the default folder that images are copied to when I insert

  • HT1766 If I back up my iphone info and then need the data but do not have another iphone, how do I retrieve the info?

    If I back up my iphone and then need to gather the info from the docs, how do I get the data without another iphone? Can I download the iphone info to an ipad to read it or will it affect my ipad?

  • Access to the ES Workplace SCM System?

    Hello, I use the HU2 SAP ERP 2005 ECC 600 system for developing different scenarios combining scripting languages and SAP. For further tests, I tryed to logon to the HU8 SAP SCM 5.0 system but my password doesn't work. It doesn't work for the HU5 and

  • Hosting Your iWeb Site From Your Mac

    If you don't have a .Mac account or you don't want to pay a monthly fee to host your new website you created with iWeb, you can use OS X's built-in Apache Web server. To accomplish this, follow the steps in the link below. Hosting Your iWeb Site From

  • Consolidating libraries on my two macs

    I have one iTunes account, but I purchase music from both my macs, thus I have different songs in my "purchased music" folders. I have two questions: 1) Is there a way to sync my computers so they both reflect all my purchases in the "purchased folde