Problem emptying Trash despite following every tip and trick I could find..

Hi there,
I have a small number of very large folders I can't delete from my Macbook, which I believe is caused by a problem with the external disk I originally copied them from.
I had a problem with a disk because a colleague didn't eject it properly. I've never know this to cause a major problem before, but in this case a large number of files have been replaced by odd characters along the lines of "USBC[NULL][NULL]".
I've tried deleting the various files and folders from the hard disk, but now I'm stuck with them permanently in my Trash folder. I also have a massive iPhoto backup that I can't delete that was on the same disk.
The message I receive is the "The operation cannot be completed because you do not have sufficient privileges for some of the items".
I've tried following the different steps on this page: http://www.thexlab.com/faqs/trash.html
On that page I've tried the two shareware utilities listed, I've tried using the Option command when emptying the trash, and I've tried using the Terminal approach (which didn't do any of the things it was supposed to).
Any help or advice would be appreciated. I'm a novice when it comes to OS X...

Re-connect (remount) the external hard drive, then try emptying the trash again.

Similar Messages

  • Looking for nice Tips and Tricks on mac os 10.6?

    hello, i'm a new mac user and just looking for some amazing tips and tricks i could try on my new mac.
    thank you

    JoeyG15 wrote:
    Hello, thank you for the warm welcome..and i have a IMac 27 inch and i love it. no crashes no virus my life so complete now and i am just looking for any type of tips that i could tried on my new mac computer.
    thank you
    You are very welcome. I will mention one thing not to do. Don't start down loading any of the system clogging freeware that is out there. Learn to do real Mac trips; not to use the sub-par software that is out there. I'll find the thread that I mentioned above for you. Edit: Here it is: http://discussions.apple.com/thread.jspa?messageID=10430346&#10430346. Check out especially the third post on this thread. These are the kinds of things I would advise your to start learning about.

  • Aperture ate my picture files and they are not recoverable.  The guy at the Genius Bar told me to Trash the App, empty Trash, then go to Purchases and reinstall.  But Purchases says it is "Installed" so it does not let me download it again.  HELP!!!!

    Aperture ate my picture files and they are not recoverable.  The guy at the Genius Bar told me to Trash the App, empty Trash, then go to Purchases and reinstall.  But Purchases says it is "Installed" so it does not let me download it again.  HELP!!!!

    I typed Aperture into Spotlight and sure enough it did show up.
    It looks like it is supposed to be in Apps.
    But it is not there.
    So I clicked on the spotlight Aperture and it opened up the App!!!!
    But I do not know where it is to move it!
    How can I find it?
    While Aperture is running and you are seeing it in the Dock, ctrl-click (or right click) the Dock icon.
    You will see a contextual menu. Click on "Options", then select "Show in Finder".
    And check the "keep in Dock" mark, so you will not lose it from the Dock.

  • Have file in Trash and can not empty trash . Showing 63 files and tried to shut down and restart and still will not empty

    Have file in Trash and can not empty trash . Showing 63 files and tried to shut down and restart and still will not empty.Anyone know what can be done?

    You are welcome. Glad I could help/
    Allan

  • TS1389 I tried every tips and it still doesn't work. Any idea?

    I tried every tips and it still doesn't work. Any idea?

    If you're in the US, redownload the movie if it's purchased. If not, contact support and ask them to repost the item to your account, so you don't get charged again.

  • How do I empty trash after deleting music, apps and photos from my iPhone to make more room for upgrading to iOS 8.1?

    How do I empty trash after deleting music, apps and photos from my iPhone to make more room for upgrading to iOS 8.1?  It says I don't have enough room to upgrade so I have deleted some of everything but do not see an improvement in my storage space. Help?

    No need to empty anything.
    You can update by connecting your phone to iTunes on your computer. This way you bypass the space limitations.
    Good Luck

  • CSS General Tips and Tricks, Please if you can add to this, thanks

    I thought of some general guidelines in CSS and XHTML, please feel free to add some more if you think i missed, thanks in advance !
    No Empty Divs
    Use text-indents in hyperlinks for images and images background so that the  div does not remain empty
    Even if you have a division marker that contains a backgrounds and is  embedding another inner-container (or any other reason), use a  text-indent:-9999px so that it does not appear empty.  This misuse has led to  many misinterpretations by search engines
    Validate your codes on W3C
    Even if there is a warning, there’s always this possibility to wipe it out  and write the right piece of code for it.
    No Ids! Classes & inheritance
    We’re in 2010 now ladies, things have changed and now it’s the new era.  Like  for me, it was quite a bite that day I got those slaps (uhh… let’s call that  e-slaps for the sake of this article) from my boss, who clearly mentioned the  important generic methodologies of using inheritance techniques in everything we  do… And that included CSS my oh my..
    Besides, even if you are using ids, make sure that they are unique and that  they are not being duplicated elsewhere on your page.  That’s the good thing  with the W3C validator: it doesn’t miss those
    Comment your lines of codes
    There are many advantages for this, the major one I’m considering is to help  situate the programmer in line who will be taking your codes elsewhere.  It’s a  form of diplomacy, hence good practice.
    No Styling in your html pages: out!
    It’s better to transfer all the related style, with comments alongside on  your generic style sheet
    Insert Images on web pages only if necessary
    Whenever there is an opportunity not to insert an image as an <img  src>, do it; the best practice is to load it as a background image and if  possible use write any text that’s ever found on the image instead of importing  the image from photoshop or any app you’re using down to tyou
    Anti-aliasing of gif images for better image  quality
    I have this luck of having a chief who knows quite a sleek stuffs in  photoshop and image rendering techniques and that includes gif images.
    Integrators love gifs: light, minimal use of colors.. when they’res no  curves in any way, but what about transparency ?
    There are possibilities to avoid the use of pngs, which are usually heavier  and take quite some time to load.  Sometimes when gifs are being exported, codes  or designers forget the background image on which the gif will be laid onto.   That is why anti-aliasing techniques are very important for keeping the design  intact.
    use overflow: hidden instead of clear:both
    More information can be found on this link:
    http://www.quirksmode.org/css/clearing.html
    To brief a bit, using clear is like ol’ school teaching stuff which was the  fast-driven solution while the overflow:hidden seems to satisfy the major  browsers like MSIE, FFx , Chrome, etc…
    Minimise the use of style sheets
    Avoid using different style sheets for different browsers. Use one generic  style sheet,  unless you have different themes for different pages, but that  depends.   All this creates confusion and that might also mean you are not be  using the right html codes and the right css styles
    To minimise the use of multiple style sheets, use:
    i.e. <!–[if IE  6]><div id=”IE6″><![endif]–>
    Validate your css codes on  http://jigsaw.w3.org
    Jigsaw is the CSS passport for integrators.  I never knew it, but now O I  know !
    It’s the haven.  The hide in our line of business.  It’s what keeps our ego  hmmm strong and heavily proud, the reason why integrators are so needed in the  web business.
    * Squeak *
    Always have this final habit to validate your css in the following  link
    http://jigsaw.w3.org/ to make sure that you are in line with your css  standards.  Even if there are warnings, that would mean you are wrongly  interpreting your css codes or that some styles have been duplicated here and  there.
    Conclusion
    That’s all for now folks.  I think , whenever I’ll have some more time, I’d  probably create a CSS tips and tricks Part 2, cos amending what’s already there  would sound so cheap and it’s not like facebook, uhh Sheran changed that  article, etc..
    It’s good to have some feedbacks and all, well, that’s probably interesting  to know what’s out in the CSS jungle, so jot in some lines, criticise, be blunt  and bold and don’t hesitate to contact me (except ma okes at work, you know who  you are, ladies) for any info ya need
    À La Prochaine !

    use CSS, it will save you time no matter how much DW does things automatically for you
    if you don't know how it's done, ask or view source. css is client side code and can be viewed.
    use divs instead of tables for layouts
    firefox has a great plugin called HTML Validator (http://users.skynet.be/mgueury/mozilla/). you don't have to keep going to the w3c website to validate. when viewing your page within firefox it will validate it and tell you any errors and warnings. saves me a lot of time. it's also great if you're development environment is behind a firewall - you won't have to view source, copy & paste onto w3c validator. they don't have support for html5 yet
    this could be more of style and preference but i use multiple files of css. usually 2 or 3. one is for the layout (layout.css), one is for forms (form.css) and one for display data. anything more can become more work when it's time to make any changes, especially with multiple people working on the same project
    create a standard workflow. naming conventions for file names, class names, etc.
    i'm not sure you can get away from those IE specific css. i've tried a campaign at work to not support IE so that we become fully compliant with the web but unfortunately, IE still has a lot of users. what we've done is support IE but the latest versions only. M$ is at least getting better with being compatible.
    view the page in firefox and IE. if they work, then you should be fine with the other browsers. as a developer, it's my responsibility to ensure that any user whether mac or pc can view the website - as long as they are running the "latest" version of the browser. latest as in what the software developer still supports.
    well that's my tips, tricks and a little pet peeve here and there

  • Must-know BlackBerry Z10 and BlackBerry 10 tips and tricks

    Check out the following must-know BlackBerry Z10 and BlackBerry 10 tips and tricks to get the most out of your new BlackBerry 10 smartphone.
    1) BlackBerry 10's Built-In Screen Shot Feature
    Capturing a screen shot on a BlackBerry 10 device is simple. Just hold both the volume up and volume down keys simultaneously for a couple of seconds until you hear a shutter sound. Screen shots are saved to your BlackBerry 10 camera gallery.
    2) Volume Up/Down Keys as Media Controls
    You can use your BlackBerry 10 device's volume up and volume down keys to skip through songs in your music librery. To enable this feature, open your BlackBerry 10 Settings by dragging down from the top of your display while on your Active Frames screen or a home screen panel. Choose Settings from the dropdown menu and click System Volume. On the following page, slide the Music Shortcuts button to the On position.
    3) Volume Up/Down Keys and the BlackBerry 10 Camera
    You simply tap your BlackBerry Z10's display with the camera or video camera open to snap an image or start recording a video clip. But it's sometimes easier to use the volume keys. Just tap the volume up or volume down keys with the camera open to snap and image. And you can also use these keys to start and stop video capture when your camera's video mode is enabled.
    4) Instantly Launch Voice Control
    The BlackBerry Z10 can initiate lots of different actions based on voice commands thanks to its Voice Control app. And you can instantly launch Voice Control by holding your device's mute key for a couple of seconds.
    5) Launch BlackBerry Camera from Lock Screen
    BlackBerry 10 lets you quickly launch your camera application from its lock screen, a feature that can be valuable when you want to take spur-of-the-moment shots. A camera icon appears in the bottom-right corner of the locked display screen, and you can hold it for a couple of seconds to launch the camera app.
    6) Advanced BlackBerry Hub Inbox Controls
    The BlackBerry Hub is the central inbox for all of you various BlackBerry 10 application notifications and messages. You can access basic Hub controls by clicking the Menu key at the bottom right of your Hub screen. (The Menu key looks like three dots stacked on top of each other.) But you can also access some advanced BlackBerry Hub controls from the date bars that appear in the inbox stream at the start of each new day.
    Just hold a finger on a date bar to bring up controls that let you skip to the start of the past day, the start of the next day, jump to the top of the BlackBerry Hub, jump to the bottom of your BlackBerry Hub or mark all prior messages as read.
    7) Speedy BlackBerry 10 Navigation
    The BlackBerry 10 OS can be broken down into three main components: The BlackBerry Hub; the Active Frames screen; and your application panels. You can do navigation through these components using a basic set of swipes and gestures. But you can also use the tiny slider tray that appears at the bottom of the Active Frames screen and all of your home panels. Just tap a specific panel in the slide to navigate directly to that panel without scrolling. Touch the Active Frames square, which is composed of four smaller squares, to jump directly to your active apps page. Or tap the Hub button, which looks like three horizontal lines on top of each other, to navigate right to the Hub.
    8) See Your Battery Life Status as a Percentage
    The BlackBerry 10 OS does not currently allow you to set your battery-status indicator to show a specific percentage, only a battery icon. But you can check your device's hardware settings for a more specific battery status. Just open your device's Settings by sliding down from the top of your Active Frames or application-panel screen and choose Settings from the dropdown menu. Then click About. On the following screen, change the Category menu from General to Hardware. You'll see a battery percentage listed in the Hardware information.
    9) BlackBerry 10 Boot Status as a Percentage
    Whenever you restart or power up your BlackBerry 10 devices, a BlackBerry logo appears with a status bar that encircles it. The status bar shows you start-up progress, but you can also view that progress as a percentage number. Just hold your finger anywhere on the BlackBerry logo and a progress percentage appears.
    10) BlackBerry Z10 Keyboard Tips, Tricks and Shortcuts
    You can type special characters using the BlackBerry 10 virtual keyboard by holding your finger on top of a letter with associated special characters (e, a, i, o, u, y, etc.), and then sliding your finger over to the character of your choice.
    Quickly sliding your finger downward from the top of your keyboard to its bottom cycles through the number and character screens so you don't have to tap the number/character screens button, which can slow down typing.
    And you can delete an entire word instead of just individual letters by swiping leftward from the backspace key toward the center of your keyboard.
    Click Her to know more

    This could of been posted by JSanders already in his thread!
    Want to contract me? You can follow me on Twitter @RobGambino
    Be sure to click Like! for those who have helped you.
    Click Accept as Solution for posts that have solved your issue(s)!

  • Please help. Performance tips and tricks on Camera RAW 6.6 needed.

    Hello I really need your help and I want to thank you in advance for your time!! I need performance tips and tricks for Camera raw 6.6 and Bridge CS5? I have Intel i7 920, with 16GB of RAM which I thought is powerful enough to make developing in Camera RAW smooth as butter but I am not getting that performance. When I slide the settings, it has a delay for the preview and it gets worse if I apply a vignette. I usually open the camera raw file to photoshop and sometimes it does take a considerable amount of time to load. Working on photoshop is great, quick as expected, but Camera RAW makes me cringe.
    What tips and tricks would you suggest for performance boost? The best case scenario is to have the preview reflects the changes of the slider without delay. Is this possible?
    Thank you very much.

    Thank you for your help.
    I found an adobe link on how to optimize lightroom and followed some tips there that are applicable to bridge. The notable setting I tweaked was to change my cache directory to my RAID 0 drive, and increased cached size to the maximum setting. The difference is night and day, and I am extremely  happy now. The only thing that still bugs me a little is that there is still a slight delay cropping when the vignette is not set to 0 . I can understand that's a little extreme though and I usually add the vignette at the end anyways.
    Yammer P:
    After making the tweaks, I was able to slide the settings with instant previews even with Noise Reduction (luminance) set to zero.
    Robert Shomier:
    Thank you for the link, I have seen that before and followed the directions. I upgraded to 16GB of RAM two weeks ago after reading the tips.
    Thank you guys again..

  • From the Community: Tips and Tricks

    Hello,
    I believe it makes sense if we have a thread where we post some key tips and tricks we have discovered during our adventures.
    The intention is not to post whole applications but solutions to specific issues that might be encountered during the creation of the apps
    Some simple rules:
    1 post or reply per tip, Always check if a tip isn't alreay posted
    Follow the structure as in the first post: Title, Context, Tip
    Avoid replies like "yea cool", "thx for this", etc. This is a functional thread not a discussion.
    If someone from the core team could make this sticky it would be highly appreciated
    Regards
    StonyArc
    http://www.stonyarc.com http://www.xboxlivenation.com

    Title
    Playing a sound in an OnSelect
    Context
    You may have the need to add an audio event to an action.
    Tip
    Assuming you start from blank screen
    add your sound via App Data / Media (right click for the menu)
    add an "Audio" control to you screen (right top cross)
    in the "Autostart" of your Audio1 put "bstart" without the quotes
    in the OnSelect of the button put
    UpdateContext({bstart:false});UpdateContext({bstart:true})
    So far you will then have a button that plays you that sound.
    You will have to decide what to do with the action you have behind. If the action is within the same screen you can add directly after the OnSelect of the button.
    Most likely you will need to move to another screen and then you should add the action in the OnEnd of your audio control
    Navigate(Screen2,ScreenTransition!Fade)
    Two remarks
    You can set the visibility of your Audio1 to "false" (select the audio and go to express view "visible". If you want to select it again and toggle the visibility you can use the control drop down on the top left to select your Audio1
    If you have multiple buttons you want to add the sound the safest way is to add a few other players as otherwise the OnEnd will be quite tricky if you just use one. You can safely point the audio control to the same media file but replace the bstart
    I mentioned above to "bstart1" for the first, "bstart2" for the second, etc.
    http://www.stonyarc.com http://www.xboxlivenation.com

  • Are clean my mac and mackeeper legit? i am nervous as i got caught with mac defender. both of these programs i found on my mac tips and tricks app on dashboard and thought they would be approved. not sure and don't want to go ahead and use the samples etc

    are clean my mac and mac keeper legit? i am nervous as i got caught in the macdefender scheme but these two i found on the mac tips and tricks app on dashboard so downloaded them but haven't used them yet. just don't want or need another mac defender hassle. thanks for any and all info in advance

    once again thanks for more info. what i am still not clear on is if i haven't installed mackeeper can i just drag the icon of the open box [in one case] and the mackeeper icon in my app folder. i somehow downloaded two copies of mackeeper. clicked on one and it was put into my app folder. then i decided to use it and clicked on it and it started asking for email address and stuff. while i put an address in i didn't finish installing or hitting the button that would have probably got it completely installed.
    checked the email address i gave it and no notice from them that i had completed the install or any other info. makes me hope it is still un installed.
    given the givens should i use the apple help writer "how to uninstall mackeeper" on one or both of them or just hope that dragging them to the trash will suffice?
    one of the many great things about apple is this support communities and folks like you and paul. have been rescued from my stupidity by others and you guys. thanks again

  • I want to write for firefox tips and tricks. What can I do?!

    I found some of basic Firefox tricks that I think very few knows about it!

    Hello Hossmf, see already known [https://support.mozilla.org/en-US/products/firefox/tips tips and tricks]
    and : http://www.tweakguides.com/Firefox_1.html
    (it is only a little bit of knowledge in the above articles)
    if you want to contribute for a start see : [https://support.mozilla.org/en-US/kb/how-the-knowledge-base-works#os=win8&browser=fx17 How the Knowledge Base works]
    i'm sure other contributors/helpers help you more(with more links)
    '''''try it, it worth it'''''
    thanks

  • Office 2013 APP-V Tips and Tricks

    Hi there, 
    I got Office 2013 working with APP-V 5.0 Sp2 and rolling it out globally. 
    Out of the box nothing goes wrong, but i'm testing a lot and whenever I unpublish and do not delete the old programdata directory my computers go nuts. 
    Does anyone have any tips and tricks for troubleshooting the Office 2013 APP-V Package? 
    For Example I unpublished the Office 2013 APP-V package because I needed to update it with a connection group and add an excel plugin. After I updated the excel plugin and connection group, the connection group was configured succesfully. Whenever I try
    to open Office 2013 on a already used account it won't start without an error message. 
    When I log in as as different user everything goes fine. 
    However everything i'm trying to fix this for a particular user on the computer fails. 
    Manually removing the packages gives an error. Something with a rollback error. Really strange. 
    Does anyone have tips and tricks on rolling out App-v and publishing/unpublishing the application and modifying application connection groups. 
    This is driving me bananas because we have a dynamic changing environment. Out of the box it works fine but don't try to change anything because the computer goes nuts. 

    So I found out this value:     <Wait RollbackOnError="true" Timeout="30"/>
    So if I perform the remove-appvclientpackage command I guess it sticks on this because something in the script goes wrong but how do I found
    out what goes wrong? 

  • 20 technical tips and tricks to speed SAP NetWeaver Business Intelligence

    20 technical tips and tricks to speed SAP NetWeaver Business Intelligence query, report, and dashboard performance (note: for technical people).
    http://csc-studentweb.lr.edu/swp/Berg/articles/NW2009/NW2009_20_technical_tips_tricks_speed_SAP_BI_performance.ppt
    Dr. Berg

    thanks....

  • How to deploy and tips and tricks for new Jdevloper users

    we currently use forms, but we are planning to try new modules in jdeveloper 10. I have few questions. We developed sample emp/dept screen as per the demo.
    1.Can some one explain how source/excecutable works.. In forms we move fmb file from client to unix and compile to get fmx into my forms_path where my IAS is running.
    2. how to run the applications
    3. Any tips and tricks of start using jdeveloper.
    we can only use Jdev10, as IE7 is not approved for us.
    Thanks
    Lalitha
    Edited by: Lalitk on Nov 14, 2008 2:40 PM

    We are trying to install ADF runtime lib, from jdeveloper it is asking server home which is on UNIX (/opt/oracle/product/10gas) and it is not taking... our connection is sucess.. Alternate option it is saying is install from zip.. Do you think we are making any mistake..
    If you are deploying to Oracle Application Server Release 2 (10.1.2), you have to perform some additional steps before you can run your ADF applications:
    2. You need to install the ADF runtime libraries on the application server. This is because the ADF runtime libraries that were shipped with Release 2 (10.1.2) need to be updated. To install the ADF runtime libraries, see Section 34.12.1, "Installing the ADF Runtime Libraries from JDeveloper". "
    Can someone please help? thanks lalitha

Maybe you are looking for

  • Dropped and now it won't charge... should I buy a new mac?  HELP!

    So... a terrible thing happened. While walking by my computer, my foot caught the power cord and pulled my computer off my bed. When it fell to the carpet, it fell directly on the part that the power adaptor plugs into my laptop. Long story short, it

  • Validation with jaxp 1.3 and xml-schema

    I'm totally green when it comes to xml&jaxp. Using jse 1.5 (jaxp 1.3), I'm trying to have my app parse and validate an xml doc with xml schema. I want the validation to happen using the schema specified in the xml doc. Also, I'd prefer if my applicat

  • Can you upload a PDF fillable form created from LiveCycle

    I know that these forms are HTML forms. I am wondering if I can upload a form that I created in LiveCycle Designer with Acrobat Professional. Can I upload the form, instead of designing it online through Forms Central?

  • [BUG] Upgrade corrupts photo book layouts!

    Here's something to add to the plethora of bugs in iLife'11. Whenever I open a photo book that was created with an earlier version, I briefly see the "Upgrading photo book-" message, and after that, all photos are default-zoom and centered at their s

  • External table -Spanish

    I have an external table as described below. One record of the csv has these values: 104,Referencia de reclamación,ES. But when I query the table, TP_DESC, here are the values I get: 1,Referencia de reclamaci�S, null. How do I get it to display the S