When i delete files memory does not increase

When I delete files from the memory the size of available memory does not increase. Why?

Try restarting the computer, then select the disk's Desktop icon. Press COMMAND-I to open the Get Info window and check how much free space is shown. If it still hasn't changed at all then try the following:
Repair the Hard Drive and Permissions - Lion/Mountain Lion
Boot to the Recovery HD:
Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
Repair
When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu. Select Restart from the Apple menu.
Although the suggestion to delete old Time Machine snapshots, if any, that will only free up space but will not fix the problem you have described. If you are deleting files but the free space on the drive fails to update, that means there is a directory problem on the drive that needs to be fixed.

Similar Messages

  • Finder requires password to delete files, Trash does not show deleted files. Please help me resolve.

    Deleting folders/files causes the password pop up interface to appear, does not seem to matter where the file/folder is. After deleting, it should appear in the trash, but does not. Moving files is not affected, with the exception of moving files into Trash. This did not happen in the morning.
    Accessing ~/.Trash gives following message "The folder “.Trash” can’t be opened because you don’t have permission to see its contents." .Trash is hidden, and i can't view its permission from the Get info page.
    I am the owner of the laptop, i don't understand why this is happening. The other thread with similar problems involved a software upgrade and had problems with moving files also, whereas my MBP was okay this morning, i didn't do anything else from then till now.
    i did a ls -al ~ on the terminal, relevant lines as follows
    drwx------
    10 root  staff  
    340 Jan 18 02:09 .Trash
    compared to desktop, which i had no problems (yet, not sure)
    drwx------+
    30 Mac   staff 
    1020 Jan 18 02:08 Desktop
    i don't understand the notation, reading up about them does not clarify any more then to confuse me further.
    My user is "Mac", ~/ goes to folder "Mac"
    Please help, I have tried booting from save mode, and it is the same.

    Visit The XLab FAQs and read the FAQ on solving Trash issues. You can also try using Trash It! 5.1 to fix the problem. Or you can try this:
    Open the Terminal in the Utilities folder and paste the following at the prompt:
        sudo rm -Rf ~/.Trash
    Press RETURN. Enter your admin password when prompted. It will not echo to the screen. Press RETURN again.
    (Should anyone tell you this is dangerous or unnecessary, please ignore the comment.)

  • When I delete, the message does not go in the trash folder. Cannot see it.

    I googled for an answer.Followed the instructions but it did not work.
    What is UTOR mail account. Could not locate that.

    Tools|Accounts|{select the account}|Server Settings
    What is it set to for the destination of a deleted file?
    I doubt that re-installing Thunderbird will help. But if you do, it should pick up your existing profile and carry on as if nothing had happened, which probably means you'll have exactly the same problem.
    https://support.mozilla.org/en-US/kb/profiles-tb
    And maybe this article is relevant:
    https://support.mozilla.org/en-US/kb/cannot-delete-messages?esab=a&s=thunderbird+cannot+delete&r=4&as=s

  • Using Firefox 3.6.20 and Windows XP Home SP3. Firefox sporatically deletes bookmarks from the bookmarks toolbar. Additionally, when I try to import from a saved HTML file, Firefox does not import the complete file. Results are inconsistent.

    Using Firefox 3.6.20 and Windows XP Home SP3. Firefox sporatically deletes bookmarks from the bookmarks toolbar. Additionally, when I try to import from a saved HTML file, Firefox does not import the complete file. Results are inconsistent.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • HT1526 When I delete a file it does not appear in my trash folder 10.6.8, please help.

    Please help as when I delete a file it does not appear in my trash can, however it deletes.

    You might have to rebuild your hiden trash file...
    Solving Trash Problems...
    http://thexlab.com/faqs/trash.html
    Empty and recreate an account's Trash
    The following procedure will "kill two birds with one stone." It will both:
    Empty the Trash of an affected account.
    Create a new ~/.Trash directory, with correct ownership and permissions, for that account....
    More at that link.

  • HT203176 When I delete a file, it does not appear in the Trash - How can I fix this. Its a brand new MacBook Pro 17'

    When I delete a file, it does not appear in the Trash - How can I fix this. Its a brand new MacBook Pro 17''

    http://www.thexlab.com/faqs/trash.html for starters.

  • I delete files but my available disk space does not increase

    I delete files but my available disk space does not increase.  What to do?

    Try reindexing the hard drive:
    http://support.apple.com/kb/ht2409

  • Memory does not get released after encrypting/ decrypting files.

    I am using javax.crypto package to encypt/decrypt files but the problem is that once a big file (around 100- 700 mb) is encrypted there is spike in memory of 70 Mb (first time) and whole of this memory is not released after execution is finished. I have kept my application run for days but this memory do not come down.
    Interesting thing is if I encrpyt/ decrypt the same file again and again the memory do not rise by 70 Mb, but for first 3-4 iterations 5-8 Mb of memory is released in each iteration and after that memory starts increasing again in chunk of 2-5 Mb and after few iteration some memory get released but in all the memory always increases. The code to encrypt file is simple
    Cipher c = Cipher.getInstance("AES/CBC/PKCS5Padding");
    byte[] salt = generateRandomBytes(16);
    Rfc2898DeriveBytes rfc = new Rfc2898DeriveBytes("123456", salt, 1000);
    SecretKey key = new SecretKeySpec(rfc.getBytes(32), "AES");
    c.init(Cipher.ENCRYPT_MODE, key );
    FileOutputStream fos = new FileOutputStream(encryptedFile);
    CipherOutputStream cos = new CipherOutputStream(fos);
    FileInputStream fis = new FileInputStream(largeInputFile);
    int len = 0;
    byte[] buf = new byte[1024 * 128];
    while((len = fis.read(buf)) != -1) {
       cos.write(buf, 0, len);
    cos.close();
    fis.close();
    This is simple observation I have seen in my program:
    I am using Windows 7 64 bit with 16 GB RAM Intel Core 2 Duo 3.00 GHz and file encrypted was 700 MB size
    Explanation
    Memory Usage (As shown in Windows Task Manager Private Working Set column)
    When program starts
    9924 K
    After first iteration of encryption
    81,180 K
    Second Iteration
    78,254 K
    3 Iteration
    74,614 K
    4 Iteration
    69,523 K
    5 Iteration
    72,256 K
    6 Iteration
    70,152 K
    7 Iteration
    83,327 K
    8 Iteration
    85,613 K
    9 Iteration
    95,124 K
    10 Iteration
    92,698 K
    11 Iteration
    94,670 K
    I kept the iteration on for 2000 iteration, the same pattern was observed and at the end memory usage 184,951 K, this memory was not released after calling System.gc() also.
    What could be the possible problem, is it the CipherOutputStream or Cipher class having some memory leak or I am doing something wrong here?

    ash wrote:
    We are using WebLogic Server 7.0 runing on Solaris 2.7.
    We are experiencing a problem where the memory does not seem to be released after
    the application has been shut down.What do you mean by "application has been shut down"? Is the server
    process running or not? Is it a zombie?
    The
    Unix 'top' command reports that memory has not been reclaimed by the O/S. What exactly has it reported? If the process is gone, then I'm pretty
    sure your O/S has reclaimed the memory. What exactly are you looking at
    in top?
    -- Rob
    > Continue
    restarting it will forces us to reboot the server as there will be more and more
    memory lost when restarting the WebLogic.
    Advice to fix the problem is much appreciated. Thanks.

  • CPU heats up on file copy/backup and fan speed does not increase

    Hi Friends,
    I have been having issues with fan in my Dell Studio 1555. It has an ATI Radeon card and I had installed the proprietary catalyst driver as the open source driver is too noisy.
    Recently, I noticed that on accessing my hard disk and copy files or running backup (luckybackup), the temperature shoots up from around 60 deg C (just using chrome) to 100 deg C when it would shut down itself. However, it seems like the fan speed does not increase with the increase in temperature to help it cool down.
    I tried to get the fan speed details with "lm-sensors" but it would not show the fan speed. Here is the output of sensors:
    [user@domain]$ sensors
    acpitz-virtual-0
    Adapter: Virtual device
    temp1: +60.0°C (crit = +100.0°C)
    temp2: +59.0°C (crit = +100.0°C)
    temp3: +66.0°C (crit = +100.0°C)
    coretemp-isa-0000
    Adapter: ISA adapter
    Core 0: +58.0°C (high = +105.0°C, crit = +105.0°C)
    Core 1: +58.0°C (high = +105.0°C, crit = +105.0°C)
    Following the Arch wiki, I added acpi_enforce_resources=lax to kernel parameters but it did not help as well.
    Here is the main problem:
    1. CPU temperature shoots on accessing hard drive but fan speed does not increase - Any guide/direction to investigate would be really helpful.
    2. Sensors does not show the fan speed. Read about i8kutils, but couldn't figure out how to get it working with systemd. Any indicators here?
    Last edited by ravisghosh (2013-07-01 05:22:01)

    luuuciano wrote:Ravi, did you solved it?
    Im having similar issue on a vostro 1710, fan never works... :-/
    The fan was bad. I had to replace the fan. However, I have not been able to figure out how to see fan speed in sensors.
    Last edited by ravisghosh (2013-09-08 15:57:37)

  • HT201250 Since time machine backed up my computer does that mean I can delete files so I can increase storage space on my hard drive?

    Since time machine backed up my computer does that mean I can delete files so I can increase storage space on my hard drive?

    NO!
    Time Machine is not an Archival Backup. It will keep files for a while, but if it needs the space, it will delete files that no longer exist on the hard drive.
    Get a couple external drives and move the files to both of them.

  • I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    People who have Photoshop, but don't have Lightroom, need ACR so that they can use Raw files. Without ACR they could do nothing with those (they may also like having ACR so that they can work on other kinds of image using the same kinds of adjustments and techniques, as are used with Raw files).
    People who have Lightroom, can get access to Raw files regardless whether ACR is present or not. They can use Lightroom on other kinds of image also, using the same methods. LR can pass images directly into Photoshop without passing via ACR (or else does so transparently, which amounts to substantially the same thing).
    ACR does not, strictly speaking, even need to be installed for this external editing to happen. In fact, not even PS needs to be - since a different image editor can be used instead, while still retaining the Adobe Raw conversion etc.
    Lightroom "subcontracts out" specialised external tasks, in this workflow, but is still your "main contractor": the image is otherwise located, viewed, managed, adjusted/presented and output entirely using LR.
    So IMO we can divide image processing into:
    operations that involve pixels and layers and layer masks and adjustment layers etc (of the kind done inside Photoshop)
    operations that involve parametric edits (of the kind done in ACR where you are not using a Lightroom based workflow; otherwise, done inside Lightroom)
    When PS is called in, that's because those tasks are impossible or unsuitable to do in Lightroom. But those tasks can't be done in ACR either - by definition, since LR and ACR have exactly the same image processing "feature set".
    Lightroom is irrelevant to the Bridge + ACR + PS workflow. This workflow requires both your PS and your ACR to be current enough, to support your Raw format etc.
    ACR and Bridge are irrelevant to the LR + (image editor) workflow. It is in this case, only LR which needs to be current enough to support your Raw format etc.
    RP

  • Is there a capability to save/export the time capsule settings file when using the iphone/ipad airport utility. the "file" button does not exist on the latest airport utility app.

    is there a capability to save/export the new airport 2TB time capsule settings file when using the iphone/ipad airport utility. set-up wasn't a problem but the "file" button does not exist on the latest airport utility app v6.3 to save the configuration file.

    the "file" button does not exist on the latest airport utility app v6.3 to save the configuration file.
    Sounds like you are a bit confused with version numbers.
    Latest AirPort Utility version for the iPhone / iPad is 1.3.3.  There is no option or capability to export/import settings on the iOS version(s) of AirPort Utility.....although you could take a series of screen shots and save them for future reference.
    AirPort Utility 6.3.x is found on a Mac.....not on iPhone / iPad. Export and Import options are found under the File menu in 6.3.x.

  • I need to delete the entire browsing history so when i type in a webpage it soes not bring up previuosly visited sites.  deleting the history does not do this.  any one know how to do this

    I need to delete the entire browsing history so when i type in a webpage it soes not bring up previuosly visited sites.  deleting the history does not do this.  any one know how to do this

    Judy-
    If Private Browsing doesn't do it, try Settings-Safari-Advanced-Website Data-Remove All Websitre Data.
    Or changing Settings-Safari-Autofill to OFF.
    You might also try Settings-Safari and Clear History and Clear Cookies and Data.
    As you can see, there are several controls for Safari.  Which one works depends on what your problem is.
    Fred

  • How can i setup pages to automatically open when double clicked.  Currently when I double click it creates cpgz file and does not open.  The only way to open pages doc is to manually ask to open with pages.

    Currently when I double click it creates cpgz file and does not open.  The only way to open pages doc is to manually ask to open with pages.

    Hi Karen,
    Sounds like OS X has lost the association between Pages and its files.
    Start by quitting Pages, then going to Finder.
    In Finder, locate a .pages file. Click on it (once), then press command-I (eye, not one) to Get Info.
    In the Info window that opens, expand the Open With section.
    In this section, click on the pop-up menu and choose Pages (even if Pages is already shown).
    Click the Change All button to associate all files with the .pages extension with Pages.
    Close the info window.
    Double click any .pages file to check that Pages will now launch and open the file.
    Regards,
    Barry

  • I keep getting the message: "what should firefox do with this file" in Windows XP every time I want to download a file, e.g., adobe, excel, etc. How can this annoying message be deleted? The check box to "open file automatically" does not work!

    I keep getting the message: "what should Firefox do with this file" in Windows XP every time I want to download a file, e.g., adobe, excel, etc. How can this annoying message be deleted? The check box to "open file automatically" does not work!

    cor-el,
    Thanks for your prompt reply. However, the sources you gave do not seem to apply exactly to my situation. I have attached some screenshots that show what the dialogue box looks like for a pdf download, and what my settings in the Apps panel of Options are. You will note in the first screenshot that I have checked the box to handle this file type automatically; however, the next time I try to download a file of that type, the same dialogue box appears looking exactly like the one shown, so checking the "automatic" option appears to do nothing. The files to be downloaded from my Gmail messages are not generic or altered file types - they are shown as pdf, doc, docx, etc. So while your intent was good, your post did not help. Thanks anyway.

Maybe you are looking for

  • InDesign (and Photoshop) crash on opening for only one user

    I just spent the weekend "fresh" installing all of my software and data onto a new computer (MBP OSX 10.7.5). I have CS5.5 Master Suite Install Discs. InDesign crashes on opening ONLY in my main "standard" account (Let's call it "Rebecca"). I'm prohi

  • SD-how to process material packing before sales order entry?

    Hi,Guys, If materials are packed before sales order is created, like: materia A,  10 batches was put in one bag, how to model it in R/3? Handling Unit Management can still be used? Best regards, Cherie

  • Finding Contacts/Cards

    I recently had my eMac crash. Fortunately the Mac store I took it to was able to recover everything on the hard drive and put it on an external hard drive. I am now using my new iMac and need to locate all of my cards that were in the old eMac. Where

  • How to load or embedd subtitle in video file

    Hi,      I've a movie in a folder. Folder contains 720p movie file with srt file(subtitle file). I Just add the video file in itune library and synced. When i playing the movie in my ipod touch, subtitle is not displaying. I've found any video conver

  • How to determine which object was change within a snapshot

    Dear All, We are using OWB 9.2.0.4 with Oracle database 9.2.0.7. I have taken a full snapshot of an OWB project that includes several modules(cascade). I one of the modules I have created a new table, and added it to an existing mapping in that modul