Running out of Gigs of disk space within seconds

I can't pin-point the exact reason, but recently, a certain operation has caused my 69 Gig root partition to suddenly jumps from less than 30% used to 100% used...twice.  I believe it has to do with yaourt, but it could just as easily be flash or slim at this rate.
Yesterday, when I had this problem, I ran "pacman -Sc", deleted all the old log files, and finally, rebooted.  This heavily reduced the load that time (100% to 19%), but today, running "pacman -Scc" and restarting turned out to only reduce the used percentage from 100% to 95%.  Any ideas why this is happening, where to amend it, and how to prevent this problem in the future?

jasonwryan wrote:
If it is yaourt related, it may be /tmp.
You need to narrow down where the disk space is being eaten up:
df -k
Like this?
$ df -k
Filesystem 1K-blocks Used Available Use% Mounted on
udev 10240 212 10028 3% /dev
/dev/sda7 72075600 64670416 3743924 95% /
shm 1284280 308 1283972 1% /dev/shm
/dev/sda5 253871 16188 224576 7% /boot
/dev/sda8 51605116 7032088 41951640 15% /home
/dev/sda3 41943036 22088176 19854860 53% /mnt/share
/dev/sda2 136215132 57500848 78714284 43% /mnt/windows
I've noticed var, usr, and opt seems to be pretty large.  The other big folders are mounted from separate partitions.
$ sudo du -hs /*
5.7M /bin
14M /boot
212K /dev
7.2M /etc
du: cannot access `/home/japtar10101/.gvfs': Permission denied
6.6G /home
75M /lib
4.0K /lib64
16K /lost+found
4.0K /media
75G /mnt
2.3G /opt
du: cannot access `/proc/4971/task/4971/fd/3': No such file or directory
du: cannot access `/proc/4971/task/4971/fdinfo/3': No such file or directory
du: cannot access `/proc/4971/fd/3': No such file or directory
du: cannot access `/proc/4971/fdinfo/3': No such file or directory
0 /proc
3.8M /root
9.9M /sbin
20K /srv
0 /sys
740K /tmp
5.5G /usr
124M /var
$ sudo du -hs /usr/*
354M /usr/bin
235M /usr/include
2.2G /usr/lib
190M /usr/lib32
4.0K /usr/libexec
216K /usr/local
12K /usr/man
10M /usr/sbin
2.5G /usr/share
54M /usr/src
$ sudo du -hs /var/*
5.4M /var/cache
4.0K /var/empty
12K /var/games
112M /var/lib
4.0K /var/local
12K /var/lock
6.0M /var/log
0 /var/mail
4.0K /var/opt
120K /var/run
104K /var/spool
12K /var/tmp
$ sudo du -hs /opt/*
5.0M /opt/doukutsu
517M /opt/sauerbraten
112M /opt/secondlife
431M /opt/warsow
1.3G /opt/xonotic
Last edited by japtar10101 (2011-03-12 06:29:30)

Similar Messages

  • Prompt : running out of start up disc space

    I was downloading from my Canon camcorder and just about the last minute of the tape this prompt comes up, running out of start up disc space. What does this mean? It stopped downloading.
    Thanks

    Hi
    start up disc space
    Does just referes to the hard disk that contain Mac OS and from which You start-up
    Your Mac.
    Even if You store Your movie on an external hard disk - the (often) internal boot hard disk
    can be too full.
    I set for a minimum of 25Gb free space and most things runns OK.
    (1 hour miniDV tape needs 13Gb to be stored and by editing it it can multiply easily
    meaning - movie editing is a very hard disk space demanding task.)
    as external hard disk - for my movies I use a
    • FireWire connected one (USB/USB2 doesn't always perform well)
    • *MUST BE Mac OS Extended formatted* - UNIX/DOS/FAT32/Mac OS Exchange DOESN'T WORK !
    This You can do by Yourself - BUT it ereases the drive - So it's good to start by doing this before doing anything else (on it).
    Yours Bengt W

  • The save failed due to out of memory or disk space?

    What does this mean? I have a paper to right as well as other task that I must complete. This popped up while I was trying to save a file through Microsoft word.

    Google "The save failed due to out of memory or disk space? Mac"
    http://ask.metafilter.com/214916/Bring-back-the-doc
    http://texmylife.blogspot.com/2012/06/save-failed-due-to-out-of-memory-or.html
    There are more google matches, so if these do not help, then you might try the google search.  Also this appears to be a Word issue, so maybe the Microsoft forums would be a good place to explore

  • How to find out how much hard disk space is available

    how to find out how much hard disk space is available

    Right Click on your Mac Hard Drive Icon and Choose  Get Info 
    Look at Available...
    If your Mac Hard Drive is not visible on your Desktop...
    Goto...
    Finder > Preferences > General Tab > and Check Hard Disk.

  • Merge slow & running out of rollback and tem space

    I try to merge temp table to target table everyday.Txt files are loaded in temp table every day( 800000 rows) this need to merge to target table every day
    it takes 4 to 5 hrs , temp table dont have index, target tabe have index-- idx_hpp
    and it have stats below is the syntax which i am using pls help how i can solve this
    problem-- slow, runnnig out of temp space,rollback
    merge /*+ index( IDX_hpp) */ /*+ PARALLEL ( hpp,10) APPEND) */ into hpp s
    using
    (SELECT * FROM hpp_temp) t
    on
    (s.b_code=t.B_CODE
    and s.i_no = t.i_no
    and nvl(s.V_TYPE,'X')=nvl(t.V_TYPE,'X')
    and nvl(s.s_invoice,'X') = nvl(t.s_invoice,'X'))
    --and  nvl(s.I_RECEIVER,'X') = nvl(t.I_RECEIVER,'X'))
    --and substr(t.i_no,1,3) not between 'C' and 'Z')
    when matched then
    update /*+ INDEX (IDX_HPP) */
    set s.REF_V_NO = t.REF_V_NO
    ,s.I_CNOTE=t.I_CNOTE,
    s.O_STORNO=t.O_STORNO
    where b_code=t.B_CODE and i_no = t.i_no and NVL(V_TYPE,'X')=NVL(t.V_TYPE,'X')
    and NVL(s.REF_V_NO,'X') != NVL(t.REF_V_NO,'X') and
    nvl(I_RECEIVER,'X') = nvl(t.I_RECEIVER,'X')
    and substr(t.i_no,1,3) not between 'C' and 'Z'
    WHEN NOT MATCHED then
    insert
    (s.I_NO,s.B_CODE,s.V_TYPE,s.S_INVOICE,s.I_DATE ,s.I_RECEIVER,s.I_RECEIVER_ADDRESS1
    ,s.I_RECEIVER_ADDRESS2,s.I_RECEIVER_ADDRESS3,s.I_RECEIVER_ADDRESS4,s.I_RECEIVER_ADDRESS5
    ,s.I_RECEIVER_ADDRESS6,s.D_C_ACCOUNTNO,s.REF_V_NO,s.I_CREDITNOTE,s.O_STORNO,s.ADDR_FLAG
    ,s.VAT_NO,s.C_CODE ,s.DEB_CRED_SIGN
    ,s.DANZAS,s.PAYMENT_TERMS_DAYS,s.DUE_DATE,s.USER_NAME ,s.VAT_COUNTRY_CODE ,s.VAT_PERCENTAGE ,s.ADDTL_VAT_PERCENTAGE ,s.LOCAL_CURRENCY_CODE
    ,s.AMT_TAXABLE,s.AMT_TAX_FREE,s.AMT_VAT_MWST,s.AMT_ADDTL_VAT ,s.I_CURRENCY_CODE ,s.EXCHANGE_RATE ,s.INV_AMT_TAXABLE,s.INV_AMT_TAX_FREE
    ,s.INV_AMT_VAT_MWST,s.INV_AMT_ADDTL_VAT ,s.TOTAL_AMT ,s.OTHER_CHARGE_TABLE_ADDRESS,s.CASH_FLAG,s.CHECKNO_CASH_REMARKS ,s.VAT,s.OVB
    ,s.DOCUMENT_DATE_PAY ,s.ZIP_CODE,s.STATE,s.CITY ,s.INTERFACE_FLAG ,s.AMT_ALLOCATED_LOCAL_CURRENCY,s.VALUTA,s.PAYMENT_REDUCTION_PERCENTAGE
    ,s.COST_SPEC_NO ,s.CURRENCY_FLAG ,s.LAYOUT_NO,s.A_INVOICE,s.C_SPECIFICATION ,s.M_I_DATE ,s.CREATION_DATE,s.euro_tot_amt )
    values(
    (t.I_NO,t.B_CODE,t.V_TYPE,t.S_INVOICE,t.I_DATE ,t.I_RECEIVER,t.I_RECEIVER_ADDRESS1
    ,t.I_RECEIVER_ADDRESS2,t.I_RECEIVER_ADDRESS3,t.I_RECEIVER_ADDRESS4,t.I_RECEIVER_ADDRESS5
    ,t.I_RECEIVER_ADDRESS6,t.D_C_ACCOUNTNO,t.REF_V_NO,t.I_CREDITNOTE,t.O_STORNO,t.ADDR_FLAG
    ,t.VAT_NO,t.C_CODE ,t.DEB_CRED_SIGN
    ,t.DANZAS,t.PAYMENT_TERMS_DAYS,t.DUE_DATE,t.USER_NAME ,t.VAT_COUNTRY_CODE ,t.VAT_PERCENTAGE ,t.ADDTL_VAT_PERCENTAGE ,t.LOCAL_CURRENCY_CODE
    ,t.AMT_TAXABLE,t.AMT_TAX_FREE,t.AMT_VAT_MWST,t.AMT_ADDTL_VAT ,t.I_CURRENCY_CODE ,t.EXCHANGE_RATE ,t.INV_AMT_TAXABLE,t.INV_AMT_TAX_FREE
    ,t.INV_AMT_VAT_MWST,t.INV_AMT_ADDTL_VAT ,t.TOTAL_AMT ,t.OTHER_CHARGE_TABLE_ADDRESS,t.CASH_FLAG,t.CHECKNO_CASH_REMARKS ,t.VAT,t.OVB
    ,t.DOCUMENT_DATE_PAY ,t.ZIP_CODE,t.STATE,t.CITY ,t.INTERFACE_FLAG ,t.AMT_ALLOCATED_LOCAL_CURRENCY,t.VALUTA,t.PAYMENT_REDUCTION_PERCENTAGE
    ,t.COST_SPEC_NO ,t.CURRENCY_FLAG ,t.LAYOUT_NO,t.A_INVOICE,t.C_SPECIFICATION ,t.M_I_DATE ,t.CREATION_DATE,t.euro_tot_amt)
    where substr(t.invoice_no,1,3) not between 'C' and 'Z';
    commit;

    hi this is my trace after takeout the hint
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 5
    Rows Row Source Operation
    1 MERGE JOIN CARTESIAN (cr=0 pr=0 pw=0 time=182 us)
    1 MERGE JOIN CARTESIAN (cr=0 pr=0 pw=0 time=147 us)
    1 FIXED TABLE FULL X$KSUXSINST (cr=0 pr=0 pw=0 time=37 us)
    1 BUFFER SORT (cr=0 pr=0 pw=0 time=93 us)
    1 FIXED TABLE FULL X$KVIT (cr=0 pr=0 pw=0 time=39 us)
    1 BUFFER SORT (cr=0 pr=0 pw=0 time=37 us)
    1 FIXED TABLE FULL X$QUIESCE (cr=0 pr=0 pw=0 time=15 us)
    SELECT substr(name, 0, 512), DECODE(type, 1, 'Boolean', 2, 'String', 3,
    'Integer', 4, 'Filename', ' '), substr(value, 0, 512), ISDEFAULT,
    ISSYS_MODIFIABLE,substr(description,0,512)
    FROM
    v$parameter2 ORDER BY name
    call count cpu elapsed disk query current rows
    Parse 3 0.01 0.00 0 0 0 0
    Execute 3 0.00 0.00 0 0 0 0
    Fetch 9 0.04 0.05 0 0 0 783
    total 15 0.05 0.06 0 0 0 783
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 5
    Rows Row Source Operation
    261 SORT ORDER BY (cr=0 pr=0 pw=0 time=17521 us)
    261 HASH JOIN (cr=0 pr=0 pw=0 time=28376 us)
    1183 FIXED TABLE FULL X$KSPPI (cr=0 pr=0 pw=0 time=3580 us)
    1185 FIXED TABLE FULL X$KSPPCV2 (cr=0 pr=0 pw=0 time=5951 us)
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 5
    Rows Row Source Operation
    261 SORT UNIQUE (cr=0 pr=0 pw=0 time=18603 us)
    261 NESTED LOOPS (cr=0 pr=0 pw=0 time=21648 us)
    261 HASH JOIN (cr=0 pr=0 pw=0 time=16944 us)
    261 FIXED TABLE FULL X$KSPSPFILE (cr=0 pr=0 pw=0 time=17905 us)
    1183 FIXED TABLE FULL X$KSPPI (cr=0 pr=0 pw=0 time=3562 us)
    261 FIXED TABLE FIXED INDEX X$KSPPCV (ind:2) (cr=0 pr=0 pw=0 time=3008 us)
    SELECT host_name, instance_name,startup_time,logins,archiver, log_switch_wait
    from
    v$instance
    call count cpu elapsed disk query current rows
    Parse 4 0.01 0.00 0 0 0 0
    Execute 4 0.00 0.00 0 0 0 0
    Fetch 8 0.00 0.00 0 0 0 4
    total 16 0.01 0.00 0 0 0 4
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 5
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 5
    Rows Row Source Operation
    1 MERGE JOIN CARTESIAN (cr=0 pr=0 pw=0 time=527 us)
    1 FIXED TABLE FULL X$KCCDI (cr=0 pr=0 pw=0 time=316 us)
    1 BUFFER SORT (cr=0 pr=0 pw=0 time=207 us)
    1 FIXED TABLE FULL X$KCCDI2 (cr=0 pr=0 pw=0 time=163 us)
    SELECT BANNER
    FROM
    V$VERSION WHERE BANNER LIKE '%Oracle%'
    call count cpu elapsed disk query current rows
    Parse 4 0.01 0.01 0 0 0 0
    Execute 4 0.00 0.00 0 0 0 0
    Fetch 8 0.00 0.00 0 0 0 4
    total 16 0.01 0.01 0 0 0 4
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call count cpu elapsed disk query current rows
    Parse 14 0.01 0.01 0 0 0 0
    Execute 15 0.00 0.03 0 0 0 0
    Fetch 15 0.00 0.00 0 30 0 13
    total 44 0.01 0.05 0 30 0 13
    Misses in library cache during parse: 2
    Misses in library cache during execute: 2
    how i can check and trouble shoot and make it faster

  • How to find out the unused disk space?

    Hi,
    I want to know if there is any way possible by which I can find out the amount of disk space that is available. I have to write an application that checks for the disk space under Windows and Unix platforms. If anything is possible please let me know as soon as possible.

    I know that there is no Java API for it. I tried using the Runtime.getRuntime().exec("cmd /c dir") method to find out the available disk space. But it returns the value through the InputStream which would have to be parsed to get the unused disk space value. If there is a way to write a shell script (for Unix / Linux) and a batch file (for Windows), please do let me know of the same. Also please let me know how to execute the script / batch. Awaiting your reply.

  • How can I find out how much disk space I have free?

    I want to download a large file from the internet (22.21 GB). I have deleted everything on my computer that I don't think is necessary to keep, but how do I find out exactly how much disk space my computer has free so I can download?

    Hello again Rolanda,
    Barry is right on the money here ( Hello Barry! )
    You need to delete / remove some files off that computer as soon as possible. Start with things you never use. Then onto things that can easily be replaced.
    I would not even attempt to copy to CD's until you have at least 5 or 6 GB free!
    Post back if you need more.
    Regards
    Ian

  • Running out of space on free tier due to run history

    Hi there,
    I have a quite complex experiment that deals with substantial data. I have run it several times and now suddenly get a message that says that my 10GB space allocation on the free tier is used up. I'm not quite ready to move to the standard tier and would
    rather want to clean up my free tier environment. I believe that the storage "wastage" is due to my run history. The problem is that there is no mechanism available to me for purging the run history of my experiment. I am also not allowed to "save
    as" the experiment anymore due to the space issue, which would have given me a fresh version of the experiment without the run history. Any advice?
    Regards,
    Albert

    Hi AK,
    It really behaves as I described. "Save", "Save As" and "Run" all gave the "please upgrade to Standard tier" message in my case. It might be rare that people run out of the 10GB storage space on the free tier, but
    I can assure you that this happened to me - and I believe it was due to my run history.
    The good news is that I managed to solve the problem!
    Step 1: Copy all R scripts into a notepad (for backup purposes)
    Step 2: Take a screenshot of the experiment (for backup purposes)
    Step 3: Select whole experiment with mouse and "copy" onto some kind of magical clipboard that understands Azure ML (for backup purposes)
    Step 4: Log into the same account a second time and go to the experiment listing page
    Step 5: On the first login: Perform a "save as" and say "no" when you see the above mentioned error message. Note that the experiment is now displayed with the new name on the workspace, albeit not saved yet.
    Step 6: On the second login: Delete the problematic experiment (which gets rid of the run history!)
    Step 7: Hold your breath!
    Step 8: On the first login: "Save" experiment. Since there is now space available again the save is successful!
    Step 9: Be glad that you did not end up needing Step 1-3.

  • Exp/imp no data just structure uses a ton of disk space

    I am attempting to migrate a schema from one db instance to another and have run into a problem with disk space. All I want to migrate is the structure. So I am exporting with out the data. Yet the tablespace datafiles grow to a size as if they actually held data. I don't have the disk space for this and would like to know if there is a way around this problem. Also, can anyone provide some insight into why the space would be taken up even though no data is being imported.
    I am not a DBA but our DBA suggested I include a compress=n parameter. However, this doesn't appear to solve the issue.
    Thanks,
    Jason

    Go Google for "Databee" and then search their home page for the DDL Wizard
    OK, forget that: just go visit http://www.ddlwizard.com/
    (It is tricky to see on their home page).
    Feed it your row-less export dump files and turn them into a bunch of 'create xxxx' statements. Edit those statements so they aren't asking for stupid INITIAL extent sizes. Run those statements. Then do a standard import using ignore=y. That will get your tables created empty and small and the subsequent import will get all your other schema objects back.
    The DBA that suggested compress=n is on the right track: compress=y will mean import will seek to create empty tables as big as the fully-populated table currently is, pre-allocating all the space it thinks the table will eventually need given the amount of data that might, one day, be inserted into it.
    Compress=n will seek to create the table with the smallest requested extent size and no more than that: row inserts will make it grow big later on, but that growth is left to happen when it needs to happen.
    The only other potential fly in the ointment is, as someone else said, the fact that if you're importing into a tablespace that has been created 'extent management local uniform size 100M', then the mere fact of creating a completely empty table will cause 100M of space to be consumed. You would be much better off making sure your tablespaces are created 'extent management local autoallocate': then you start of with small space allocations and only get bigger when you really need it.

  • Low on disk space, and some dim choices by me

    Hello
    I am running a bit low on disk space so video editing is a bit of a worry for me! I have a DV camcorder and import hours of footage, only to use a minute or two of that to create a "1 song length" mini film.
    After I was happy with a few projects I thought I would delete the raw event files and then as the video had been shared with itunes, and I could no longer make any edit, I went a step further and deleted the project in imovie. Now the problems start :o) It was only after doing this that I realised it would be a good idea to share the finished movie with .mac "My Galley" thing, and media browser. But as the option to do this was in the imovie project I'm a bit stuck. Oh how I wish I had used that time machine thing :o)
    For one movie that I really wanted to share on .mac I ended up reimporting the movie back into imovie as a new event then creating a new project. Imagine how silly I feel now!
    So I know what not to do! But I'm still a little unclear on what is the best approach. I want to build a movie, share with various places, but delete the raw files and use as little disk space as possible after I am happy with the movie.
    Any tips?
    Regards
    Steve

    I don't have iMovie '08, so not sure if this still works in that version or not. But as an iMovie '08 user, you can download and install version 6 which will allow the following...
    One way to go about it is to import your tapes, giving you hours of footage. Now do a rough edit of the parts you think you may want to still use by putting clips down on the timeline, rough editing out parts you know you don't want, etc. Do not add transitions, titles, etc. at this time. Just clips to the timeline and rough cuts. So now your timeline is say 15-30 minutes of stuff out of the original hours of stuff. Save the project. Close the project.
    Start a new project. Open the folder where the old project is. Right click on the project icon and pick "Show Package Contents" which will open the folder structure of the project. In the folders you should have the project reference QT movie of the same name as you project, eg. MyProject.mov which will be a somewhat small file (kilobytes). You can verify this is your old project as you edited down by simply opening it in QT player and reviewing it to make sure it is just the 15-30 minute rough edit you did.
    If it is the right file, drag and drop it onto your new project window. iMovie will now import the footage needed. The nice thing about this is it should only import those 15-30 minutes, not the original hours of footage. Once in the new project and you are satisfied you have the footage you wanted. Save the project and you can now trash the old project, empty the system trash and free up all that drive space. The new project will only have the 15-30 minutes of footage and not all the extra footage from the original tapes.
    Disclaimer: I am still an old iMovie 4 user, so also not first hand knowledgeable about iMovie 6. You might be able to simply copy clips off the timeline from the old project to the new project, but I am not sure if that brings over just the footage in those clips, or if it makes a full copy of the original media files (this bringing over the entire clips including the parts you cut out). I am sure other iMovie 6 users can jump in here and help refine the process for iM6 shortcuts I don't know about.
    Patrick

  • How to find Free disk space using Java program ?

    Hi friends,
    I need to find out the Free Hard disk Space to alert the user and send them mail if hard drive is about 85% full.
    i am developing databackup program in which i have to check it , if hard drive is fulled with 85% or remain left space is less email sent to user to notify and delete older backups.
    give me solution using java program...
    please
    Help me i need it in recent...

    Hi friends,
    I need to find out the Free Hard disk Space to alert
    the user and send them mail if hard drive is about
    85% full.
    i am developing databackup program in which i have to
    check it , if hard drive is fulled with 85% or remain
    left space is less email sent to user to notify and
    delete older backups.
    give me solution using java program...
    please
    Help me i need it in recent...

  • Shrink system tablespace, or any laternate to reduce disk space usage!

    Dear All,
    My Database is 11gR1 and Linux is the operating system.
    My System tablespace is consuming 24,000 MB disk space, The user i have created that contain all the objects is another tablespace.
    I just want to know is there any way to shrink system tablespace or anything else that can be done to reduce its size?
    Plus what are the directories from where we can delete logs and other files that do not affect the running of database. My disk space is 99% full and i have to delete files.
    Regards, Imran

    misterimran wrote:
    Dear All,
    My Database is 11gR1 and Linux is the operating system.
    My System tablespace is consuming 24,000 MB disk space, The user i have created that contain all the objects is another tablespace.
    I just want to know is there any way to shrink system tablespace or anything else that can be done to reduce its size?
    Plus what are the directories from where we can delete logs and other files that do not affect the running of database. My disk space is 99% full and i have to delete files.
    Regards, ImranFirst, do this:
    sql> select distinct owner from dba_segments where tablespace_name = 'SYSTEM';Make sure the only objects in the SYSTEM ts are owned by legit users of that ts - SYS, SYSTEM, and OUTLN
    As for log files .. look at your listener log. look at your alert log. look at any trace files in adump, bdump and udump that are old enough you don't want them any more.

  • How do I recover iMovie files corrupted by running out of disk space?

    I've been using iMovie HD 6.0.3 to create recordings using a webcam from time to time. Usually I just leave the camera on during presentations. On two different occasions I ran out of hard disk space, and have been unable to playback the videos I've recorded. One is very important and I'd like to save it if at all possible. The video data is definitely on the hard drive (I have a 9 gig file), however, attempts to play it using Quicktime Pro or iMovie fail. iMovie acts as if the movie contains no data even though over 2 hours were recorded. (Quicktime Pro responds with a Mac OS Error -1409)
    Apparently if iMovie runs out of disk space during a recording, it is unable to save or later recover the file properly. While it seems to store the video data, perhaps the file is missing some sort of critical markers or pointers.
    Does anyone know of a way to recover the video from this file? Perhaps there is a tool to somehow pull the video stream out of the corrupted file that was saved by iMovie?
    Please let me know if you have any ideas! It is very important that I recover these files. Thanks!

    Hi QuakingBog - What happened when you discovered this situation?
    1. There was an error displayed on the screen saying it was almost out of disk space.
    Did iMovie remain open, with the file showing in the Clips Pane or Timeline?
    2. The clip I was recording went from showing the image which was on the camera and elapsed time (which had been over 2 hours just before then) to showing just black and showing a total record time of 0:00 as soon as it ran out of disk space. Even though lots of data was recorded, it went back to looking as if nothing was recorded.
    I would be surprised if iMovie 'saved' it of its own accord (it has no auto-save feature). Did you hit Save? If there is a 9 GB file, then obviously somehow something was saved.
    3. Yes, I hit save. I also hit "Save As" after this and saved it to an external hard disk with more free space as well. I can't get anything to play from either place.
    Have you checked within the project 'package' to see if there are any files actually saved? To check, Control-Click on the project (with the star on it), and select Show Package Contents. Anything in the Media folder? Look for a .mov file in one of the folders - does it play?
    4. Yes, there are files in there. There is a Clip 01.mov that is 9.29 gb, but it won't open or play.
    In cache there are...
    Timeline Movie.mov 8KB
    Thumbnails.plist 4K
    Timeline Movie Data.plist 4K
    In media there is also...
    My Great Movie~ 4K
    My Great Movie 4K
    Any further suggestions would be very appreciated based upon this additional information. Thanks for helping!

  • Running out of Disk Space. Need HELP !

    I have transfered a number of VHS tapes to imovie which has chewed up a lot of disk space. I would like to save the raw footage to a DVD disk after extracting key scenes from the tape.
    My understanding is that as imovie receives footage it converts the footage into clips. My goal then I would think would be to give the clips associated with the tapes saved to DVD. My questions
    1. I cannot find the clips on my hard drive ! Where are they on my hard drive ?
    2. In what format do the clips exist - quicktime ?
    -note I want to keep the raw clips so I can use them in the future.
    3. Is there an advanced guide which will help me understand more about how iMovie and iDVD work ?
    4. Is the a good FAQ guide.

    Hi Rob - the clips are stored within the imovie project 'package'. You can open that package by Control-Clicking it and then choosing 'Show Package Contents'. The clips are then found within the Media folder. Note that it is very unwise to fiddle with the contents of that folder as it can break the link between them and the project to which they are related.
    If you want to use some of the clips in other projects, you can drag and drop them from one open iMovie window to another project's open window ... or do a Copy and Paste. You could keep your original project as the clip-storage location, from which you copy and paste into other projects. Note that because of the non-destructive editing method that imovie employs, plus the space-demanding DV format (13 GB per hour of video) you can quickly run out of storage capacity. Many people buy a large capacity external drive (formatted for Macs!) to overcome this issue.
    The clips are in DV format which is the lossless format suitable for editing purposes - it is the format that imovie HD is designed for.
    The iMovie Help menu is worth using, plus these tutorials:
    http://www.apple.com/support/imoviehd/
    Here is a very good book:
    http://www.amazon.com/s/ref=nbssb/103-8577706-6553428?url=search-alias%3Dstripbooks&field-keywords=imovie+6&x=0& y=0

  • Running out of disk space - External Drive Advice

    Hi,
    I've been importing all of our HDV video in "Large" fomat (Not the original or full size). We have an Apple TV so wanted to get the qaulity up for our large TV.
    Anyway, we have lots of digital pics, huge iTunes library and now I'm starting to run out of disk space with all of my iMovie imports.
    I would like to buy a huge external drive to help offload:
    Is there any reason I should be concerned about storing my video on external drive? Any editing performance issues?
    I use time machine, if I buy a huge external, can I split it in half and use part for time machine and part for imovie?
    Just curious.
    Thx,
    Brent

    I agree that you can make this work. Your external drive must be formatted as Mac OS Extended (journaled). You can do this as you are creating your 2 partitions in Disk Utility, if it has a different formatting when you buy it.
    If you want to move your Events from your internal drive to your new external drive, you need to do it from within iMovie so you do not break the links to your projects. To do this, open iMovie and click VIEW/EVENTS BY VOLUME. You should be able to see a small icon in your Event Library List for your external drive. You can Command-Drag your event icons in the event library list to this icon for your external, and all the links to your projects will be preserved. (hold down the command key while dragging). If you do a simple drag and drop, it will copy not move.

Maybe you are looking for