Post-power surge question. Please help.

I just had a power surge and my G5 iMac shut off. However, my external hard drive did not. I restarted my computer and the external hard drive is not appearing on the desktop. I don't know what to do. Should I simply shut off the external hard drive and restart it? I would really like not to tank the external hard drive. We're supposed to getting high winds tonight from Hurricane Earl, so I need to get this straightened out rather quickly so I can shut everything down properly.
I will appreciate any help or suggestions.

It's likely that the external drive isn't 'mounted' and also possible that any firmware in the drive (depending on the model) may be wedged. A simple restart (power off, then back on) will probably solve the problem. If you're worried the Mac really did mount the drive but just isn't showing it on the desktop, you can check.
Open "Disk Utility" -- it's in the Applications -> Utilities folder. The left margin of Disk Utility will show all local drives and filesystems visible to the Mac whether the filesystems are actively mounted or not.
If the external drive does not show up in Disk Utility's list, then the filesystem isn't mounted. Power off the drive. Wait several seconds to allow it to spin down. Then power it back up. It should appear on the Mac after a short delay.
If the external drive is formatted with an HFS+ "Journaled" filesystem, your drive should be fine (no corruption) even though it suddenly lost power. If it happened to be in the process of performing a 'write' (e.g. saving a file) then that file may be incomplete, but the drive & filesystem itself should be fine.

