Something doesn't seem right with start-up

Maybe I'm going mad but something doesn't seem right. When I start-up I get the usual chime, the power light comes on, I hear the drive whir a bit, the fans have a quick blow and the I get a black screen for about 30 seconds. After this the light goes out & the screen turns grey, then I get the grey sceen + apple and the 'wheel thing' followed by the blue screen and normal start-up. Perhaps this is normal, but I'm sure I never used to get the 30 second delay with the black screen and I used to go straight to grey if you see what I mean. Am I going mad or is the delay unusual??
Neil

I know it's bad form to reply to your own post but thought someone might be interested to hear how I've sorted this one out. Thought I'd try starting up in safe mode and running FSCK, but having never done this before wasn't quite sure what to expect! When it started up I just got page after page of 'techno-jargon' which didn't look good - especially when every line seem to have the word error in it - can't remember exactly what it said but each line had something with USB along with numbers and letters and an error message (yes - I know this isn't very clear but the memory's beginning to fail). Anyway because this wasn't looking too good I decided to reboot and unplug everything from my USB ports (including a 7 port USB 2 hub) and restart. Lo and behold problem sorted. Then plugged it back in again and tried again - back to original problem. However noticed that the LED on my graphics tablet wasn't lighting up so unplugged that from the hub, reinstalled the drivers and tried again. Now everything seems to be back to normal. The black screen on start-up lasts just a couple of seconds and we're back to the normal start-up time. Weird, but at least I can now sleep easy!
Neil

