Finder not showing icons

moments ago my imac froze up and i had to restart. when i came back the icons in my finder window were missing. i ran disk utility and corrected a bunch of permissions for lack of knowing what else to do. are there other utilities i can run or anything i can do to get this thing running correctly again besides rebuilding the system?
thanks,
ben

The hard shutdown can't be helped sometimes. You just got unlucky this time. Having a complete backup is a good thing.
Yes, you are correct you could perform the zero out and then clone the iBook. Perhaps better, to re-install from your install disks then use migration assistant in target mode because of any hardware specific elements on the iBook.
Steps for zeroing the drive Disk Utility:
1. Insert your Mac OS X CD-ROM disc or Restore DVD disc, then restart the computer while holding the C key until you see the spinning gear.
2. Once started up from CD or DVD, choose Disk Utility from the Installer menu.
Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from disc to access Disk Utility.
3. Choose the entire disk (top icon).
4. Choose erase tab.
5. Click on Options
6. Choose "write zeros".
7. Erase
This will take a bit of time because the computer is physically writing zeros to each block. Take a break, have some tea, read a book.
Good luck, let us know.
-mj
[email protected]

Similar Messages

  • Finder not showing icon thumbnail for some excel documents

    I have two MS Excel documents that are, except for the data contained within, virtually identical. One was created as an offshoot of the other.
    In the Finder, the original displays a thumbnail for the icon, but the offshoot copy displays the standard Excel icon with the (XLSX) "button" in the lower left corner.
    I've tried doing a "Save As" and giving the file a different name. That didn't work.
    I've checked Get Info on both, and the only anomaly I see is that the offshoot is a larger file, despite containing fewer tabs and less data. (Curiouser and curiouser.)
    Would appreciate any ideas, as I'm stumped.
    (Off-topic: Strange, isn't it, that the form on discussions.apple.com for submitting questions doesn't allow Safari to do it's on as-you-type spellcheck? Instead you have to click a spellcheck button on the form itself! ***, Apple?)

    Hi Nick,
    Try deleting the Finder .plist file.
    Go to ~/Library/Preferences. Move the com.apple.finder.plist file to the Trash. Restart your Mac.
    ~ (Tilde) represents your home folder
    Carolyn

  • My mac book pro load system and not show icons only show pointer

    my mac book pro load system but not shows icons only show pointer

    Can you open Applications by navigating to the Applications folder via the Finder? When you write that your computer doesn't show icons, do you mean your Dock icons? Can you see the Dock as all?
    Need just a little more information...
    Clinton

  • Mavericks 10.9.1-Problem with finder not showing peripheral hardware

    After upgrading to Mavericks (10.9.1) my Finder doesn't show new hardware in Devices. For example, Finder not showing iPod when i plug into the keyboard's usb. i have other examples  of the same problem, such as trying to find a hard drive detached from an old computer. anyone know if i can configure Finder to show all peripheral (hardware) devices? maybe i need to plug the peripherals into back of the iMac rather thatn into my keyboard usb (which i have not tried.) Thanks in advance.
    Charlie

    I had a similar issue as you did -- for a few weeks now I've been suffering through agonizingly slow Contacts performance.
    The way I resolved it was:
    1) Quit Contacts
    2) Go to system preferences and go into iCloud, then uncheck contacts -- choosing to delete from mac.
    3) Go into system preferences and to Internet Accounts and again uncheck contacts under any of the accounts it's enabled on (gmail, yahoo, etc).
    4) Go to your user's library folder (easiest way is to open a finder window, hold down the option key on the keyboard and from the Go menu, select Library).
    5) Delete anything referring to Address book or com.apple.address book....   -- check these folders in particular:
         - Address Book
         - Application Support
         - Caches
         - Preferences
    6) Restart your computer
    7) Go back into System preferences and enable contacts from wherever you want (iCloud, etc.)
    8) If it's not quite enabling (appears to enable, but checkbox doesn't show), then do one more restart of the computer.
    9) Now open Contacts and allow it to sync

  • Finder Not showing Sidebar

    In my finder not showing sidebar.
    I have checked finder preferences etc..

    Finder menu > View > Show Sidebar.
    Does that help?
    Sometimes I have to select it twice to get it to appear (Finder likes to ignore simple requests with no explanation ).
    You may also be able to drag from the left edge to make it appear too, but that can also be hit or miss.

  • LaunchPad Does Not Showing icons Of Few Apps

    Hi Guys I Got A Realy Bug Problem, Launchpad does not showing icons on some apps, but names - it does.
    its realy annoying, here is picture of the problem(maybe in file not so sure):

    So here is very simple solution to the problem... i just did on my MBP  and it worked
    Open application folder --   if you have launchpad icon on your dock - good   if not then drag the icon ( rocket icon) from application folder  to Dock. 
    Now, whatever icon is missing, drag that icon from Application folder to the launchpad icon on the dock.  Then check if the icon is visible now by clicking on launchpad button or F4 key.
    For me it worked flawlessly.
    let me know

  • Dvt alert not showing icons on graph

    I am showing icons on the line graph with the help of dvt:alert component. Code snippet:
    Alert map:
    public Map getAlertMap() {
    Alert alert1=new Alert();
    //alert1.setXValue("2011-10-05 10:25:34");
    alert1.setXValue("20");
    alert1.setYValue(48.00);
    alert1.setId("al1");
    Alert alert2=new Alert();
    // alert2.setXValue("2011-10-06 12:56:09");
    alert2.setXValue("25");
    alert2.setYValue(39.00);
    alert2.setId("al2");
    Alert alert3=new Alert();
    alert3.setXValue("2011-10-07 12:5:09");
    alert3.setYValue(39.00);
    alert3.setId("al1");
    alertMap.put(1, alert1);
    alertMap.put(2, alert2);
    alertMap.put(3, alert3);
    return alertMap;
    Graph data:
    public List getLineGraphData() {
    Object [] a = new Object[]{"10","20","30","40"};
    // Object [] b = new Object[]{"USD","","",""};
    Object [] c = new Object[]{32.00,48.00,39.00,47.00};
    for (int i = 0; i < 4; i++) {
    lineGraphData.add(new Object[]{a[i],null,c});
    return lineGraphData;
    Jsff:
    <dvt:lineGraph id="lineGraph1" subType="LINE_VERT_ABS"
    tabularData="#{pageFlowScope.DatapointsChartBean.lineGraphData}">
    <dvt:background>
    <dvt:specialEffects/>
    </dvt:background>
    <dvt:graphPlotArea/>
    <dvt:seriesSet>
    <dvt:series/>
    </dvt:seriesSet>
    <dvt:o1Axis/>
    <dvt:y1Axis/>
    <dvt:legendArea automaticPlacement="AP_NEVER"/>
    <dvt:alertSet alertMap="#{pageFlowScope.DatapointsChartBean.alertMap}"/>
    </dvt:lineGraph>
    The same code is working in different project while its not working on my application. I doubt whether its an issue with adf library or web.xml entry.
    I am able to see graph but not icons. Can someone help me in this, and please tell me what adf libraries are requried for dvt:alert which is different from dvt:lineGraph

    Very strange!
    It should be safe to remove the file. As for the icons being gone, click on Finder in your dock, then go to the "Finder" menu, right next to the  in your menubar. Select "Preferences..." In the window that appears, make sure the boxes are checked that refer to the icons that should show on your desktop.
    If that doesn't fix it, try creating a new user account on your Mac.
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8235.html
    Log into that account and see if icons show up on your desktop. If so, there might be a problem with the preferences and settings files in your original user account.
    Let us know if that helps!

  • Finder not showing file comments

    I have my Finder window customized to show Kind, Size, Date Added, and Comments for all my files. The issue is that the Comments column does not show any info even though the file itself contains that information in its metadata. This info is visable by certain applications such as iTunes and Traktor. The files I am working with specifically are mp3. Why

    Very strange!
    It should be safe to remove the file. As for the icons being gone, click on Finder in your dock, then go to the "Finder" menu, right next to the  in your menubar. Select "Preferences..." In the window that appears, make sure the boxes are checked that refer to the icons that should show on your desktop.
    If that doesn't fix it, try creating a new user account on your Mac.
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8235.html
    Log into that account and see if icons show up on your desktop. If so, there might be a problem with the preferences and settings files in your original user account.
    Let us know if that helps!

  • Finder not showing documents folder under user

    In finder, if I click user (my name) in left column, in the right column it no longer shows the document folder.
    If I click on documents in the left column, they display, and show the path as (my name)/documents (I think I have that turned on in preferences).
    In other words, documents is where it should be, just not showing up in finder under user (my name).
    What is going on?
    bob

    It's possible that the invisible bit got set. Most often it gets set, and no one knows why, on drives. But I've seen it get set for folders as well (although having it set on the Documents folder is, I think, a new one). If this the case and you have the Path item in the window toolbar, when you select it with the the Documents folder open, you will see that the Docs folder icon in the list looks greyish compared to the other items. Even if you aren't sure whether this is the problem, you can run this Terminal command:
    chflags nohidden ~/Documents
    Launch Terminal from your Utilities folder, copy and paste the above line, and press the Return key. If the invisible bit got set, that will fix it. If that isn't the problem, then nothing will happen. The command might fix it, and it won't harm anything at all.
    Francine
    Francine
    Schwieder

  • Finder not showing camera, Image Grab sees it

    Hey,
    I have a Canon EOS 400D, but when I plug it in via USB it fails to show up in Finder.
    I can grab the images from the camera using Image Grab, so OS X definitely sees it -- just for some reason, it's not showing up on the Desktop or in the Finder sidebar, as other cameras (or flash disks, iPods, etc) do.
    Any thing I can do to make it show up?
    Thanks!
    --Public.

    I don't know about that model specifically, but for a camera to appear in the "Finder", it must be able to function as a "mass storage" device. I get the impression that many Canon cameras do not support this mode...

  • Finder not showing files when I open folder

    A folder on my external hard drive which I was just editing/ doing some file organization with,
    contains 60gb of data.
    Lots of files and folders in it.
    For no apparent reason,
    it is now showing nothing in it when I open it,
    Still says size is 60gb, but when I open it, the files do not show.
    What is going on?
    I need to work on these files.
    If you can help me with this, it would a huge help.
    Thank you.
    ps. in Mountain Lion 10.8.2, late 2011 macbook pro.

    [Please note, the plugin I mention is NOT a finder substitute. It is a plugin, and merely gives the finder tabs.
    If I disable this plugin, the result is the same in the "original" finder. Although when I say "original" I was using finder all along anyway.]
    I shouldn't have mentioned it, it is superfluous info.
    I dragged and dropped files using finder, that's all that needed to be said really.
    It would obviously make no sense to ask questions about finder if I was not using finder.
    Okay, I have to say, this is incredibly strange :
    After comparing the two separate drives,
    it seems I DID actually move the files to another folder [and forgot / was unsure of this],
    however, the info box still says the original folder I mention is 60gb, with one file [which does not appear when I open it]
    and finder is not displaying the increase in size in the folder [I'll call it folder 2] I moved the files to.
    I wonder if I delete the original folder, are the sub-folders I moved to folder no.2 going to be deleted?
    Are they still somehow connected to the original folder?
    I was moving things around to try and merge all my files and folders into one folder [folder no.2]

  • Finder not showing correct free space for DROBO

    I have replaced a "working" 16TB (8*2TB drive) DroboPlus with (3*4TB +5*2TB) drives after a low space warning ( just under 1TB free with double redundancy)
    I Am having the problem with free memory being shown as 439.4 Mb from Yosemite finder for my FW800 connected DroboPro (1.2.2) ( also using USB2)
    (It very very occasionally it shows the correct value but there does not seem to be a logic in it.)
    MBP (early2011) 10.10.1
    running just one 16TB volume,
    Drobo Dashboard (2.6.3) shows 9.81TB used with 6.18TB free  ( from 20TB 4+4+4+2+2+2+2+2 single redundancy=3.94TB)
    "About this mac">Storage shows 6.8TB free of 17.59TB (with data type other=10.79TB)
    Disk Utilty shows Drobo as 17.59TB with 6.8TB available.
    How can I get finder to show a more "correct" value, as I cannot save any files (>439Mb) to it despite plenty of memory available.
    Other applications and OS DiskUtility and Storage show correct values.
    I have tried saving a small file at route level and also preventing spotlight from indexing it, both make no difference.
    Drobo non-Suport do not want to know as the DroboPro is no longer available.  Caveat Emptor

    What is the source that you are looking at?
    Download OmniDiskSweeper and/or Grand Perspective and open it.  How does it compare with your MBP data?
    Ciao.

  • Finder not showing anymore

    Hi everyone,
    I'm kinda new to Macs, and i got a problem with one at work. When it boots, i have the mouse pointer and can move it, the deamons are launched correctly and network works just fine, i can even use ARD to connect to that MAC, but the finder never shows up.
    I think they might be some command lines in order to run some tests, someone has an idea ? I can give more details if needed.
    Thx.

    Sorry i think i didn't manage to explain it exactly how it is.
    I got a blue screen (my background color in fact), and no dock, no finder, and i tried a few keys combination without success. In fact i can't do anything with mouse and keyboard. The only functionnal access i have is SSH, that's also why i told about command lines.
    Thx =)
    EDIT : I have no icon neither ^^
    Message was edited by: Caillou

  • Finder not Showing all Drives

    I tried to back up one of my extra internal hard drives with a drag & drop feature in the program. However, when I dragged & dropped the hard drive it went poof and does not show up in the finder window anymore. It does show up in the disk utility and I verified the volumn to see if that would "bring it back", it did not. I've restarted, pulled the disk out and then remounted it. How do I get the computer to recognize the drive again. It doesn't show up anywhere but in the utility.

    Now that I removed the drive and then remounted it, it doesn't show up in the Utility. It was properly formated for Apple and has been working for a couple of years. I have no other MAC to try it on. But, like I said it was working fine until I drag & dropped it.

  • Finder not showing Desktop

    Running Mavericks, checked Finder Preferences and 'Desktop' IS checked to show... but it doesn't show the desktop in the left column any longer.  Finder _usually_ shows all my drives including internal, external USB, FW, and NAS.  Prior to Mavericks I _never_ had the problems showing or accessing anything.  Opening files stored on NAS from Apps like Photoshop CS4 sometimes works sometimes doesn't... storing an open file or even a new file on the NAS from PS CS4 almost never works now.  Have to first store to a USB or internal drive, then copy to NAS, then delete file on USB or internal so as not to clog drive with hundreds of client graphics files that I use repeatedly.
    Is Mavericks this buggy or am I doing something wrong?  I'm trying to keep my root HDD at least 1/3rd empty for performance sake. 

    Any chance the show / hide is not selected in your actual finder folder, not the preferences? I just went 'round with this for a half hour until I noticed that somehow the 'show' was clicked to 'hide' for some reason.....

Maybe you are looking for

  • No longer able to connect as admin user

    Using AirPort Express to network my iMac and MacBook. Now, after "upgrading" to 10.5.6, I'm apparently not being seen as an admin user when I try to connect to one Mac from the other. Before, when I opened Finder on either, I would see the other list

  • ITunes won't play song, even though pause button appears

    Recently my iTunes has stopped playing songs. If I click the play button, the pause button appears but the progress bar does not move and no sound is made. The volume on my computer is fine as I can still watch videos on youtube and such. I've recent

  • Want answer from Oracle about bug in Login Config Provider...

    Hello. Several days ago I posted a question about a potential bug in oracle.security.jazn.spi.LoginConfigProvider. No responses so far - Could someone at Oracle please comment about this? I am preparing to document my own solution, but I would prefer

  • Strange issues after 10.6.4 update

    Hi there I've noticed a few weird things after upgrading to 10.6.4: 1) All my fonts in Microsoft Office applications have been set to default. After changing then, they still revert back. 2) When browsing the web, TinyMCE boxes display weird characte

  • Migration problems from Jdk 1.3 to Jdk 1.4.2_05

    ?Hi, We have migrated our code from Jdk 1.3 to Jdk 1.4.2_05 and we are facing the following issue: We have a table which displays results retrieved from DB, When we migrated the table headers were not displayed properly due to some width parameters,