Similar Messages

  • Power supply question, please help!!!

    I think I need a new power supply, but I want to make sure I get a good one. I'm currently running a no name 400w that came with the case and I'm having a problem with the computer rebooting while running 3D Apps, such as games. I have been having this problem for a while now and have been replaceing/upgrading parts (motherboard, video card, & RAM) as I have the money, but it always does it. The only thing I can think of is the power supply, so I want to buy a new one. I can get a Thermaltake Purepower 420w for a good price but i want to make sure it power my system.
    The Thermaltake PSU specs are:
    +5V = 40A
    +3.3V = 30A
    +5V & 3.3V Max = 220W
    +12V = 18A
    +5VSB = 2A
    My current system specs are:
    MSI KT6 Delta LSR Motherboard
    AMD Athlon XP 2000+ CPU with retail HSF (Will get a 2800+ next week)
    Kingmax 512Mb PC3200 CL 2.5 RAM
    Seagate 80Gb ATA100 Hard Drive (Will be a Seagate 120Gb SATA Soon)
    Lite-on 4x DVD+RW Drive
    Lite-on 16x DVD-ROM Drive
    Mitsumi 1.44Mb Floppy drive
    ATI Radeon 9800 Pro 128Mb Graphics Card
    Hauppauge WinTV TV/FM Tuner w/Remote
    Conexant SoftK56 V.90 Modem
    2x CoolerMaster 80mm LED Case Fans
    Please help me!!! Thanks

    Quote
    Originally posted by Mikeb66
    Quote
    Originally posted by RobertJasper
    Ok, I found an Enermax 350w that I can afford, but it's only 350w, yet is has 26A on the 12V line. It's specs are:
    +5V = 32A
    +3.3V = 32A
    +5V & 3.3V Max = 185W
    +12V = 26A
    +5VSB = 2.2A
    Would this be good?
    Sounds pretty good... The main consideration is the amps developed on the 12v rail, anything over 18a is cool.  This PSU develops 26a so no probs.
    One thing though, don't try running a large amount of internal peripherals (Hard drives, cd rom drives, dvd drives etc.).  If you do you will need more watts  
    Good luck
    Sorry My Bad.  Gomerpile is right, for that AGP card you will need 430 watts minimum, I had similar probs trying to run my 9700 pro with a dodgy PSU

  • It's already the third time that i post the same question, please help me!

    I am writing a simple guestbook that is able to insert and fetch text and image from database and display them. There is a html that forms the parameters to this servlet, some text information such as "name", "address" and one picture. Insertion and fetching of text and images works sepearately, but when i combine them there is a conflict between "doGet" and "doPost". My text insertion only works with "doGet" (don't know why, but when i type "doPost" it does not work) while image insertion only works with "doPost" since i am using "Multipartrequest" to read the image.
    Since i write "doGet" in my code, the exception is following
    java.io.IOException: Posted content type isn't multipart/form-data
    SQLB.doGet(SQLB.java:42)Following are the codes , please give me a hand, many thanks!!
    the problem line that causes exception is marked with ////////////////////////////////// above in red color
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.awt.image.*;
    import com.oreilly.servlet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.oreilly.servlet.ServletUtils;
    import java.net.*;
    import java.sql.*;
    public class SQLB extends HttpServlet{
        Connection con;
        PreparedStatement pstmt=null;
        public void init(){
         //connection need url, username and password
         String url="jdbc:mysql://atlas.dsv.su.se/db_5974722";
         try{
             new com.mysql.jdbc.Driver();
             con = DriverManager.getConnection(url, "usr_5974722", "974722");
         }catch (Exception ex){}
        public void doGet(HttpServletRequest req,HttpServletResponse res)throws IOException, ServletException{
         //get the text fields information     
         String namn=req.getParameter("namn");
         String epost=req.getParameter("epost");
         String hemsida=req.getParameter("hemsida");
         String kommentSQLB.doGet(SQLB.java:42)ar=req.getParameter("kommentar");
         //get the pic as file
         MultipartRequest mreq=null;
         PreparedStatement pstmt1=null;
         PreparedStatement pstmt2=null;
         res.setContentType("text/html");
         String mime=null;
         File file=null;
         File dir = (File)getServletContext().getAttribute("javax.servlet.context.tempdir");
         mreq = new MultipartRequest(req, dir.getAbsolutePath(), 5000000);
         mime= mreq.getContentType("file");     
         file = mreq.getFile("file");
         Statement stmt=null;
         ResultSet rs=null;     
         //first save all the information to the database
         //then go through it and print out all the content
         //both tables have id as key
         try{
             new com.mysql.jdbc.Driver();
             //save the picture
             pstmt2 = con.prepareStatement("INSERT INTO picture(p,type) VALUES ( ?, ?)");
             FileInputStream fis = new FileInputStream(file);
             byte[] data=new byte[(int) file.length()];
             fis.read(data);
             fis.close();
             pstmt2.clearParameters();
             pstmt2.setBytes(1, data);
             //another way to insert blob
             //pstmt2.setBinaryStream(3,fis, (int)file.length());
             pstmt2.setString(2,mime);
             pstmt2.execute();
             //picture saving done
             //save other text information
             pstmt = con.prepareStatement("INSERT INTO guestbook (NAME,TIME,EPOST,HEMSIDA,KOMMENTAR) VALUES(?,?,?,?,?)");
             pstmt.clearParameters();
             pstmt.setString(1,namn);
             pstmt.setString(2,new java.util.Date().toString());
             pstmt.setString(3,epost);
             pstmt.setString(4,hemsida);
             pstmt.setString(5,kommentar);
             pstmt.execute();
             //text informatin saving done
             //pstmt1=con.prepareStatement("DELETE FROM picture");
             //pstmt1.execute();
             //print the guestbook information and invoke the SQLC servlet
             //to display picture
             String queryprint="SELECT * FROM guestbook";
             rs=pstmt.executeQuery(queryprint);
             PrintWriter out=res.getWriter();
             out.println("<HTML><HEAD><TITLE>guestbook</TITLE></HEAD>");
             out.println("<BODY>");
             while ( rs.next() ) {
              String name = rs.getString("id");
              out.println("TID:  "+ rs.getString("TIME"));
              out.println("<br>");
              out.println("FR�N: ");
              out.println("<a href=\"rs.getString(HEMSIDA)\">"+rs.getString("NAME")+"</a>");
              out.println("<br>");
              out.println("e-post");
              out.println("<a href=\"mailto:"+rs.getString("EPOST")+"\">"+rs.getString("EPOST")+"</a>");
              out.println("<br>");
              out.println("Kommentar:  "+rs.getString("KOMMENTAR"));
              out.println("<br><br><br>");
              out.println("<br>");
              out.println("<img src=\"http://localhost:8080/ip/servlet/SQLC?id=" + name+ "\">");
             out.println("</body>");
             out.println("</html>");
                rs.close();
             pstmt.close();
                con.close();
         catch (Exception e){
             e.printStackTrace();
    }

    do you send the mulitipart MIME type like this ?
    <FORM action="youraction"
           enctype="multipart/form-data"
           method="post">

  • After a few minutes on safari it freezes everything i can't even force quit i have to shut off by holding the power button down please help me with this. thanks

    everything freezes i can't even force quit i have to shut off by holding the power button down please help me with this. thanks

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • I do forgot my Apple ID security question, please help me how to rescue email address or how to reset Apple ID security questions?

    I do forgot my Apple ID security question, please help me how to rescue email address or how to reset Apple ID security questions?

    From another post:
    On your browser, whether Safari, Google Chrome or otherwise, navigate tohttps://appleid.apple.com.
    Once here click Manage your Apple ID button and sign into your iCloud account. Here, on the left side select Password and Security and this will list options on the right side. You should be able to see an option to reset your security questions.
    Note other links in realtion to rescue email address:http://support.apple.com/kb/HT5312
    If you cannot see or reset your security question, or even obtaining an error, then you would have to contact Apple directly: http://support.apple.com/kb/HE57. Here you would explain the issue, transfer you to an Account Security Agent who will be able to veritfy your identity and assist you in the resetting of you security questions.

  • HT2968 I can not update several of my apps that i have purchased a while back in my Apps Store on my MacPro. Because it keeps using my old @me account for iTunes and i don't remember the password or security question, Please help?

    I can not update several of my apps that i have purchased a while back in my Apps Store on my MacPro. Because it keeps using my old @me account for iTunes and i don't remember the password or security question, Please help?

    Hi AlphaCentori,
    If you are having issues accessing the Apple ID that was used to originally purchase those apps, you may find the following article helpful:
    Apple Support: Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/ht5312
    Regards,
    - Brenden

  • I want to change my apple id password but I forgot the security questions please help me some using my icloud I'd

    I want to change my apple id password but I forgot the security questions please help me some using my icloud I'd and if confirmation is must so please phone number is mine please send a code please help me my apple

    Welcome to the Apple community.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact AppleCare, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • My apple id have been blocked an i do not remember the identity or security question please help what can i do?

    my apple id have been blocked an i do not remember the identity or security question please help what can i do?

    If your account is disabled you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on your iPhone and iPad by tapping on your id in Settings > iTunes & App Storeand then log back in so as to 'refresh' the account on it.
    For your security questions, if you have a rescue email address (which is not the same thing as an alternate email address) on your account then the steps half-way down this page will give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address then you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699 (you can also try this link if you can't get your account enabled via the above)
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 link above to add a rescue email address for potential future use

  • Hi, I have traveled the country and have forgotten my security questions please help me thank you

    Hi, I have traveled the country and have forgotten my security questions please help me thank you

    Call Apple to help reset your Security Question.
    http://support.apple.com/kb/HT5699

  • HT201303 I forgotten my answer of security questions, please help me. Thank you !

    I forgotten my answer of security questions, please help me. Thank you !

    You need to ask Apple to reset your security questions; as described in this article, it can be done in Vietnam by phoning 1-201-0288 and then 800-708-5413.
    (107433)

  • HT201363 Hello, I have my pass word, I have my Apple ID, but itunes think I am buying a song for the first time and is asking me 2 security questions, please help, what should i do?

    I cannot remember the answeres to my security questions, please help.

    You need to ask Apple to reset your security questions; this can be done by phoning AppleCare and asking for the Account Security team, or clicking here and picking a method, or if your country isn't listed in either article, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (105959)

  • I want to change my security question in my apple accnt. but the problem is, there is no Link shown that i could reset or change my security questions. please help!!

    i want to change my security question in my apple account. but the problem is, there is no Link shown that i could reset or change my security questions. please help!!

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (117399)

  • I was hacked i kept getting emails that some purshcaes were being made when no one was downloading them and i guess they hacked my apple iD because they changed the security question and now i cant change anything without the security question please help

    I was hacked i kept getting emails that some purshcaes were being made when no one was downloading them and i guess they hacked my apple iD because they changed the security question and now i cant change anything without the security question please help i want to reset the security question but i cant.

    You should contact Apple by phone as soon as possible. You'll need to change your Apple ID and all passwords.
    See Contact Apple at the bottom right of this page.
    Hope this helps.

  • HT5312 i forgot my secret question, please help me this problem. Thanks

    I forgot my secret question, please help me this problem. Thanks

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    And/or see the  More Like This  section on the right.

  • Hi I live in Iran and I forgot the answer to the security question please help me thanks

    Hi I live in Iran and I forgot the answer to the security question please help me thanks

    How to reset your Apple ID security questions.
    Go to appleid.apple.com, click on the blue button that says 'Manage Your Apple ID'.
    Log in with your Apple ID and password. (If you have forgotten your Apple ID password, go to iforgot.apple.com first to reset your password with a password recovery email)
    Go to the Password & Security section on the left side, and click on the link underneath the security questions that says 'Forgot your answers? Send reset security info email to [email]'.
    This will generate an automated e-mail that will allow you to reset your security questions.
    If that doesn't work, or  there is no rescue email link available, then click on 'Temporary Support PIN' that is in the bottom left side, and generate a 4-digit PIN for the Apple Account Security Advisor you will be contacting later.
    Next, go to https://getsupport.apple.com
    (If you see a message that says 'There are no products registered to this Apple ID, simply click on 'See all products and services')
    Choose 'More Products & Services', then 'Apple ID'.
    A new page will open.
    Choose 'Other Apple ID Topics', then 'Forgotten Apple ID Security Questions'.
    Click the blue 'Continue' button.
    Select the contact option that suits your needs best.

Maybe you are looking for

  • Can a Lightroom subscription be used on more than one computer?

    I have two separate computers - one a laptop, one a desktop, both capable of running Lightroom. If I get a Lightroom subscription, can I use the one subscription on both of them? I'm happy with the idea of an online check to ensure that only one is r

  • Error while creating user

    Hi, I am trying to craete user in portal which is ending up with error  " an error occured in the persistance.the original message was LDAP- error code 50-00000005 SecErr DSID-03151E04, Problem 4003(Insuff_Access_Rights) data 0 : something like taht.

  • International Travel Adapter Question

    I am thinking of bringing my MacBook to Turkey.  Do I need just an adapter or an adapter and a converter to use my laptop?  Thanks.

  • If I got my iphone wet do you have to use white rice or can you use brown rice?

    I accidentally got my iPhone 5c wet.  Only had brown rice. Is that ok or does it have to be white rice?                                       

  • View metadata near his image in a html file?

    Hi I am new to this board, I wanted to ask if there is a way to publish the metadata of an image, (or filtered metadata), into a html file, (for expample near the image). It want to publish photos with some of the metadata of it made readable on an e