Unknown files hogging my hard disk of space!

Recently, I purchased Roxio's Toast Titanium and installed the 7.1 update with it as well, along with Mac The Ripper.
I only began realising that after ripping using Mac The Ripper and then burning on blank DVDs using Toast that my hard disk was being eaten by all these DVD files.
Why is this happening? I've used trashed all VIDEO_TS and AUDIO_TS folders and chose the Secure Empty Trash option using OnyX and Maintenance. These files should be gone forever.
However, despite restarting, my hard disk is still being hogged by these file, but I when I look them up, all their folders are empty.
The whole point of me buying Toast was so that I could clear my hard disk of space by burning onto blanks. Now... it seems I might as well buy a 1 Terabyte external hard disk at the rate these files are hogging my bandwidth.
I'm extremely frustrated here and its depressing cos I dont have cash for an external right now... Any help please?
I would be extremely grateful. Thanks a bunch!

Do you use FileVault?
I had a similar problem downloading 20GB of ISO files and burning them to CD. I had deleted the files and emptied the trash, but the space wasn't recovered. You can check by opening Terminal and typing:
du -h .Trash
This will show the side of the hidden Trash file. Mine was quite large, but I had emptied it, and needed to wait for FileVault to prompt me to recover the space after logging out. Unfortunately, FileVault didn't ask me this time. It took several sessions before I was prompted, and my space was recovered.

