VERY slow startup and shutdown, CD stuck

I've been looking all over these forums for some help with this problem, but every solution I find seems to make the problem increasingly complex.
I have an iMac that I got in 2010 running OS 10.6.8. I've been using a Seagate GoFlex drive with Time Machine, and noticed the other day that it started making a clicking sound and wouldn't back up anymore, so I downloaded SeaTools in order to run a diagnostic on it. When I restarted my computer to finish installing SeaTools, it got stuck on the blue screen while shutting down, so I held the power button to turn it off, and then turned it back on. It took a long time to turn on (hung up on the blue screen again), and once the desktop came to life, I was unable to type or click on anything for several minutes.
I installed some updates, thinking that might help, but when the computer restarted after installing them, it got stuck again on the blue screen, so I manually turned it off. When I turned it back on, it hung on the blue screen for at least 10 minutes, and I finally just held the power button to shut it down and try restarting in safe mode, which is where it is now.
Another thing that seems related is that there was a CD in the drive that had been there for a few days, with an icon on the desktop. Suddenly, the desktop icon is no longer there, and I can't get it to eject, though I can hear the it spinning when I wake it from Sleep or when I press the eject button. When I try to view Serial-ATA or Disc Burning in the System Profiler, it gets stuck on a spinning wheel and stops responding. 
Disk Utility also gets stuck on "Gathering Disk Information" so I can't do anything there, either. Between this and the CD issue, it seems like a lot of suggested fixes for the boot/shutdown problem are not possible to do.
Anyone have any insight or ideas?

Never mind, I figured it out! In case anyone has the same problem, Seagate Diagnostic was the culprit (should have realized right away, oops). More info (and directions for fixing) here:
http://forums.seagate.com/t5/GoFlex-GoFlex-Desk-GoFlex-Pro/How-can-I-un-install- Seagate-Diagnostics-for-Mac/m-p/55775

