Secure Empty Trash Setting not working HELP!!!

Im trying to turn off the secure empty trash I dont know how it got turned on
but its not working
Ive tried going to Finder > Preference > advanced > uncheck the secure empty box
but it doesnt work it keeps asking me if im sure to delete the item
I dont want secure empty trash i like keeping the files for a while just in case
HELP please

Click on the item in the Finder's sidebar with the house icon and verify that you are able to write to this folder in the Ownership & Permissions section of the Get Info window, and that it isn't locked; if it is already set this way and you get that error, open the Terminal in the /Applications/Utilities/ folder and run the following:
mkdir ~/.Trash
If you get a message stating that the folder exists, run the following:
sudo chown $UID ~/.Trash
chmod u+rwx ~/.Trash
The first command in the second set will prompt you for your administrator password; nothing will appear in the Terminal window while it is being typed. In either case, click on the Finder icon in the Dock with the Control and Option keys pressed, and relaunch it.
(55512)

Similar Messages

  • Secure Empty Trash doesn't work

    Working in Mavericks on an iMac 27. Secure Empty Trash starts but disappears and nothing is deleted. Is it safe to use Erase Free Space in Disk Utility?

    danimal303 wrote:
    So it won't help me at all. I don't quite see any use for it, a good reason not to use it. But I have some 560 000 files in Trash and they won't budge.
    When you delete a file (without Secure Empty Trash), all the data of the file still exists on the file system free list.  It will remain there until the file system reuses the space.  Erase Free Space is a way to address this, after files have been deleted.
    It is only really useful as a once in a while event, such as someone forgot to use Secure Empty Trash for a file with sensitive data.  And Secure Empty Trash is very time consuming, and worse it is if you have an SSD, this wears out the SSD faster.
    A better approach is to use FileVault so that a deleted file is instantly securely deleted because it was always encrypted.
    Since you are attempting to use Secure Empty Trash, then I would try this from the command line using the 'srm' command.  "man srm"
    srm -f -r -v ~/.Trash/*
    The srm command will perform a secure erase.  The -f will keep it from prompting for approval.  The -r will recurse through and directories of files in the trash.  The -v will display the progress while deleting so you can see how things are going, and have an idea of how much progress you are making.
    Be very careful with srm, as if you point it at the wrong directory it could delete something you care about, or a lot of somethings.
    If there are files that srm -f will not delete, then you bring out the sudo command.  But be VERY CAREFUL with sudo, as you can delete a lot more than just a few files you care about.
    sudo srm -f -r -v ~/.Trash/*
    Password: you enter your account's password here, assuming you are the admin of the Mac.

  • My Secure Empty Transh does not work, How can I fix it?

    When I open Trash, it displays all the files that are there to be deleted. However, when I select from Actions the Secure Empty Transh, the computer launches the application to empty trash, it asks me if I want to delete unlocked items or all items. Independently of what option I select, the program closes and all the files are where they were before. Any ideas on what to do?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Empty trash, finder not working

    I have a imac G5 w i sight. I just installed leopard and when it came to the reg screen on the internet. it could not find the internet, so i quit. now when i try and start the mac the screen comes up but "finder" not running. other programs run. I tryed re-installing it and it needed 11 gb room. not usually a problem, but i could not empty trash. is there a way to fix this problem.

    Hold down the option key and try again. Your task will be a lot faster if you remove from the Trash all items that don't really need to be deleted securely.

  • Looping through 2 Result Sets - Not working-HELP!!

    This code loops through my first result set fine.....so I take the first part number from the result set, do a second result set to bring back all part conditions associated with that part number and compare them to see if they are all the same. When it hits the second loop with the second result set, it only loops once. I know this because of my system.out.println only print once.....can someone see where I'm going wrong....thanks in advance....
    public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
    DataSource ds = this.getDataSource();
    HttpSession sess = req.getSession();
    if (sess == null)
    res.sendRedirect(/error.html");
    else
    synchronized(sess)
    UtilParts part = (UtilParts)sess.getValue("UtilParts.PARTS");
    String[] partNumbers = new String[10];
    for(int index=0; index < partNumbers.length; index ++)
    partNumbers[index] = req.getParameterValues("partNumber"+index)[0];
    partNumbers[index] = partNumbers[index].trim();
    String partDesc = req.getParameterValues("partdesc")[0].toUpperCase();
    partDesc = partDesc.trim();
    int rowsCounted = 0;
    for(int index = 0 ; index < partNumbers.length; index ++)
    if(partNumbers[index].equals(""))
    rowsCounted ++;
    Connection conn = null;
    ResultSet resultSet = null;
    ResultSet resultSetMultCond = null;
    PreparedStatement getPartInfo = null;
    Statement getMultPartCond = null;
    String sqlMultCond = null;
    String sql = null;
    try
    conn = ds.getConnection(id,pass);
    conn.setReadOnly(true);
    if(partDesc.equals(""))
    sql = "SELECT #PART,#PDESC,#CONDS,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PART LIKE '";
    boolean first = true;
    for (int i=0; i < partNumbers.length; i++)
    if (!partNumbers.equals(""))
    if (!first)
    sql += "%' OR #PART LIKE '";
    sql += partNumbers;
    first = false;
    sql += "%' AND #RECDT BETWEEN 20010816 AND 20020816 GROUP BY #PART,#PDESC,#CONDS ORDER BY #PART";
    getPartInfo=conn.prepareStatement(sql);
    resultSet = getPartInfo.executeQuery();
    if(!partDesc.equals(""))
    String sqlDesc = "SELECT #PART,#PDESC,#CONDS,COUNT(#PART) AS PCOUNT FROM MYLIB WHERE #PDESC LIKE ? AND #RECDT BETWEEN 20010816 AND 20020816 GROUP BY #PART,#PDESC ORDER BY #PART";
    getPartInfo = conn.prepareStatement(sqlDesc);
    getPartInfo.setString(1,partDesc + "%");
    resultSet = getPartInfo.executeQuery();
    Vector enum = new Vector();
    int rowsadded = 0;
    while (resultSet.next())
    rowsadded += 1;
    UtilParts utilityPart = new UtilParts();
    String s = (String)resultSet.getString("#PART");
    s = s.trim();
    utilityPart.setPartNumber(s);
    String t = (String)resultSet.getString("#PDESC");
    t = t.trim();
    utilityPart.setPartDesc(t);
    int resultCount = 0;
    int sameCond = 0;
    String storeName = null;
    String holdName = "No";
    int i = resultSet.getInt("PCOUNT");
    String cond;
    if(i == 1)
    String c = (String)resultSet.getString("#CONDS");
    c = c.trim();
    if(c.equals(""))
    cond = "N/A";
    else
    cond = c;
    utilityPart.setPartCondition(cond);
    utilityPart.setPartCount(i);
    else
    sqlMultCond = "SELECT #PART,#CONDS,COUNT(*) AS MCOUNT FROM MYLIB WHERE #PART = '" + s + "' AND #RECDT BETWEEN 20010816 AND 20020816 GROUP BY #PART,#CONDS ORDER BY #PART";
    getMultPartCond = conn.createStatement(java.sql.ResultSet.TYPE_SCROLL_SENSITIVE,java.sql.ResultSet.CONCUR_UPDATABLE);
    resultSetMultCond = getMultPartCond.executeQuery(sqlMultCond);
    int row =0;
    while(resultSetMultCond.next())
    row += 1;
    System.out.println("Row: " + row);
    resultCount = resultSetMultCond.getInt("MCOUNT");
    System.out.println("MCount: " + resultCount);
    if(holdName.equals("No"))
    System.out.println("You are in the no loop");
    storeName = (String)resultSetMultCond.getString("#CONDS");
    holdName = storeName;
    sameCond += 1;
    System.out.println("Same condition: " + sameCond);
    System.out.println("StoreName: " + storeName);
    System.out.println("HoldName: " + holdName);
    else
    storeName = (String)resultSetMultCond.getString("#CONDS");
    if(holdName.equals(storeName))
    sameCond += 1;
    System.out.println("Same condition: " + sameCond);
    System.out.println("StoreName: " + storeName);
    System.out.println("HoldName: " + holdName);
    resultSetMultCond.close();
    getMultPartCond.close();
    if(resultCount == sameCond)
    System.out.println("resultcount equals samecount");
    utilityPart.setPartCount(1);
    utilityPart.setPartCondition("same conditions everywhree");
    else
    System.out.println("resultcount not equal samecount");
    utilityPart.setPartCount(i);
    utilityPart.setPartCondition("");
    enum.addElement(utilityPart);
    }//end of first while
    if (rowsadded == 0 )
    res.sendRedirect("/PartNotFound.html");
    sess.putValue("PARTS",enum);
    resultSet.close();
    conn.close();
    getServletConfig().getServletContext().getRequestDispatcher("/NextQuery.jsp").forward(req,res);
    return;
    catch (SQLException e1)
    System.out.println(e1.getMessage());
    e1.printStackTrace();
    res.sendRedirect("/FindPartSQLError.htm");
    }//end of synchronized session
    }//end of else
    }//end of method

    Got the answer...changed my select statement in my second loop, did a group by CONDS which of course if they are all the same....the result set would only have one value therefore the loop will only execute once...took out the group by CONDS and ran fine....

  • Secure Empty Trash difficulties

    Anyone have a guess why Secure Empty Trash has stopped working in my Admin account, yet still works perfectly in the other four standard user accounts on the family Mac?
    In my Admin account, starting a Secure Empty gives me the progress bar which just hangs there...forever. The hard drive is crunching away like crazy but the progress bar barely moves. Eventually, it will empty. But we're talking something on the order of 15 minutes or more to delete no more than 4 files. The size of the files seems not to matter. It will take aeons to secure delete 200k as well as 2M. The crunching of the HD is very concerning.
    I've searched this board and found very little to go on. Any help will be greatly appreciated.
    Thanks,
    JimC
    G5 dual 2G   Mac OS X (10.3.9)  

    JimC,
    Perhaps Solving Trash Problems, by Dr. Smoke may provide some clues for eliminating your difficulties.
    ;~)

  • Secure  Empty Trash just gets stuck

    Secure Empty Trash doesn't work. it just  gets stuck/crashes. Why is this?
    10.9.5 mavericks

    from Apple docs worked for me. Mine was \\\\\\\.\\\ derived from installing Windows.
    If there are several locked files in the Trash, you can unlock them all at the same time at the command line. Follow these steps:
    1. Open Terminal. It's located in /Applications/Utilities.

Type: chflags -R nouchg 
Note: Type one space (not pictured) after nouchg in the line above, so that it ends in "nouchg ". Do not press Return yet.

    2. Double-click the Trash icon in the Dock to reveal the contents of the Trash. If necessary, arrange the Finder window so that a portion of the Terminal window is still visible.
    3. Press the Command-A key combination to select all files in the Trash.
    4. Drag the files from the Trash to the Terminal window. 
Note: This automatically enters the pathname for each file. This eliminates the need to individually empty multiple Trash directories, particularly when multiple disks or volumes are present.

    5. Press Return. No special text message will be shown indicating that the command was successful.
    6. Empty the Trash.
    If the Trash does not empty or if you see a message in Terminal that says "usage: chflags [-R [-H | -L | -P]] flags file..." you most likely did not type the text in step 2 as indicated or did not leave a space. Repeat the steps if this happens.

  • Is it possible to change zero options in "Secure empty trash"?

    In the "Secure Empty Trash" feature in Tiger, is it possible to change the settings regarding how many times the file being deleted is zeroed out? Can I choose a 1-pass or a 7-pass, etc?

    I don't think the "Finder" itself offers a way to change the number of overwrites performed during a "secure empty trash". Note that "secure empty trash" just calls '/usr/bin/srm', using the '-m' option -- 7 passes, including zeroes, FF, F6 and random according to the 'man' page.
    Depending on what you are after, and being mindful of the different possible paths for items in the "Trash" in OS X, you might be able to use 'srm' directly, using the options of your choice. Though not recommended, if you get into hacking system files, the options probably can also be changed to some extent from there.

  • HT1526 Secure Empty Trash not working

    when I press secure empty trash : the items load up then when I press either of the options (locked or unlocked) it stays on screen for a few seconds then disappears ??

    Hello. Thank you for your help. When I follow your directions using the
    terminal window I get the following message: unable to execute /bin/rm:
    Argument list too long. I have over 100K items in my trash folder. Could
    this be the problem?
    Edward Frebowitz
    615 406 3255
    On Tue, Dec 23, 2014 at 9:20 AM, Apple Support Communities Updates <

  • My Secure Empty Trash not working?

    I click on Trash & open it, then I click on secure empty trash and open that, next an option to empty locked items appears, and I click that.
    It appears to start deleting unwanted files for a brief moment, then stops and the files remain in the trash, taking up much needed space.
    Could anybody please help me so I can dump this trash and get started collecting the next load?
    Thanks

    HI,
    Goto Finder > Help > type in Trash...
    From Finder Help Trash...
    " Empty the Trash
    Command (⌘)-Shift-Delete
    Empty the Trash without any warning or when it contains locked files
    Command (⌘)-Shift-Option-Delete
    Hold down the Option key, and then choose Finder > Empty Trash "
    Hope this helps...

  • Secure Empty Trash not 100% safe

    Recently I use finder to enter directly into Firefox's cache files and move all the files into the Trash. Next I use Secure Empty Trash.
    After that, I used Data Rescue II to see what i can find.
    I am very surprised to find most of the images that i have securely deleted.
    I know the best way is to use Disk Utility's erase free space function, but if Secure Empty Trash is going to write the data 35 times over, and still can't get the job done.
    Then using Erase free space's 35 times write-over isn't completely safe too?

    Normally when a file is deleted insecurely, the data isn't deleted at all - the only thing that is removed is the reference to the data in the file catalogue. Overwriting a file even once (let alone 35 times) should prevent recovery by programmes like the one you mentioned that are designed to detect unlinked files and create new catalogue entries for them. Given the above, a few possibilities come to mind that could account for your observations.
    One is that the files you recovered were not the ones you thought you deleted. For example, working with "TextEdit.app", any time a previously saved document is modified, an invisible "autosave" copy is created on the hard drive, intended to preserve any modifications in case the programme or computer crashes. This copy is removed insecurely once the changes are manually saved. If the original is then securely erased, it will be unrecoverable. However, data recovery programmes can easily recover the remnants of the multiple intermediate "autosave" files. I have no idea how "FireFox" works with cache files, but perhaps what you recovered was remnants from previous times you visited the sites that were cached in the files you securely deleted.
    A second, less likely possibility is that your files were recoverable due to a design flaw introduced in Leopard's version of "Secure Empty Trash" (I haven't tested recently so I don't know if the issue has since been addressed). It is possible to configure it so that files are not securely deleted, even when selecting the option. However, such a configuration would not be a random occurrence - basically, a user would have to set it themselves, although malware or a malicious person with access to your account could do the same...
    A third possibility, perhaps related to the second, is that in Leopard, regardless of whether the over-writing stage of "secure empty trash" succeeds or fails for any reason, the process will still continue to the unlinking stage, in effect deleting insecurely. Prior to Leopard, if over-writing failed, the file would not be unlinked, which had at least two benefits: i) since the file was never insecurely deleted, it would not be necessary to initiate a time consuming "erase free space" procedure to ensure that the data was destroyed; and ii) the very presence of the file serves as feedback to the user that the procedure has failed, unlike in Leopard where it fails silently.
    Either way, using "erase free space" shouldn't be affected by these issues. If the file has been deleted (i.e. copies do not still exist in a hidden cache file somewhere), then overwriting "free space" should prevent basic recovery software from restoring it, assuming the procedure is allowed to run to completion.

  • How do I make trash not do a "Secure Empty Trash"?

    Here is what's happening to my Trash whenever I move a file to it for deletion. Ever since I changed the Trash settings to "Secure Empty Trash", and I securely empty the trash when it only have 1 or 2 files in it, it comes up saying there's like 20. when there isn't...so help?
    OR Could someone tell me how to chnage the Trash settings so it is just "Empty Trash".
    Thankayou.

    Uncheck "empty Trash securely" in Finder > Preferences > Advanced tab.
    Regards,
    Captfred

  • My secure empty trash keeps stopping and saying 'I do not have permission to trash" I ahve checked the file info and there is no tick in the locked box also the files are from a memroy stick

    My secure empty trash stops and will not let me empty the trash. It says; I do not have access to some of the items. I have clicked continue, but it will not empty them. I have tried looking at the files in the trash box and the file info does not have the "locked box" ticked. Any suggestions please.

    Open Terminal.app(/Applications/Utilities/Terminal) and type
    sudo rm -rf ~/.Trash
    Be careful all of files in the trash are deleted with above command.

  • Help, I deleted some files and then secure empty trashed it.

    I accidently deleted important files, and also secure empty trash, is there any way to recover those files?

    no, unless you have a backup.

  • Is it possible to create a secure empty trash shortcut in file menu?

    I have second finger click enabled so that I can quickly move files to the trash bin from the contextual menu. This is fine and dandy, however, for files containing sensitive informaton, I'd like to have a "Secure File Delete" option available (file bypasses the trash bin and is wiped after selecting said option).
    I've searched the threads and checked system prefs. Only options are to change "empty trash" to "secure empty trash". This wouldn't work as I have more files that are typically trashed and not wiped. It'd be nice to have it available as a convenience I suppose
    I know theres an app in the app store that offers this functionality. It's $3-4.
    So my question...is it possible to create such a contextual menu option on my own?
    heres an example of what I'm ltalking about...

    Create a new Service in Automator.
    Set it to receive files an folders in the Finder.
    Drag in an Ask for Confirmation action if you want it.
    Drag in a Run Shell Script action from the Utilities section of the Library.
    Set it to Pass Input as Arguments and Replace the code with:
    srm -r "$@"
    --That's ess-ar-em for Secure ReMove (just copy and paste)
    Save it and it will show up in the Services menu when you right-click on an item in the Finder.
    There are options you can add to it like -s for simple, -m for medium. The default (without options) is 35-pass Gutman.
    You can see what options are available by opening Terminal and typeing
    man srm
    Hit space to scroll down. Q to quit the man page.
    The Verbose and Interactive options won't work since you can respond.
    Note that depending on the algorithm chosen, it may take some time for the file/folder to disappear from the Finder view.

Maybe you are looking for

  • My videos and video podcasts do not show on my ipod but do on itunes

    Hello, My videos show fine on my itunes (movies and podcasts) but then i go to try them on my ipod and the screen remains blank! please help!

  • How to retrieve values from Dynamic Selection screen while using LDB  - PSJ

    I am having problem in PSJ Logical database. In a custom report which is using PSJ LDB, we are using PROJ and PRPS_R tables. When I run program it displays one dynamic selection screen, there we are giving selection criteria for PRPS (Master data WBS

  • Calling a function with sql

    Hi all, i have the following function.......... create or replace function proj_budget_importance (p_budget in NUMBER) RETURN VARCHAR2 IS proj_importance NUMBER (8,2); BEGIN IF p_budget > 250000 THEN proj_importance := 'High'; ELSIF p_budget <250000

  • Lightroom Color Shift

    When I opened a photo in Lightroom, I noticed a color shift. The original photo showed a lot of trees and was very green and lush. when I opened it in Lightroom, I noticed the photo become yellower, before I even began to edit it. It seems that perha

  • Check shelf life date by customer when goods issue

    Hi Since each customers will required to have different remaining shelf life of the product when deliver to their store such as 7-11 may required 100 days, Tesco Lotus 150 days so the manufacturing and trading companies of foods & beverage needs to c