Similar Messages

  • Deleting the old Archive Log Files from the Hard Disk

    Hello All,
    I want to delete the old archive files of Oracle. These files are very old and consuming very huge disk space.
    Is there any way by which I can delete these files from the Hard Disk?
    Can I directly delete them using the Operating System Command?
    Will it cause any dilfference to the normal functioning of my Database?
    If I need to delete these files, do I need to bring the database down?
    Please guide me.
    I need to do this activity to make some space free on the Hard Disk.
    Thanks in advance.
    Himanshu

    Hi.
    Keep archived logs from time of last backup and forward to currenct time on disk together with the backup itself. And keep older archived logs together with older warm/cold backupfiles on tape as long as there is enough capasity or following your recovery strategy. This way you might be able to roll forward a recovery without restoring these files from tape which often the faster.
    Older archived logs can be deleted manually, with scheduled OS script or automatically with RMAN.
    Good luck
    rgds
    Kjell Ove

  • I have the latest Mac Air 13" and I have a Seagate 500MB external hard disk I cant copy or Cut any files on the hard disk and I cant even delete any files. I have the settings as Read and Write in the get info tab. Please help

    I have the latest Mac Air 13" and I have a Seagate 500MB external hard disk I cant copy or Cut any files on the hard disk and I cant even delete any files. I have the settings as Read and Write in the get info tab. Please helpand also note that my hard drive was formatted on a Windows 7 Laptop.

    thats the problem, its in MSDos (Fat) or NTFS for Windows.
    Options.....
    1. offload all that data on the HD onto your PC, THEN format the HD in EXFAT for use on BOTH PC and Mac for read/write.....then reload all (or as you need) that data back onto the HD
    2. get another HD, and format it for Mac OSX extended journaled.
    FAT32 (File Allocation Table)
    Read/Write FAT32 from both native Windows and native Mac OS X.
    Maximum file size: 4GB.
    Maximum volume size: 2TB
    You can use this format if you share the drive between Mac OS X and Windows computers and have no files larger than 4GB.
    NTFS (Windows NT File System)
    Read/Write NTFS from native Windows.
    Read only NTFS from native Mac OS X
    To Read/Write/Format NTFS from Mac OS X, here are some alternatives:
    For Mac OS X 10.4 or later (32 or 64-bit), install Paragon (approx $20) (Best Choice for Lion)
    Native NTFS support can be enabled in Snow Leopard and Lion, but is not advisable, due to instability.
    AirPort Extreme (802.11n) and Time Capsule do not support NTFS
    Maximum file size: 16 TB
    Maximum volume size: 256TB
    You can use this format if you routinely share a drive with multiple Windows systems.
    HFS+     ((((MAC FORMAT)))  (Hierarchical File System, a.k.a. Mac OS Extended (Journaled) Don't use case-sensitive)
    Read/Write HFS+ from native Mac OS X
    Required for Time Machine or Carbon Copy Cloner or SuperDuper! backups of Mac internal hard drive.
    To Read HFS+ (but not Write) from Windows, Install HFSExplorer
    Maximum file size: 8EiB
    Maximum volume size: 8EiB
    You can use this format if you only use the drive with Mac OS X, or use it for backups of your Mac OS X internal drive, or if you only share it with one Windows PC (with MacDrive installed on the PC)
    EXFAT (FAT64)    ------Can read/write from both PC and Mac
    Supported in Mac OS X only in 10.6.5 or later.
    Not all Windows versions support exFAT. 
    exFAT (Extended File Allocation Table)
    AirPort Extreme (802.11n) and Time Capsule do not support exFAT
    Maximum file size: 16 EiB
    Maximum volume size: 64 ZiB
    You can use this format if it is supported by all computers with which you intend to share the drive.  See "disadvantages" for details.

  • What does the "yellow section"  "other" files mean under hard disk storage?

    what does the "yellow section"  "other" files mean under hard disk storage?

    david just to right of your initial post is a column entitled "More Like This." Check out some of the posts that seem similar.

  • MMO best practice. Download music and heavy files to users hard disk?

    MMO best practice. Download music and heavy files to users hard disk?
    I have just downloaded a Hello Kitty MMO app for research (for my kid of course).
    I am developping my English teaching app with LOADS of classical music, mp3 sentences and heavy background bgs. Would the best idea be for client to download these to their hardisk ie I would not need to stream them and therefore save a fortune on bandwidth charges from my ISP???
    Cheers

    I see what you mean ie: they have to get the file to their computer one way or another BUT
    a. If they are going to repeatedly use that file ie: a custom cursor or classical piece of music every week when they log on then it would be better for them to have it on their hardisk wouldn't it? If not, they would have to download it every time they log on. I take it that's why the hello kitty site makes you download 130 megas so you have everything on your hardisk, ie: you will be reusing all those assets MANY times in the future. The experience wil be very FAST as you have it on your local disk and needn't have to wait for streaming.

  • Problems with indexing files from my hard disk

    Hi everybody,
    I'm a newbie to oracle and i'm trying to index files from my hard disk with oracle text. After i created a simple text file (path: 'c:\tmp\test.txt') and filled it with a short text, i executed the following lines without an error message:
    grant connect, resource, ctxapp to myuser;
    create table myuser.testtab(id number primary key, text BFILE);
    create or replace directory test_dir as 'c:\tmp';
    grant read on directory test_dir to myuser;
    insert into myuser.testtab (id, text) values (1, BFILENAME('test_dir','test.txt'));
    create index myuser.idx_test on myuser.testtab(text) indextype is ctxsys.context;
    the record in the table testtab is stored, but the index table is empty. After i tried to get information about the bfile with java i got an SQLException with the Error-Code ORA-22285 after executing the following lines:
    BFILE file = null;
    try{
    rset = stmt.executeQuery("select text from testtab where id = 1");
    if (rset.next()) {
    file = ((OracleResultSet) rset).getBFILE(1);
    System.out.println("Result from fileExists: " + file.fileExists()); //This is the line where the exception is thrown
    } catch (Exception e){
    e.printStackTrace();
    I would be obliged for any information to this problem.
    Thanks in advance,
    Chris J.
    PS: i'm using Oracle 11.2g on Windows 7

    I got your problem. Drop all the directory,table and index. Log in as "myuser" and do all the things. See the demo below. Don't use myuser.object name When executing the commands from "myuser".
    SQL> conn sys@xe as sysdba
    Enter password: ******
    Connected.
    SQL> create table hr.testtab(id number primary key, text BFILE);
    Table created.
    SQL> create or replace directory test_dir as 'c:\';
    Directory created.
    SQL> grant read on directory test_dir to hr;
    Grant succeeded.
    SQL> insert into hr.testtab (id, text) values (1, BFILENAME('test_dir','test.txt'));
    1 row created.
    SQL> ed
    Wrote file afiedt.buf
      1* create index hr.idx_test on hr.testtab(text) indextype is ctxsys.cont
    SQL> /
    Index created.
    SQL> select * from ctxsys.CTX_INDEX_ERRORS;
    ERR_INDEX_OWNER                ERR_INDEX_NAME                 ERR_TIMES
    ERR_TEXTKEY
    ERR_TEXT
    HR                             IDX_TEST                       31-AUG-10
    AAAEjaAABAAAKsKAAA
    DRG-50857: oracle error in drstldef
    ORA-22285: non-existent directory or file for FILEEXISTS operation
    SQL> conn hr@xe
    Enter password: **
    Connected.
    SQL> select * from CTX_USER_INDEX_ERRORS;
    ERR_INDEX_NAME                 ERR_TIMES ERR_TEXTKEY
    ERR_TEXT
    IDX_TEST                       31-AUG-10 AAAEjaAABAAAKsKAAA
    DRG-50857: oracle error in drstldef
    ORA-22285: non-existent directory or file for FILEEXISTS operation
    SQL> conn sys@xe as sysdba
    Enter password: ******
    Connected.
    SQL> drop directory test_dir;
    Directory dropped.
    SQL> conn hr@xe
    Enter password: **
    Connected.
    SQL> create or replace directory test_dir as 'c:\';
    Directory created.
    SQL> drop table testtab;
    Table dropped.
    SQL> create table testtab(id number primary key, text BFILE);
    Table created.
    SQL> set serverout on
    SQL> DECLARE
      2   v_file BFILE := BFILENAME ('TEST_DIR', 'test.txt');
      3   BEGIN
      4   IF DBMS_LOB.FILEEXISTS (v_file) = 1 THEN
      5  DBMS_OUTPUT.PUT_LINE ('File exists.');
      6   ELSIF DBMS_LOB.FILEEXISTS (v_file) = 0 THEN
      7  DBMS_OUTPUT.PUT_LINE ('File does not exist');
      8  ELSE
      9   DBMS_OUTPUT.PUT_LINE ('Unable to test existence');
    10   END IF;
    11   END;
    12  /
    File exists.
    SQL> insert into testtab values (1,BFILENAME ('TEST_DIR', 'test.txt'));
    1 row created.
    SQL> create index idx_test on testtab(text) indextype is ctxsys.context;
    Index created.
    SQL> select * from CTX_USER_INDEX_ERRORS;
    no rows selected

  • Unable to capture files into external hard disk because of 'drop frames '

    I haven't been able to capture footage from my DV camcoder thru firewire to an external hard disk in FCP because i get a message saying 'drop frames were detected'.
    This happens when i selected this external hard drive as the scratch disk in FCP.
    When i deslect it and select my user hard disk as the scratch disk, the capturing works perfectly. But i just want to capture all my capture files into the external hard disk, not my user hard disk.
    The external hard disk's speed is 3500 - could that be the problem? Is it too slow? Its connected thru USB and it is Mac Os Extended Journaled. Its got 250gb of space, so that's not the issue.
    Can anybody help me?
    Thank you.

    No, its a Panasonic gs180, a really good camera.
    The camera itself is connected to my computer through firewire. Its the hard disk enclosure that is connected to my emac through USB. Anyway, i'm sure that's not the problem, casue like i said, the capturing works fine when i use my user hard disk as the FCP scratch disk.
    The problem i have is when i try to capture footage from my camera to the external hard disk enclosure. When i press 'capture now' and press play, the playback stutters and a messsage appears saying, "drop frames detected" and the capturing stops.
    I feel like i need to adjust something in FCP itself - like a preference or something - just not sure what.
    Thnx for your suggestion though and if you know what i should do, please let me know.

  • I tried to empty the trash, full of back up file from my hard disk and it just says: "The operation can't be completed because an unexpected error occurred (error code -8003)"

    I have an external hard disk of 319.73 GB that I use as back up memory and where I put all the movies and other files that I can't leave on the computer as they occupy too much memory space . One day I was deleting all the previous dated back up to have more space on it , but had to stop the trash for doing it cause it was taking too long and now every time that I try to empty the trash it just says "The operation can’t be completed because an unexpected error occurred (error code -8003)" and even if I press CONTINUE it won't empting it . I'm not really pratical with this things and I tried already to find out the solution here and on Google but apparently nobody ever had a similar error code and I don't know what else to do.
    I've a MacBook Pro with a Mac OS X 10.6.8 Version.
    Thanks again for the help and sorry if I did some english mistakes !
    PEACE & LOVE

    Hey donnie90,
    It seems like this article might be the best for helping you address this issue:
    You can't empty the Trash or move a file to the Trash
    http://support.apple.com/kb/ht1526
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Music Files Deleted After Hard Disk Failure and First Sync After Hard Disk

    Hi,
    I recently had a hard disk failure and lost all of the data on my hard drive. I replaced the hard drive and reinstalled all of the software including iTunes. I am running Windows XP Home. The first time I plugged my iPod Nano into my computer after the hard drive replacement it synced to iTunes and since iTunes had no music files it deleted all of the music files on my Nano. How do I get them back and why on earth would iTunes do such a stupid thing??? My Nano contained many songs that I bought from iTunes and I want to get them back. I have found some third party software that will undelete the deleted files but it costs $69. I don't feel that I should have to pay to correct a defective feature in iTunes. Does Apple have an undelete utility? Can I redownload the songs that I purchased from iTunes?

    *The first time I plugged my iPod Nano into my computer after the hard drive replacement it synced to iTunes*
    When you connected did you get a message that your iPod was linked to another library, and then press Erase and Sync? When an iPod is set to update automatically and you connect to a computer with an empty iTunes and accept the message above it will erase the originals completely (as you have discovered). Also as you've seen, none of the recovery programs are particularly cheap so you have to decide if in your particular circumstances it's worth it to get your songs back. It may be if you have a lot of purchased tracks which you will have to pay to download again. If they came primarily from your CDs then it's most likely not as you can re-rip them.
    *Can I redownload the songs that I purchased from iTunes?*
    If you didn't make a back-up of your purchases to restore from then I'm sorry to say that the policy on lost purchases is that you have to pay to download them again:
    "Once a Product is purchased and you receive the Product, it is your responsibility not to lose, destroy, or damage the Product, and Apple shall be without liability to you in the event of any loss, destruction, or damage." iTunes Store: Purchased content can be downloaded only once
    You could try contacting the iTunes Music Store Customer Service and you might be able to persuade them to sanction a second free download. There have been occasional reports in the iTunes forum of this happening, however just be aware that they are not under any obligation to do so. If you click on any of the links on this page you'll find a space at the bottom to email your query: iTMS Customer Service

  • How much hard disk free space?

    My mini is used almost exclusively as a media "appliance", hooked up to a large flat panel TV. Installed on the mini itself is the operating system and little more. Attached to it are several (currently 4) large (1 TB) firewire hard drives crammed with movies and TV episodes (I have digitized my extensive DVD collection with Handbrake plus I have nearly stopped buying new DVDs in favor of downloading from iTunes).
    My question is how much (what percentage) of these external drives needs to be left empty in order for them to operate with reasonable efficiency. They are virtually "read only" in that once I have uploaded a video file to them, it sits there until and unless I want to watch it (or unless I decide to download it to my MacBook and/or iPad to take with me for watching on trips).
    I recall reading years ago that one should keep 10% or so of a hard disk free. Elsewhere, I read it should be as much as 20%. But it strikes me that that would mainly apply to a start-up drive that is constantly being read and written to, not a drive like mine that mainly just stores files and occasionally reads from them.
    To re-emphasize, I keep much of my start-up drive free except what's required for the OS so the issue isn't that but just the external storage drives. I hate to waste as much as 400GB of space (100GB on each of four 1 TB drives).

    I think your argument has some validity, but since you have a lot of time and effort invested in this project, I personally wouldn't try to cut things too close to the bone.
    With drives of that size, I'm comfortable with the 10% rule; perhaps even 5%.
    However, with the price of drives falling, perhaps gradually transitioning to larger capacity drives would be a good idea.
    My understanding is that most modern drives dynamically re-allocate data from sectors that the drive controller senses are going to fail -- so having an adequate percentage of "wiggle room" makes sense to me.
    "Wiggle room" may also come in handy if you ever need to rescue a drive using a utility like DiskWarrior, which needs space to rebuild directory structures.

  • Hard Disk free space dissapears and reappears

    Hi There,
    Lately I've been noticing some very strange fluctuations in the reported "free space" on my HD. I let the disk get quite full (~1GB free or so) and then starting backing up and transferring data to my external HD. But when I started deleting these items the free space on the Hard Disk didn't increase. Then, one week later, it spontaneously goes from 2GB free to 13GB free (which I assume is the right ballpark).
    Any thoughts as to what might be going on?

    Your diagnostic priority, in order, is Disk Utility (Repair Permissions and Repair Disk), then Disk Warrior (a much more powerful version of the Repair Disk function in Disk Utility).
    Mac Janitor is not really going to help much here. Many Mac users turn to Mac Janitor in a knee-jerk way, like the old "rebuilding the desktop" on OS 9, but if your problem is loss of gigabytes of disk space, there is simply no way the plain text logs maintained by MacJanitor can expand to gigabytes in size unless they are writing to the logs constantly without a break.
    Part of your free space fluctuation may be explained by the automatic virtual memory swap file management does, as VM swap files come and go. The less RAM you have, especially under 1GB, the more likely you have VM swap files building up. When you have more than 10GB disk space free, the swap file movements aren't too noticeable. When you get down below 5GB free, swap files take up proportionally more of your free space and have a much higher chance of destabilizing the machine.

  • Not able to delete file from external hard disk

    I connected my external hard disk to my macbook pro. But am not able to delete any file since it says the file cannot be deleted when I move it to trash. Could you let me know how to delete a file from the external hard disk?

    How is your HDD formatted? NTFS? FAT?
    Did you write files with rights? When you strike +I on any file, you can see its rights; if you're read-only, you may change your file's rights.

  • HT202796 I can not copy, modify, any file from my Mac to external hard disk,  of the seagate brand (fast HDD Portable Drive)  I don´t know  if I need some software to copy and  modify files in my hard disk external ? Could you help me please?

    Hello I have a iMac with 3.4 GHZ intel core I7, memory 16 GB 1333 MHZ DDR3, and OS X 10.9.4 Software.
    I have problems when I try to copy or modify any file from my MAC to MY PORTABLE DRIVE/DISQUE (external hard disk).
    my external hard disk have the next features:
    brand: Seagate
    4TB
    I do not know if I need some software such as: paragon or I need to configure my MAC,
    Please help me..
    Thanks a lot

    Click on it, choose Get Info from the File menu, and check the format.
    If it's formatted as NTFS, reformat it as MS-DOS, exFAT, or Mac OS Extended (Journaled) as desired, or install software such as Paragon NTFS on the computer.
    If it's formatted as FAT32 or exFAT, use the Disk Utility's Repair Disk command on it; this may also happen for a flash drive which is about to fail.
    If it's formatted as Mac OS Extended, click Authenticate and provide your administrator password, or change the permissions on that specific folder in its Get Info window.
    (110769)

  • Cannot copy files from external hard disks

    This is happening often enough to be really painful:
    I insert a hard disk. I browse the files on it. I open a new window of Finder and drag some files from the external hard disk into my own machine (OSX Leopard 10.5.5). It croaks, telling me some "permissions" are wrong (Error -36).
    Browsing Google and Macosxhints and all of that, the suggestions indicate that I should "repair permissions", "repair disk", and reboot. All done. Still doesnt work.
    What now? I never had this problem with Windows. What's with this permissions drivel on OSX and how can I fix it once and for all? I only use my machine to browse on Firefox/Safari, talk with Skype, edit with Coda/Transmit, and then Office documents. Which of these tools changes these mysterious permissions so that I have to keep "repairing" again and again???
    Thanks for any pointers or advice!

    I am on shaky ground here because I am totally ignorant about about Windoze and MS-DOS. What I can tell you, though, is that the Unix underpinning of Mac OS X is heavily reliant on the concept of "ownership" which, apart from other factors, has security implications. FAT32 has absolutely no concept of file ownership. (That's why Microsoft encourages everyone to use NTFS instead - mainly for the security implications).
    You need advice - Sorry! - from someone more knowledgeable than me as to how to change both the format (to Mac OS Extended, Journaled) and the Partition Scheme (to GUID) *+while preserving your data+*. I presume that you would need to find a temporary home for that data, after which altering the drive's structures would take only a moment - but as to how to then correctly replace the data onto that drive I would prefer not to say. I would guess that simply transferring the data back onto the drive now with a 'Mac-appropriate' structure would suffice - but PLEASE do not entrust your data to my 'guess'.
    Wait patiently for someone who knows how to advise you to respond in this thread, or post again with a possibly more descriptive/pertinent title.
    Sorry not to have been of any help.
    Andreas

  • Fix a few "lost" master files from accidental hard disk disconnect?

    By gross stupidity, I disconnected the firewire cable to my external hard disk on which reside all my masters in the middle of a 'relocate masters' execution. I normally load new images into the aperture library, cull and edit them, and then relocate the masters to the external hard drive where they reside.
    As a result of tripping over the HD cable, I now have 5 files that show up when one chooses "show in finder", but show as being located on some kind of phantom duplicate external HD address, but which contains only the 'missing' 5 files. I've not figured out a way to to copy these to the 'real' address (or anywhere else). Additionally, I have one image that still has a master but it is has been horizontally compressed.
    Any ideas?

    That is basically what I ended up doing for the five images. My greater concern was whether I might have in some manner damaged the database itself, or left some kind of "'ghosts" file bits to haunt me in the future. It seems to be behaving, so I'm hopeful that only the image references were lost. I've not yet deleted the damaged images in case someone alerted me to ramifications, but it is about time. I'm also not sure how to get rid of the 'dummy' files and their duplicate path name ( which appears otherwise empty).
    I hate it when I do something as dumb as I did...
    Steve

Maybe you are looking for

  • Sync iphone 4s to new Macbook Pro

    How can I sync my iphone 4s to a new macbook pro without loosing anything The macbook i was syncing with had a hard drive crash.  I lost everything

  • Java loading text file and doing stuff help

    Hello, Can anyone help me with this, I just don't know where to start.. I need to create a java program which will load up a text file. The text file must be no bigger than 1000 characters (so somewhere there needs to be an exception I am guessing) O

  • Problem With the BI reports iviews in EHP 1.0 for Maintenance

    Hi All, We are using EHP1.0. In the portal for BI report i have to make visible/Invisible the BI report iview According to user. Is it possible to remove all the active queries except the ones relating to notifications from the maintenance Tasks Ivie

  • Af:treeTable displayRowKeys issue with MDS (jdev version 11.1.1.4)

    Hi, I've an MDS enabled application, and I'm facing the below mentioned issue with setting af:treeTable displayRowKeys. Issue: I'm trying to set displayRowKeys pro-grammatically for an user scenario where I've to expand/collapse the tree table data t

  • Oracle iLearning login

    Is Oracle iLearning a single sign-on like these forums and MOS or is this a separate account that has to be set up?