Similar Messages

  • HT3702 Why can't I download my already purchased music and other files from iCloud, even though I owe money to iTunes for my most recent purchases.  Doesn't seem right that they keep me from accessing those files which I've already paid for!

    Why can't I download my already purchased music and other files from iCloud, even though I owe money to iTunes for my most recent purchases.  Doesn't seem right that they keep me from accessing those files which I've already paid for!

    - Are you saying that they are not listed in your Purchased section?
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    - Are they listed in your Puchases history when you log into your account on your computer?
    - Are they still available now for purchase? If not then you are out of luck
    If they are still available and listed in your Puchase History then contact iTunes
    http://www.apple.com/support/itunes/

  • I'm wondering if anyone has noticed frequent crashing of apps that never crashed before, error messages in their internet connections, and anything else that just doesn't seem right?

    I'm wondering if anyone has noticed frequent crashing of apps that never crashed before, error messages in their internet connections, and anything else that just doesn't seem right?
    I am not able to upload or download any apps.  This has just happened since the 3rd of this month.

    The iPad does not upload apps.
    If you're having problems purchasing or downloading apps using the App Store app tell us what exactly happens when you attempt to purchase an app and what, if any, error messages to your get.

  • Back from service, case doesn't seem right

    I just got my macbook pro back from service, maybe a week or two ago. Since its been back I've noticed the case really doesn't seem like its fitting together right. I've got gaps between various pieces of the case and have parts that don't really fit flush anymore. It wasn't like this when I sent it out
    If I call apple do you think they'll fix it? They could easily just ignore it and blame it on me, but it definitely wasn't like this when I sent it off, and the more I look at it the more it really seems put together wrong.

    I'm guessing that there is a gap on the front of the machine where the bottom case fits with the top case (the part with the keyboard & trackpad).
    Once the unit is popped open, it doesn't close quite like it did when it was first assembled. That's because there are 4 clips that are on the front inside lip that get slightly worn when the machine is popped open. I'm also guessing that there is a glue of somesort that is run lightly around the seams to ensure flush enclosure.
    There are stories that even without servicing that these gaps form after time.
    If you go and demand that apple fix it, they will. They will have to replace the top and bottom case. This fix could take quite a bit longer as it would need to be sent out to the depot. All of the innerds need to come out to replace the bottom case. But...they'll do it if you demand it.

  • SQL Developer: Right-click format doesn't work right with DATE datatype

    Hi All!
    Currently I'm using version SQL Developer Version 3.1.05.
    Got a question regarding the 'auto-format' of syntax whenever writing in the code editor.
    If you take this snippet of code and drop it into a worksheet, then highlight it, right click the mouse, then select "format" it's like it fails to add the proper spacing when it runs into the DATE datatype. I looked all through the : preferences > database > sql formatter > oracle formatting > edit and couldn't find anything regarding the formatting with date types.
    Am I looking in the wrong area?? Is this a known bug? Having trouble searching for this exact issue too. I LOVE the format feature, but I hate having to go to each date type and manually spacing it out to make everything look 'clean'. I'm picky I guess :P I can live with it but figured I'd ask.
    type TEMP_REC
    IS
    record
    ORG_CODE VARCHAR2(15),
    PROJECT VARCHAR2(15),
    WBS VARCHAR2(30),
    SERIAL_NO VARCHAR2(30),
    QTY_ORDERED NUMBER,
    QTY_SCRAPPED NUMBER,
    QTY_COMPLETE NUMBER,
    BOM_ID NUMBER,
    REQUEST_DATE DATE,
    CREATE_DATE DATE,
    REL_DATE DATE,
    START_DATE DATE,
    NEED_DATE DATE,
    DUE_DATE DATE,
    COMPLETE_DATE DATE,
    CREATED_BY VARCHAR2(30),
    MODIFIED_BY VARCHAR2(30),
    MODIFY_DATE DATE,
    EST_HOURS NUMBER(6,2),
    ACT_HOURS NUMBER(6,2),
    BAD_COMMENTS VARCHAR2(1000) );

    Hello,
    I put 3.1.07 as you'd suggested. Seems the problem is still occuring for me... probably a user preference though ;)
    Open a new worksheet and drop this in, highlight everything, right-click and choose "format". All the keywords (varchar2, number, etc) should align on themselves making it look nice. I have mine set up to line-break after a comma. (I can't get it to format properly as I type it here onto the forums, so added a bunch of spaces to try to mimic it in this view)
    type TEMP_REC
    IS
    record
    LEAD_TIME NUMBER(5,0),
    SCRAP_PERCENT NUMBER,
    CREATED_BY VARCHAR2(30),
    MODIFIED_BY VARCHAR2(30),
    OPER_SEQ VARCHAR2(6),
    REF_NO VARCHAR2(2000),
    COMMENTS VARCHAR2(2000),
    BOM_FLAGS VARCHAR2(100),
    BOM_ATTR1 VARCHAR2(30),
    BOM_ATTR2 VARCHAR2(30),
    BOM_ATTR3 VARCHAR2(30),
    BOM_AMT1 NUMBER,
    BOM_AMT2 NUMBER,
    BAD_COMMENTS VARCHAR2(1000) );
    Now, let's add another field in there, but this time a date/timestamp datatype. If you format it like this you will see that the keywords sort of 'reset' their position after it encounters a date/timestamp datatype. The date type doesn't align properly with the others.
    type TEMP_REC
    IS
    record
    LEAD_TIME NUMBER(5,0),
    SCRAP_PERCENT NUMBER,
    CREATED_BY VARCHAR2(30),
    MODIFIED_BY VARCHAR2(30),
    OPER_SEQ VARCHAR2(6),
    REF_NO VARCHAR2(2000),
    test DATE,
    COMMENTS VARCHAR2(2000),
    BOM_FLAGS VARCHAR2(100),
    BOM_ATTR1 VARCHAR2(30),
    BOM_ATTR2 VARCHAR2(30),
    BOM_ATTR3 VARCHAR2(30),
    BOM_AMT1 NUMBER,
    BOM_AMT2 NUMBER,
    BAD_COMMENTS VARCHAR2(1000) );
    Might post a picture next time if that still isn't clear, though I konw folks are leary against clicking links to see screenshots. Might you know what I'm doing wrong here?

  • Java 1.4.1 doesn't work right with Win98se and IE6SP1

    I have installed the 1.4.1 runtime on two computers. On the WinXP one (with IE 6 SP1) everything works 100%. When applets are loading the Java icon is showing in the placeholder, and in the system tray. I can open the console from IE, and all applets work (also the "hot java" on download page that does not work with the Microsoft buildt in Java :-)
    BUT, on the Win98se machine not everything is working. First there is no Java icon either in the applet windows nor in the system tray on most applets (like my homepage http://home.chello.no/~larse/ or my worsk page http://datafangst.ergogroup.no), I cannot open the Java console from Internet Explorer either. So I suspect it's still using the Microsoft Java. BUT even stranger, the "hot java" animation on the Sun download pages IS showing, and THEN the Java icon shows in the tray. Why is it only using the Sun Java for some applets - not all ?

    I experimented some more today, trying to find out why IE is not using SunJava.
    I search the registry, and found that all references to Java (even the "Sun Java Console" menu) pointed to "c:\windows\system\msjava.dll". But there was a key "Treat as" that pointed on to the SunJava plug-in object (could the problem be that Win98 doesn't understand this and still use the default MS Java).
    Also tried using "Norton Registry Tracker" to track what happened when I turned on/off SunJava for IE in the Control Panel and in IE. No changes anywhere. Isn't that a bit strange too...
    Finally I just took a shot and renamed "c:\windows\system\msjava.dll" just to try to get rid of the MS Java AND THEN suddenly the SunJava works everywhere, and the "Sun Java Console" menu works too...
    And no matter what I configure (turn on/off Sun Java in IE, turn on/off support for IE in the Sun Java control panel...) it always use SunJava.
    Haven't noticed any side-effect so far, so it works for me, but I'm quite sure this is NOT the way it is supposed to work - right ?

  • Timed sequence doesn't work right with external timing source

    I'll describe first what I want to accomplish and
    then maybe someone can read further and suggest why the attached VI
    doesn't work. I have a SMU (PXI 4130) that takes differing amounts of
    time to set a current depending on if the setting spans a range
    boundary. I want to be able to make that SMU setting and then wait a
    specific amount of time (sometimes 1 msec). If the SMU takes a little
    longer to return then I want that extra time to come out of the wait
    time. To do this I figured I would need an external time source to
    control a timed sequence to give better than the normal 1 msec
    resolution. So now onto the problems I'm having.
    I've
    got two problems here that I would really appreciate some insight on.
    The attached VI is the subject of both problems (as is the VI is
    worthless, but it illustrates the problem). Note that you need some
    type of DAQ board with a counter on it to run it.
    I can't
    figure out why this timed sequence doesn't work with an external timing
    source. It works mostly as expected (see next problem) with the
    internal source, but fails miserably with the external source. Run the
    VI as is to get a baseline. Then connect the DAQmx Create Timing Source
    VI to the Source Name input of the timed structure. It seems like it
    should run exactly the same both ways.
    Problem 2 (run with the
    internal timing source). The VI should take the same amount of time to
    execute regardless of the input to the Wait VI (within reason of
    course). That's actually the main impetus for this whole exercise. But
    according to the Actual End indicator it runs faster with a longer wait
    time.
    George
    Attachments:
    test timed sequence.vi ‏144 KB

    Hi George, I have been playing with the code that you have posted and I think I am seeing what your concern is with regards to the first problem that you stated.  Without running the code I would expect both internal and external timing to cause the VI to run in the exact same manner, however obviously that is not the case.  I am currently looking into this behavior and I will post you a response as soon as I have an answer for you. 
    As for the second problem, If you look at the manner in which you have coded this VI, a 1ms wait in the first frame will lead to a calculation of 1999ms wait in the second frame, and thus 5 iterations of 1999ms or about 99,995ms total running time.  If you increase the wait in the first frame to say 50ms, then an overall all wait of 1950ms is calculated in the second frame so not the overall iteration time is now 1950 which, over 5 iteration leads to 99,750ms thus as you increase the wait in the first loop the overall loop duration will be less.  This is expected behavior.
    Again I will post back once I have a clarification on the internal vs external timing.
    Chris_K 
    National Instruments
    Applications Engineer

  • Safari on Snow Leopard doesn't play right with multimedia on WordPress

    I have a problem when I insert a QuickTime movie or Flash graphic into a WordPress post. The problem is that the CSS drop-down menu on the post page fall 'behind' the QuickTime movie instead of in front.
    To combat this I inserted the following embed codes in the html for the movie: <param name="wmode" value="transparent"> and wmode="transparent"
    This would appear to fix the drop-down problem but it creates a new problem for Safari on Snow Leopard for Macs. The QuickTime controls don't work on the movies. You can start/stop the movie by using the spacebar but the transparent layer kills access to the controls when either QuickTime X or QuickTime 7.x is used in Safari. Seems to work fine in Firefox.
    It might be easier to show the problem via examples which follow:
    No transparency code example
    http://www.hawaii247.org/2009/11/06/community-pays-tribute-and-honors-uncle-geor ge-naope/
    transparency code embedded example
    http://www.hawaii247.org/2009/10/29/rallying-in-hilo-for-the-international-day-o f-climate-action/
    Is there a away around the drop-down bug so I don't have to use the transparency embed code? The drop-down bug also occurs in IE8 I believe. If you choose the Sports drop-down you should see what I'm talking about in the first example.

    Yep. Exactly as you describe.
    Since your menu "drop downs" are the source of the original issue have you considered breaking the "long" one into "two" parts?

  • My avg tool bar was working on IE and doesn't seem to with FF6

    running windows 7 ultimate x32 had been using x64 but was having various problems with compatibility,drivers etc so reformatted my hdd and reinstalled 32 bit version. obviously the first thing i did was reinstall my avg internet security 2011 which has a security toolbar. the next thing i did was dl FF6 and install it. i had to use IE to dl FF6 as this was my default browser. when i opened up IE the avg security toolbar was where it was supposed to be however after installing FF6 and importing everything from IE the toolbar wasn't there. i tried opening the avg interface and refreshing the toolbar app and the software said that it should all be working with any supported browsers but it is not. i know it works with FF cause i have had it on FF4 and 5 don't know if i am just being stupid or what

    That's just the standard notice when you install an addon from the AMO web site.
    Wasn't the '''Install Now''' button active?
    Sometimes you have to wait for up to 4 seconds for that button to be active - IOW, not greyed-out.

  • First- "R" - reset - doesn't seem right

    I have a 4th Gen that gives me intermittent trouble (for example, I choose an album to play, and it just skips through all the songs, then goes back to the "Artist" heading). When I do the first stage of troubleshooting - the reset (hold down menu and select buttons simultaneously) - I lose all my music. As I understand it this shouldn't happen. Am I doing something wrong here?
    Thanks,
    Steve

    I would try the following. First, check the box to +Enable disk use+ (on the iTunes pane for the iPod) if not checked already.
    Run Disk Utility. In the Erase tab, go to +Security Options+ and select to +Zero out data+. Then erase the iPod's hard drive.
    +Zero out data+ will write zeros to every sector of the drive. This procedure will take some time (20-30 minutes), but the progress meter should move slowly. If the process stalls or errors out, that is a good indication that the hard drive in the iPod is becoming faulty. If it completes successfully, try doing a Restore in iTunes again.

  • Doesn't seem right to put IPhone pre-orders at the back of the line

    Apple has the phones, seems like they SHOULD feel the first orders first. NOT very good customer support to put your early orders last.

    Like any distribution system anywhere, stock is allocated to various outlets to ensure everywhere gets at least some stock. You clearly have no understanding whatsoever of distribution.
    Apple cannot produce enough iPhones to satisfy all of launch days demand, so they have to share out the available iPhones between outlets.
    So, there may be 3m iPhones allocated to the online store in the US, 3m iPhones allocated to the physical stores in the US, and other amounts for each country the iPhone is launching in.
    You can choose whether to buy online or in-store. However, in both cases, once the allocated stock is gone, it is gone. Why should customers who choose to queue up and buy in-store have stock taken away from them, reducing their chances, just to fulfill your choice of buying online?
    Both online and in-store have their advantages and disadvantages. You make the choice.

  • Must use Step Input Keyboard prior to using midi controller? When I attempt to use my midi keyboard conteoller for step input, it won't work unless I input the first note in each track via the Step Input Keyboard. This doesn't seem right...

    When I try to use my midi controller keyboard for step input, it won't work unless I input the first note in each track via the Step Input Keyboard.. What am I doing wrong?
    Logic Studio 9.1.7, OS X 10.7.5

    Hi
    Playhead in the right place?
    CCT

  • My Sony Cybershot camera doesn't seem compatible with my MacBook Pro.

    Whenver I choose "import all" in iPhoto it will only load one or two photos at a time before it stalls and closes out. I have to import each photo one at a time, which, when you're trying to import hundreds of photos can be time consuming. Is there anything I can do to fix this?

    According to this article, the SD card slot on the side of your MBP will take an MMC card.
    http://support.apple.com/kb/HT3553
    I don't own a Sony camera, so I don't have any other suggestions.

  • Bridge Offset Nulling Doesn't Seem to Work With SCC-SG24

    Does anyone know if the DAQmx "Perform Bridge Offset Nulling Calibration" vi works with the SCC-SG24 modules?  We have used our NI-9237 module in the past to acquire dual-channel load cell (thrust & torque) measurements, and calling that vi does a fine job of zeroing out the values before applying the load.  However, it doesn't seem to work when we try to take the same measurements using an SCC-SG24 module.
    We are able to zero the values manually, by using the nulling resistors and potentiometers in the SCC-SG24.  But, whether the nulling resistors are installed or not, we are not able to zero the values using the "Perform Bridge Offset Nulling Calibration" vi.  Running that vi does induce a significant offset in the values, but it is not the correct offset needed to bring the values to zero.  For example, with no load applied, a torque reading before running the vi may be +1090 in-lbs, and be "zeroed" to -465 in-lbs after running the vi.  Running the vi multiple times (to check repeatability) always brings us back to approximately -465 in-lbs.
    An additional issue (not sure if it's related or not) is that if we try to run this vi to offset just one of the channels in the task (such as just thrust, but not torque) it will still induce a small offset in the other channel, which doesn't seem right.
    I guess I'm not clear on whether the subject vi is performing an operation on the hardware, the software, or both, so I'm not sure whether the SCC-SG24 modules may not be compatible with this vi?
    Thanks for any help you can provide.

    Hello Dhruser1,
    I think that the DAQmx Perform Bridge Offset Nulling Calibration should work for the SCC-SG24 module.  Take a look at this article:  Removing Large Initial Offset for Load Cell or Strain Measurements with SCXI-1520 or PXI-4220 in particular it mentions that using this VI in addition to the auto zero can introduce an offset.  If you're doing both these is likely the cause.
    Also, when you specify specific channels using the channels input are you also setting the "skip unsupported channels to false?  If not this may be why it affects other channels.
    I hope this helps, and if not please feel free to post back with an update after trying these things.
    Cheers,
    Brooks

  • X-Fi DD-DTS doesn't seem to work right playing DVD Movies with VLC Player or anything els

    I have an X-Fi Platinum with the bay and When I try to Play a DVD with VLC Player And choose a/52 over s/pdif it sounds HORRID skipping and pausing and not functioning at all.. I must choose 5. channel to have Listenable Audio. The Same goes for AC3 Encoded Files If I chose A/52 over S/PDIF in VLC player it sounds like **bleep** and doesn't seem to decode it right. I must chose stereo 2 channel to listen to AC3 encoded video's.. NOTE The dolby Digital symbol DOES appear when i chose A/52 over S/PDIF so it does know it's a digital signal.. And I have the software set to USE hardware decoder and S/PDIF in Decode selected. NOW Here's something that REALLY makes me wonder wtf is wrong, I can connect my Home DVD Player or Cable Box over the Optical?in OR the S/PDIF in and the SOB works Fine, The Dolby Digital symbol comes up and everything sounds great! I get Dolby Digital surround no problem..Why in the heck does it not want to play DVD's using the A/52 over S/PDIF or any AC3 Encoded Files?What's the deal?And I am using windows XP Pro SP2 yadda yadda yadda?Message Edited by mbrown0420 on 07-25-20070:58 PM
    Message Edited by mbrown0420 on 07-25-20070:58 PM

    Only with VLC?
    Same problem with PowerDVD, WinDVD?
    VLC media player Forum:
    http://forum.videolan.org/viewforum.php?f=4
    Unplayable DTS/Dolby Output via A/52 over S/PDIF (Videolan forum)
    http://forum.videolan.org/viewtopic....d=a&view=print
    "In the preferences menu: (tab) Audio > Output modules > (check the "advanced options" box) choose "Win32 waveOut extension output" from the drop-list, save and restart VLC (by CloudStalker)"
    http://lh3.google.es/rmorinr/Rqhsqp7cvhI/AAAAAAAAAfM/qtzo3E8-sQQ/s44/VLC_DTS_Options.JPG">
    Message Edited by Rad-Wulf on 07-26-20070:47 AM

Maybe you are looking for

  • Hyperlink in XML Report

    Hi, I need to create a hyperlink in one of my report. The business logic demands that I get entity-wise clubbed data . But if I need to see the detail of an entity , I should just click on that entity name which should then refer me to a new report t

  • Better Display Driver under Windows 8 than Windows 7 for MacBook Pro Retina?

    Anyone happen to know if the display support for a MacBook Pro Retina is better under Windows 8 than it is under Windows 7? Ideally, I would like to be able to run 2880x1800 at True Color as well as have the HDMI out fuction as a second display (mach

  • Executing a stored procedure containing multiple Select statements

    Post Author: Beverly CA Forum: General I am using Crystal  10.0 against a MS SQL 2000 server. I am trying to create a report based on a stored procedure that contains multiple select statements.  The sp requires a single parameter (Claim number) and

  • SAP BI 4.0 IDT

    i have noted one issue in IDT.Refresh structure is not updating newly added database columns.It is reflecting in data foundattion layer but in business layer it is not reflecting.If we tried to manually add in business alyer , it is getting the wrong

  • After updating to iOS 8.2 my music deleted

    After my phone updated to the new iOS 8.2 the music that I had deleted from my music list the only once that are left are the once that I bought from iTunes I tried to re-upload the music again but it wont let me. Can some one help me please.