Similar Messages

  • 10.6.1 Slow Startup and Shutdown

    Did anyone notice the difference between the 10.6.1 startup and shutdown times and the 10.6 times ?
    I had to do a clean install of 10.6 and ignore the 10.6.1 update to get back speed in startup and shutdown.
    Is there anyway to solve this.
    Thanks.

    I had the same problems, and I figured out the cause. It seems that somehow the ownership of my root directory (/) wasn't assigned to the root account anymore, but to myself instead. This made the kernel prelinking fail since it requires that root is the owner. This is how you solve this after launching the Terminal app:
    {quote:title=terminal commands}sudo chown root:admin /
    sudo kextcache -system-prelinked-kernel
    sudo kextcache -system-caches{quote}
    You'll have to enter your password after the first command.
    Hope this helps someone, since it was really frustrating to have these slower startup/shutdown times for me.

  • Slow startup and shutdown

    Hi.... I use a Toshiba satellite a505-s6980 so when I start it up or shut it down it takes from 10-15min to do it ..... and not just that everything seems to be slower than ever ... I ran a lot of tune-up programs but no use .... I did the check for badsectors ..Nothing  ...... One of the results of one test (event viewer) sayed  Critical about this boat problem(boat duration was 321654ms and isdegradation false) and there are a lot of events having these IDs (100,101,103,108,200,203,300,303,351,302,500,501,109,110))  .... and in the performance test the rate was 2.5 for disk data transfer rate , 3.4 for gaming graphics , 4.1 for graphics and 4.7 for both memory and processor. I hope anyoneto give me an answer for this problem.
    Thanks a lot .
    Solved!
    Go to Solution.

    Then it's best to start over by restoring the hard disk to its original out-of-the-box contents using Toshiba recovery media. See the section Recovering the Internal Storage Drive, starting on p. 60 of the User's Guide.
       Satellite A500 Series User’s Guide
    That will replace everything on the hard drive. So you need to backup important files and reinstall added applications.
    -Jerry

  • Using launchd to send an email on startup and shutdown

    Hello All !
    I'd like to get an email whenever my Mac starts up and shuts down, since I have to leave it unattended for quite some long periods of time (and even with the help of a UPS, power goes out anyway...). My Mac runs under Mac OS X Lion.
    I found some help on the Internet, mainly from this page : http://www.syntaxtechnology.com/2009/06/email-on-shutdown-and-restart/ , which applies to Linux, and hoped it could work on Mac OS X (I thought at first I could just drop a script in something like /etc/init.d/ or /etc/rc.d/rc5.d but well... we have launchd instead...).
    The first method listed in the page above worked well, but sends an email only on startup (for a reminder: you add a line that starts with @reboot in your crontab, and a command that sends directly an email).
    I then tried to adapt the second method to Mac OS X, and succeeded partially: I wrote a small script based on what was shown on that page (a start and stop function, start gets called when the script is started, and stop gets called based on a trap on various kill signals, with an infinite wait loop: see below). I also wrote the plist file, loaded it in launchd and rebooted my Mac several times to test everything.
    I get an email on each startup (yeah!), but the shutdown mail gets sent only at the next startup. So I guess that postfix gets killed by the shutdown process *before* being able to send my shutdown email :-(
    So here are my main questions, if someone can help me:
    1. is there a way to precisely call a script during the shutdown process, meaning giving it a priority so it gets called before postfix dies ? (like the rc directories and the naming conventions (KnnScriptName and SnnScriptName) found on some Linux/Unix).
    2. is it possible to do that with launchd ? if not, what would be the Mac OS X sanctionned way of doing this ?
    Other things:
    3. my shell script writing ability is kind of rusty, so maybe I made some "very bad shell writingTM": l'm not sure putting an infinite while loop with a 15 second pause in it is the best way of telling a script to do nothing. There might other things in there that would make an Unix guru jump out of his chair: please tell me :-)
    This is my plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC “-//Apple Computer//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”>
    <plist version=“1.0”>
    <dict>
    <key>Disabled</key>
    <false/>
    <key>Label</key><string>org.amarante.startshutemail</string>
    <key>ProgramArguments</key>
    <array>
    <string>/Library/Scripts/startshutemail-launchd.sh</string>
    <string>start</string>
    </array>
    <key>RunAtLoad</key><true/>
    </dict>
    </plist>
    And this is the script that does the job:
    #!/bin/bash
    # PHL 20120604 startshutemail-launchd.sh
    # Send an email on startup and shutdown (version for launchd)
    # Based on script and explanations found here:
    # http://www.syntaxtechnology.com/2009/06/email-on-shutdown-and-restart/
    # Modification history
    # PHL 20120604 v01 First version
    # Environment variables #################################################
    DEST_EMAIL="[email protected]"
    SRV_NAME=Amarante
    EVENT_TIME=$(date +%Y/%m/%d-%H:%M:%S)
    RESTART_SUBJECT="[$SRV_NAME] $EVENT_TIME : System Startup"
    RESTART_BODY="This is an automated message to notify you that $SRV_NAME started successfully at $EVENT_TIME."
    SHUTDOWN_SUBJECT="[$SRV_NAME] $EVENT_TIME : System Shutdown"
    SHUTDOWN_BODY="This is an automated message to notify you that $SRV_NAME is shutting down now ($EVENT_TIME)."
    # Functions ##########
    stop()
    echo "$SHUTDOWN_BODY" | mail -s "$SHUTDOWN_SUBJECT" $DEST_EMAIL
    return 0
    start()
    echo "$RESTART_BODY" | mail -s "$RESTART_SUBJECT" $DEST_EMAIL
    return 0
    # Main part #########
    case $1 in
    stop)
    stop
    start)
    start
    esac
    # trap kill signals to send an email
    trap stop HUP INT QUIT ABRT KILL ALRM TERM TSTP
    # sleep until killed
    while :
      do
        sleep 15
      done
    Thanks for your help, and any comment :-)
    Paul-Henri

    Thanks a lot for your answer, Camelot, even if it sorts of confirm what I suspected. Pinging a machine from an external observer is a solution, but it will also report broken links problems and not only a computer shutting down, and it raises the next tier of problems, general network reliability after individual system reliability. It's something I'll have to look at for sure.
    It's weird there isn't any way to access the way the shutdown process works.
    One of the commenters (#14) on the page from Syntaxtechnology had a similar problem: he added a "sendmail -q" in his script to force sendmail to go to work and service the queue before shutting down, which I can try, but he also added a delay to the stop process of sendmail, which is something I'm not sure I can do on Mac OS X (and that might disappear one day with one of the OS updates).
    Unless there is a way to change the launchd.plist file for postfix and add an ExitTimeOut option in it (I found this idea here : https://discussions.apple.com/message/17229690#17229690 )
    Cheers,
    Paul-Henri

  • I have a very slow startup for a macbook pro after installing Maverick

    I have a very slow startup for a macbook pro after installing Maverick

    Try SMC and NVRAM resets:
    http://support.apple.com/en-us/HT201295
    http://support.apple.com/en-us/HT204063
    Then try a safe boot again:
    http://support.apple.com/en-us/HT201262
    Ciao.

  • Ipod classic 160GB very slow sync and cannot connect to itunes store windows 7 ansd itunes 10.6.0.40. I have now been trying for 3 weeks to restore my iPod. Really frustrated, any ideas would be welcome.

    Ipod classic 160GB very slow sync and cannot connect to itunes store windows 7 ansd itunes 10.6.0.40. I have now been trying for 3 weeks to restore my iPod. Really frustrated, any ideas would be welcome.

    Cured the problem! Reinstalled an earlier version of itunes from oldapps.com (version 10) now everything works as it should. I would suggest that if you are experiencing these problems that you do the same. I must say that it is a brave business decision on behalf of apple to effectively lock out all windows 7 users from their products and sales channels and I can only wish them luck in this very shortsighted policy.

  • Very slow broadband and connection keeps dropping

    Hello, we have been BT customers since August 2013, after previously being Freeola customers for many years.  We live in a very rural area, at the end of the exchange so we are never going to get amazingly fast broadband, we are estimated 1MB. 
    Previously using Speedtest.net at the beginning of the year we were getting 0.9Mbps, then in May our internet dropped and we couldn't get a proper connection or speed.  We contacted Freeola who after doing some tests, said that we had a copper line failure and to contact BT.  We did this and the copper line failure issue was fixed, an openreach engineer tested the line and we assumed all was fine.  But we were still getting very slow speeds and the connection kept dropping.  So we decided to switch to BT in August, we have put up with the slow speeds and dropping connection for 3 months hoping in vain that once we got a stable line the speed would increase and we would be back to were we expected to be.
    When we are using the internet, we very often get "Your connection has been reset" errors within our browsers.
    This has not happened, so I have decided to come on to this forum in the hope that we can solve this issue before my hair gets any greyer.  We have a BT Home Hub 4 so we have not got all the stats that previous HH had available. 
    Also as we are in a rural area our telephone connection is through overhead cables and as said previously we are at the end of the exchange.
    Please see below for the information that I have been able to get:
    Home hub stats:
    17:28:52, 28 Oct. ( 68.040000) DSL noise margin: 12.00 dB upstream, 9.50 dB downstream
    17:28:51, 28 Oct. ( 67.970000) DSL line rate: 448 Kbps upstream, 192 Kbps downstream
    Internet Connection Configuration
    Connection Information
    Connection time:
    4 days, 22:01:39
    Data Transmitted/Received:
    221.4 MB / 2.3 GB
    Bt Wholesale Broadband test:
    Download Speed: 0.02
    Upload speed: 0.34
    Ping latency: 0.00
    Further diagnostics:
    Master socket is
    I performed the quiet line test which wasn't too bad there was a very slight crackle, but it was with a wireless phone.
    Speedtest.net results:
    Ping: 463ms
    Download:0.13mbps
    Upload: 0.28mbps
    As said previously before the copper line failure we were regularly getting download speeds of 0.9mbps.
    Any help would be greatly appreciated.
    Solved!
    Go to Solution.

    Hi jacoma,
    Sorry to hear that your  having issues with your BT Retail services.
    You will either be on the ADSLMax (upto 8mbps) service or if your exchange has been BTw 21cn upgraded you maybe on the ADSL2/2+ (upto 12/20mbps) service depending on your line quality and length.
    However these upto speeds may not be the speeds you will get as ADSL broadband connections are very dependent on the distance from your property to the exchange and the quality of your line. The further away you are from your local exchange the slower your broadband speed will be.
    To enable the community to help you please see the advice below:
    Please see Keith's help guide here: Helping forum members to help you, it will go through some checks that are needed for us to help you.
    1) Are you in the TEST socket? if not can you please connect to the test socket and repeat steps 2, 3 and 4.
    All the below performed in TEST Socket:
    2) is there any noise on your line. dial 17070 option2 ,called quite line test, from landline phone. should be silent but slight hum normal on cordless phone.
    If there is any noise on your line such as crackling, distictive noise when the phone is connected to the TEST socket and doing the quiet line test then you need to report a line fault to BT Retail by dailling 151. Once the crackling or disticive noise has gone then your broadband should slowly recover.
    3) please post adsl line statistics 
    4) Can you please run a BT speed test (including IP Profile) http://speedtest.btwholesale.com (not beta version)[Best done with a wired, Ethernet, connection] After Quick Test is done you need to click "Further Diagnostics" to get IP Profile.
    ADSL Line Statistic Help:
     If you have a BT Home Hub like the one below...
     Then:
     1) Go to http://192.168.1.254 or http://bthomehub.home
     2) click Settings
     3) Click Advanced Settings
     4) Click Broadband
     5) Click Connection or sometimes called ADSL (see picture Below)
    The direct Address is http://bthomehub.home/index.cgi?active_page=9116 (for bthomehub3.A firmware ending in 1.3)
    or http://bthomehub.home/index.cgi?active_page=9118 (for bthomehub3.A firmware ending in 94.1.11)
    You will need to copy and past all the adsl line statistics ( Including HEC, CRC and FEC errors). You may need to click " More Details"
     If you have a HomeHub 4 then the majority of the ADSL Stats shown in the previous Hubs will not be there.
    for HH4 users you can go to hub manager then select troubleshooting then logs and are look for 2 entries together which will show theconnection speed and noise margin for when your HH4 last sycned with the exchange.
    There are more useful links on Keith's website here: If you have an ADSL connection, please select this link
     cheers
    I'm no expert, so please correct me if I'm wrong

  • Shell Script  for Startup and Shutdown the database

    Hi,
    i want Shell Script for Startup and Shutdown the database in Solaries.
    could any one can hep me where i can get this script. or send to me to [email protected]
    Thanks & Regards,
    Gangi reddy

    SHUTDOWN
    SHUTDOWN ABORT]
    Shuts down a currently running Oracle instance, optionally closing and dismounting a database.
    Terms
    Refer to the following list for a description of each term or clause:
    ABORT
    Proceeds with the fastest possible shutdown of the database without waiting for calls to complete or users to disconnect.
    Uncommitted transactions are not rolled back. Client SQL statements currently being processed are terminated. All users currently connected to the database are implicitly disconnected and the next database startup will require instance recovery.
    You must use this option if a background process terminates abnormally.
    IMMEDIATE
    Does not wait for current calls to complete or users to disconnect from the database.
    Further connects are prohibited. The database is closed and dismounted. The instance is shutdown and no instance recovery is required on the next database startup.
    NORMAL
    NORMAL is the default option which waits for users to disconnect from the database.
    Further connects are prohibited. The database is closed and dismounted. The instance is shutdown and no instance recovery is required on the next database startup.
    TRANSACTIONAL [LOCAL]
    Performs a planned shutdown of an instance while allowing active transactions to complete first. It prevents clients from losing work without requiring all users to log off.
    No client can start a new transaction on this instance. Attempting to start a new transaction results in disconnection. After completion of all transactions, any client still connected to the instance is disconnected. Now the instance shuts down just as it would if a SHUTDOWN IMMEDIATE statement was submitted. The next startup of the database will not require any instance recovery procedures.
    The LOCAL mode specifies a transactional shutdown on the local instance only, so that it only waits on local transactions to complete, not all transactions. This is useful, for example, for scheduled outage maintenance.
    Usage
    SHUTDOWN with no arguments is equivalent to SHUTDOWN NORMAL.
    You must be connected to a database as SYSOPER, or SYSDBA. You cannot connect via a multi-threaded server. For more information about connecting to a database, see the CONNECT command earlier in this chapter.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a90842/ch13.htm#1013607
    Joel Pérez

  • Spontaneous startups and shutdowns

    Ever since I got my G5 in 2004, I've had spontaneous startup/shutdown problems. I will wake up in the morning or come home from work and find the computer on and at the login prompt (I have set no such predetermined startup time.) Or, I'll be working and all of a sudden it powers down and then powers back up (it will bring me back to the same screen and what I was doing), but after repeated occurrences of shutdown/startup, usually in short succession, it will permanently shut down, requiring me to shut off the battery backup into which it is plugged to reset the whole system. Then things settle down for a while. Then a month or two later, it will go through another bad spate of spontaneous startups and shutdowns, almost like it just got over a cold only to contract a new one.
    At first, Apple said it was a motherboard problem which they replaced; that didn't solve my problem. Then they said it was a bad video cable to the monitor and repaired that; that didn't solve my problem, either. They asked if I had any peripherals (printer, scanner, external HD) hooked up and said such items can cause erratic behavior (to which I felt like asking "then why do you manufacture your computers with ports in them so users CAN plug in other devices?") I've given up taking it to them because I can't make it replicate its erratic behavior and unless they see what it's doing, they can't do anything about it (and I don't think they really believe me, anyway...)
    I've reset my PRAM. I've reset my SMU (actually that happens every time I shut down the computer because I shut down the battery backup every time to prevent unsupervised morning startup.) I've run Disk Warrior. I've checked and confirmed my power source. I've literally unplugged everything (and I mean EVERYTHING) and re-connected all components. All to no avail. I even have video of it happening because Apple doesn't believe what I'm describing. Is it possible that my computer has been infected and is one of those "slave computers" that hackers use to do their bidding? I've wondered about that...
    Has anyone else experienced this?

    It almost sounds like a bad UPS.
    Have you tried bypassing the UPS? What is the rating of the thing?

  • I get constant buffering very slow downloads and the pinwheel.  is there a keystroke remedy for this??

    i get constant buffering very slow downloads and the pinwheel.  is there a keystroke remedy for this??

    No magical keystroke remedy. The causes for this can be complicated.
    http://www.thexlab.com/faqs/sbbod.html
    Also check the health of the drive with the free demo of SMART Utiltiy.
    http://www.volitans-software.com/smart_utility.php
    Only happening while on the Internet or all over the place? What's your Internet speed?
    http://www.speedtest.net/

  • What is wrong with the app store and how long before its fixed, im downloading atna very slow pash and i have a 10mb uncontested line.

    What is wrong with the app store and how long before its fixed, im downloading atna very slow pash and i have a 10mb uncontested line.

    Sorry, its on both my iphone 4s (2 iphones) and ipad2 that the app store is slow, I have done all the above and still when i download a 1 mb app it take about a half a hour just to download and previously it wasn't even a second. When browsing the web the devices are fast and internet speed is good, but when going in to app store it takes long to load and show me the new app, updates, featured app ect. We watch movie online and the streaming is brilliant. Even on my windows pc the app store is slow and sometimes says that i store could not be opened, i have also tried on my buddies wifi and there it does exactly the same which makes me think that its on apples side, but why do you not have any problems? 

  • IOP startup and shutdown as windows services

    Hi,
    Is there a way can we have IOP startup and shutdown as windows services instead of running the bat files?
    Thanks,
    Hari Devarapalli

    Yes. You can install IOP as NT service and start/stop it.
    Please refer to "Installing Integrated Operational Planning as an NT Service" in the IOP install guide.

  • Startup and Shutdown classes in OC4J (Oracle 9i App Server)

    Hi,
    We are in the process of porting our application from Weblogic 6 to Oracle 9i app server. We have a requirement for developing startup and shutdown classes. These need to be instantiated from Java code (and not through console).
    If anyone knows how this can be achieved or have any documentation on the same, please reply back to .
    Thanks in advance.
    Regards,
    Moin

    The oc4j commands in the documentation for shutting down the server are:
    STARTUP
    java -jar orion.jar -install
    SHUTDOWN
    java -jar admin.jar ormi://localhost/ <admin> <admin-password>
    Can you just access these classes directly?

  • Startup and shutdown procedure of OBIEE in linux

    I'm new to OBIEE. Can you please tell me the procedure of startup and shutdown procedure of OBIEE services?
    After starting the OBIEE services, what are the checklist I've to go through to make sure that OBIEE is up and running
    Thanks
    Edited by: 998932 on May 20, 2013 6:24 AM

    You can follow the steps mentioned at http://lamont-consulting.com/index.php/blog/obiee/11g/117-stop-and-start-obiee-11g-linux.
    Pls mark correct or helpful.

  • Startup and shutdown of 11i Services in windows

    Hi friends, I am new for windows.
    how can we startup and shutdown of 11i instacne under windows.
    can we do it through services screen
    or
    can we do it through scripts as we do it on Unix/Linux
    which is the best method

    Either way is fine. Use the method which you feel if more comfortable to you. But I would suggest keep using scripts, as in future if you move to other platform you will not get surprised.
    Thanks
    Sundeep
    http://troubleshootingappsdba.blogspot.com

Maybe you are looking for