No monitors on "option" startup

When I start my G-5 using the option key on startup, so I can choose a different disk to boot from, I get no output to my monitor. They are blank , black, nothing., The machine boots perfectlywhen you don't hold the option key down on start. This started when my old Acer X241W monitor died and I replaced it with a AcerX243W. The only thing that has changed is the one monitor. I tried disconnecting and booting with only one monitor but the exact thing happens when I hold the option key on start. It makes the start up sound and other noises like it is booting but the monitors are blank.
As far as I know there is no driver that has to load for the monitors to work or am I missing something?
All suggestions welcomed

A update on the No monitor issue. I found the problem! I had a Radeon 8500 in the AGP slot that was becoming unstable and I had switched both monitors to a second video card in a regular PCI slot. Apparently the AGP slot has priority and the other PCI slot only produces output after booting if there is a card in the AGP slot,with anything connected or not . I simply removed the offending card from the AGP slot and the problem disappeared. The start with "option" now works as expected. Moral of the story is to remove non working peripherals from the system even if nothing is connected to them.

Similar Messages

  • After closing a browser window and if I open a new browser window , the browser will not open per my home page in tools/options/startup, it loads the last page

    recently when opening a new browser, everything Is using and closed during my last session will open
    multiple widows will open and whatever tabs were open per respective windows will open and not per tools/options/startup/homepage
    this has never happened until just recently and nothing else seems to have changed nor has any new programs etc been loaded or changed

    You can check if you have a user.js file in the Firefox profile folder that sets the <b>browser.sessionstore.resume_session_once</b> pref to true.
    *http://kb.mozillazine.org/browser.sessionstore.resume_session_once
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    Note that Windows hides some file extensions by default.
    Among them are .html and .ini and .js and .txt, so you may only see file name without file extension.
    You can see the real file type (file extension) in the properties of the file via the right-click context menu in Windows Explorer.
    You can check for problems with the sessionstore.js and sessionstore.bak files in the Firefox profile folder that store session data.
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Multiple_profile_files_created
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost and you will have to recreate them (make a note or bookmark them if possible).

  • How to give browse and monitor only options of an ICM script to a certain group?

    I am looking for an option in the Feature Control Set, how to give "Browse and Monitor" only options for a certain group in our contact centre. If someone give me some clue, it would be appreciatable.

    Hello Praveen,
    This work at some point. But it's not resolving what I intend to do. When I give "Read Only" previledge, to the certain group, it won't be able to do other tasks what they do day to day. I am looking specifically to give read only previledge in the scripting level. Not at the configuration level.
    Thanks.

  • Monitoring services Automatic startup type

    I've installed Opsmgr 2012 R2 CU5 in a test environment. Going to replace our Opsmgr 2007 R2 live environment within 2 months.
    I want to monitor all Automatic startup services. In Opsmgr 2007 R2 I created an override for the rule " A service terminated Unexpectedly". Did the same In Opsmgr 2012, but I don't get an alert if I stop a service. I noticed that there or a few
    services in the "Core Windows Services Rollup" monitor that do create an alert if I stop them.
    What am I missing?
    Thanx

    I've got something similar in my toolbox. No clue where I've got the VBS from (ages ago, thanks to the author :-) ) but it still works fine:
    <UnitMonitor ID="Syliance.Windows.Server.Extension.ManagementPack.Generic.Service.Monitor" Accessibility="Internal" Enabled="false" Target="Windows!Microsoft.Windows.Server.Computer" ParentMonitorID="Health!System.Health.AvailabilityState" Remotable="true" Priority="Normal" TypeID="Windows!Microsoft.Windows.TimedScript.TwoStateMonitorType" ConfirmDelivery="false">
    <Category>AvailabilityHealth</Category>
    <AlertSettings AlertMessage="Syliance.Windows.Server.Extension.ManagementPack.Generic.Service.Monitor_AlertMessageResourceID">
    <AlertOnState>Error</AlertOnState>
    <AutoResolve>true</AutoResolve>
    <AlertPriority>Normal</AlertPriority>
    <AlertSeverity>Error</AlertSeverity>
    <AlertParameters>
    <AlertParameter1>$Data/Context/Property[@Name='Description']$</AlertParameter1>
    </AlertParameters>
    </AlertSettings>
    <OperationalStates>
    <OperationalState ID="Success" MonitorTypeStateID="Success" HealthState="Success" />
    <OperationalState ID="Error" MonitorTypeStateID="Error" HealthState="Error" />
    </OperationalStates>
    <Configuration>
    <IntervalSeconds>300</IntervalSeconds>
    <SyncTime />
    <ScriptName>Monitor_Auto_Services.vbs</ScriptName>
    <Arguments>/Exclude:"'Microsoft .NET Framework NGEN v4.0.30319_X64' 'Microsoft .NET Framework NGEN v4.0.30319_X86' 'Performance Logs and Alerts'"</Arguments>
    <ScriptBody><![CDATA[' Monitor if any automatic service is not running
    ' Excluded: Performance Logs and Alerts service is auto but never running
    ' Create a two state timed generic script unit monitor
    ' HEALTH EXPRESSIONS
    ' Healthy Property[@Name='State'] Contains GOOD
    ' Unhealthy Property[@Name='State'] Contains BAD
    ' ALERT DESCRIPTION
    ' $Data/Context/Property[@Name='Description']$
    Set oAPI = CreateObject("MOM.ScriptAPI")
    Set oShell = CreateObject( "WScript.Shell" )
    Set arArgs = WScript.Arguments.Named
    Set oBag = oAPI.CreatePropertyBag()
    dim StateRegPath : StateRegPath = "HKLM\" & oAPI.GetScriptStateKeyPath("ServicesStopped")
    On Error Resume Next
    GetState = oShell.RegRead(StateRegPath & "\ServicesList")
    on error Goto 0
    allGood = TRUE
    RepeatDown = FALSE
    sExcludeList = arArgs.Item("Exclude")
    Set oWMI = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2")
    'Get System Uptime, if recently rebotted, do not continue
    Set colOperatingSystems = oWMI.ExecQuery("Select * From Win32_PerfFormattedData_PerfOS_System")
    For Each objOS in colOperatingSystems
    intSystemUptime = Int(objOS.SystemUpTime)
    Next
    If (intSystemUptime > 900) Then
    Set allSvc = oWMI.ExecQuery("Select * from Win32_Service Where StartMode = 'Auto'")
    For Each oSvc in allSvc
    If (oSvc.Started = FALSE and instr(1,sExcludeList,"'" & oSvc.DisplayName & "'") < 1) Then
    sList = sList & oSvc.DisplayName & ", "
    allGood = FALSE
    if instr(1,GetState,oSvc.DisplayName) > 0 then RepeatDown = TRUE
    End If
    Next
    If allGood = TRUE then
    Call oBag.AddValue("State", "GOOD")
    call oShell.RegWrite (StateRegPath & "\ServicesList", "", "REG_SZ")
    Else
    if RepeatDown = TRUE then
    Call oBag.AddValue("State", "BAD")
    Call oBag.AddValue("Description", "Automatic service(s) not running: " & sList)
    end if
    call oShell.RegWrite (StateRegPath & "\ServicesList", sList, "REG_SZ")
    End if
    Else
    Call oBag.AddValue("State", "GOOD")
    End If
    Call oAPI.Return(oBag)]]></ScriptBody>
    <TimeoutSeconds>60</TimeoutSeconds>
    <ErrorExpression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='State']</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">BAD</Value>
    </ValueExpression>
    </SimpleExpression>
    </ErrorExpression>
    <SuccessExpression>
    <SimpleExpression>
    <ValueExpression>
    <XPathQuery Type="String">Property[@Name='State']</XPathQuery>
    </ValueExpression>
    <Operator>Equal</Operator>
    <ValueExpression>
    <Value Type="String">GOOD</Value>
    </ValueExpression>
    </SimpleExpression>
    </SuccessExpression>
    </Configuration>
    </UnitMonitor>
    </Monitors>
    HTH,
    Cheers,
    Patrick
    Please remember to click “Mark as Answer” on the post that helped you.
    Patrick Seidl (System Center and Private Cloud)
    Website: http://www.syliance.com
    Blog: http://www.systemcenterrocks.com

  • Options Startup Show my Windows & Tabs from last time,but upon exit FF doesn't ask to save tabs & windows. When restarting FF I have a home pape,but no Bookmark tabs show. Why

    Upon starting FF and going to my Home Page, I have no Bookmarks or Tabs showing. I have to Re-load the Bookmark Tabs. My options at Startup are "Show my Windows & Tabs from last time" Also using the Firefox exit,it does not ask to save tabs & windows on Exit. I'm getting tired of adding Bookmark Tabs each time I want to use FF.

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/sessionstore.js
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • Multi monitor hardware options?

    Hi, I'm looking for new hardware for a 6 monitor setup. Currently I have 4 monitors, I have manage to get triple screen running with 2x nvidia gt240 on nvidia drivers. Three monitors across 2 cards is the maximum nvidia allows on a consumer card.
    What are my options to get 6 monitor setup on a single xserver with opengl?
    I did some searching and here is my options:
    Option 1:
    Get 2x nvidia Quadro card with 4 port each. Nvidia allows more than 3 screens across multiple cards for Quadros. Use nvidia drivers for good opengl. Expensive
    Option 2:
    Get Ati eyefinity 6 card with 6 port. Radeon driver and Catalyst works, except radeon driver does not have opengl 4.x yet and its slower than catalyst.
    Another downside is latest eyefinity 6 card is HD7870 which is quite old.
    Option 3:
    Get 2x Ati cards with 4 port each. Does the radeon driver or catalyst driver have restriction on multiple screen on multiple cards?
    I'm not sure what currently is the best setup. Another Option I am thinking about is getting a new system with intel graphics builtin, can I run intel and nvidia(proprietary driver) together on a single xserver? Also can I run nvidia(proprietary driver) with radeon driver together on a single xserver?
    Last edited by lenk (2015-06-08 00:32:32)

    Quote:but I want to ensure that you're happy with this?
    Thanks for asking
    As we have designed it that way: Yes, arrays must be supported; I am just a bit frightened about the consequences this will have and all the unforeseen problems that we might run into
    Regards,
    Kai

  • Dual External Independent Monitor Connection Options

    Folks -
    I am trying to understand my connection options that will allow me to achieve two independent monitors. My hardware is a TP T410 (2518-4JU) (Nvidia NVS 3100M) and a docking station Type 4338 (PN 45N5888 FPU PN 45M2490). The docking station offers VGA DB-15 connector, 2 each DVI connectors and 2 each Display Port (DP) connectors.
    I think I understand that I can use.....
    VGA port and any ONE of the available digital ports
    or
    both DVI ports
    or
    both DP ports
    or
    one DVI and one DP connector
    Does that seem correct?
    My monitors will accept VGA or DVI connectors and they run at 1920 x 1080.
    I also want to mirror one of the monitors onto a HDTV via the HDMI port on the HDTV (don't want to use the computer connection port on the TV). I plan to split one of the digital outputs and then adapt up to HDMI cable for the run to the HDTV.
    Will I encounter problems with the HDTV HDCP protocol since the signal is getting split?
    Thanks for your support!

    When did you buy the T410? also did it came with optimus technology?
    if it is the standard nvidia gpu version, then the display output options you mentioned is correct. If your T410 came with nvidia optimus, then it will support 4 external LCD.
    Not sure how HDCP protocol will be affected when the signal gets split.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Monitor Flashes on Startup

    Hi,
    I've got a Dual 2.7Ghz G5 with a Radeon 9650 video card in it. Recently it's been doing something odd on startup. When the computer first starts (or if the monitor's been off for a while) the screen flashes between dark and normal. It does this faster and faster, and then stops and the screen becomes perfectly normal. I'm hoping this isn't the sign of impending doom for wither the monitor or the video card. Any ideas as to what may be causing it?
    I have a 19" LG LCD Flatron Slim monitor.

    Am back from the store and have substituted the VGA cable and adaptor to simply a DVI cable. There's good news and there's bad news.
    Good news: the display is much clearer.
    Bad news: same flashing problem occurs at startup.
    This time, like every time I've had to attach new components and ever since the first time I got this mini, getting it to power up from the start button can be hit and miss. This time, it took about two minutes of fiddling with the power cord at all three points - from back of mini to where it three-pronged plug goes into the power bar - before it finally lit up.
    There's nothing wrong with the power bar as far as I can tell; nothing else connected to it is going kablooey.

  • Monitor Stand options

    I have a simple question that seems to not fit any other category, nor is answered elsewhere. I simply want to know if the newest iMac's (with the flat panel monitor) can have their stand removed or folded in so as to enable the monitor/computer to be carried around more easily (like a laptop). Or is it fixed and intended for desktop use?

    I use mine on the field frequently and for that I would recommend you an iMac bag such as this one (is the cheapest):
    http://www.ilugger.com/
    There are other bag companies selling their products at ridiculous prices but with this one (reasonably priced), there is no need to disassemble anything. Have a look at their video:
    http://www.youtube.com/watch?v=AF_l7mLLXWs
    Other alternatives include hard-cases, although it is the most professional-looking, water-proof, shock-proof, high-tech option, still is expensive and large hard-cases are cumbersome to carry and even fit in your car's trunk... I use a lot of trunks, cases, and bags for on-location jobs.
    Israel

  • Tecra A9 - "monitor properties" option is greyed out

    Tecra A9 (PTs52A)
    In Display settings - advanced - monitor - properties is greyed out.
    Think this may have been like it since I added service pack 3 for XP.
    Was able to add second monitor and chnage primary & secondary displays before but as properties is greyed out I can't any longer.

    Hello
    As far as I know when you click there on properties you will be linked on the same properties that you can open for monitor in device manager.
    Which monitor type is listed there?
    As far as I know there is place to define primary or secondary monitor. You can do this in display settings where the display 1 and 2 are graphically shown.
    Last two options can be defined with check mark. Of course it can be done if the external display is connected and recognized.

  • HT5918 Mac Pro (Late 2013) Dual monitors freeze on startup?

    I've got 2 monitors, 1 HDMI and 1 MiniDisplayPort/DVI into Thunderbolt, and the computer can't start, it crashes during the boot process. The main screen freezes just as the login comes up, the MDP screen is scrambled, and the mouse cursor is a spinning pizza.
    The only solution so far is to remove the MDP cable during startup, but that is a dealbreaker because dual monitors is the sole reason I bought this, and c'mon it's a really expensive computer -- even my old MacBook could handle 2 monitors!
    Any insights or solutions appreciated.

    Have you tried another cable and adapter?
    Try another DVI monitor to help determine the cause
    Are you using a Thunderbolt port not shared with the HDMI port?
    See the image included here:
    Mac Pro (Late 2013): Using multiple displays
    Rest the SMC
    Intel-based Macs: Resetting the System Management Controller (SMC)

  • Monitor resolution option 1680*1050?

    I recently reconnected a second monitor to my iMac. I used to have an option to choose the 1680*1050 resolution for the monitor, but (presumably) since an update of OSX, this option is no longer available. Called customer support with my AppleCare, but they couldn't help me. Also updated firmware of the monitor.
    Any ideas on how to get the option back?

    Have you tried a NVRAM / PRAM reset?
    http://support.apple.com/kb/HT1379

  • Option-Startup question

    Help! I inadvertantly held down the Option key instead of the shift key when I wanted to rebuild permissions. I know have two arrows and a hard drive icon with a small circle with an X in it. The arrow on the left is a circular arrow starting at the bottom, going up to the right with an arrow head at the top right. The other arrow is a straight arrow pointing right. I think the one means go back and the other forward, but I am not sure to what. Any clues as to what mess I just got myself into?
    Thanks
    MarciaTS

    Hi Marcia
    The Option key has taken you into the Startup Manager. See this KB article: Startup Manager: How to Select a Startup Volume.

  • SL not remembering ext monitor resolution on startup - any ideas?

    Hello
    I'm running 10.6.2 on an Intel Macbook and using a 22" external monitor (connection:mini DVI). Recently, when I start up the Mac and turn on the monitor, it doesn't automatically display 1680 x 1050 as it should, but at a smaller resolution, stretched. I've had to trash the display and window server prefs from By Host in my Preferences folder, and reset PRAM on startup, then plug/unplug the cable a few times before the Mac gets the resolution right.
    Soo, once it's right, is there a way to 'save' those settings / set them as a default...??
    I'm hoping I don't have to reinstall SL, or have to continually reset PRAM (can that do damage long-term btw?)
    Any help appreciated.

    Hello
    I'm running 10.6.2 on an Intel Macbook and using a 22" external monitor (connection:mini DVI). Recently, when I start up the Mac and turn on the monitor, it doesn't automatically display 1680 x 1050 as it should, but at a smaller resolution, stretched. I've had to trash the display and window server prefs from By Host in my Preferences folder, and reset PRAM on startup, then plug/unplug the cable a few times before the Mac gets the resolution right.
    Soo, once it's right, is there a way to 'save' those settings / set them as a default...??
    I'm hoping I don't have to reinstall SL, or have to continually reset PRAM (can that do damage long-term btw?)
    Any help appreciated.

  • Monitoring & controller options via hardware?

    I have this msi gnb max motherboard
    http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_detail.php?UID=387
    The Fuzzy logic software monitors some fan speed. What fan speed does it actually monitor? Are there slots on the mobo so I can hook up my fans which can display/tell me the RPM for each fan? I also have a Thermaltake butterfly 480W PSU which also has somemitoring, & controlling options. Can I do the same, hook it to the motherboard?
    Following the link to the mobo website, I have all the optional accesories. The trouble is my system looks clutterd from the inside, & I cannnot use the last PCI slot due to the wires curling at the area. Here are some pics of the D-bracket, S-bracket, firewire, bluetooth, etc.
    http://img12.photobucket.com/albums/v30/mystvearn/114_1461.jpg
    http://img12.photobucket.com/albums/v30/mystvearn/114_1459.jpg
    http://img12.photobucket.com/albums/v30/mystvearn/114_1458.jpg
    Can I place them upfront at the 5 1/4' drive bays? What is the fuinction of the D-braket monitoring if it lights up at the back?
    Also another function is the PC alert 4, It measures things that I am not sure. Anyone knows what it does? Anyway to change the display from using the application to using some front panel with monitoring capabilities? If so which one do you suggest? Thanks.

    If I understand you correctly you want to send SNMP traps regarding AP status to a 3rd party NMS from a WiSM instead of a 4400 WLC, right?
    If so, the WiSM is effectively two 4400 WLCs in module format. It shares the same configuration options, though there are some small differences.
    In regards to SNMP they have the same options. You can define the UP/DOWN/ASSOC/DISASSOC states among other things. Mind you however that at least since 7.0.116.0 there is a discrepancy between the ASSOC and DISASSOC trap as they are in different MIBs, of which the one with the ASSOC trap is not up to date.
    The WCS itself is nothing more than another trap destination for a WLC next to 3rd party NMS.

Maybe you are looking for

  • Instrument track only plays one track at a time

    Logic Studio will only play one instrument track at a time. Whenever I click to another instrument track I lose the sound. The channel strip meter still shows that the instrument is playing but there is no sound. When I click back on that channel str

  • Can an intel core duo 2Ghz iMac handle a 12Mbps internet connection?

    Is a 12 Mbps internet connection speed too fast for an Intel core duo 2 GHz Imac?

  • Pro*c errors in 11g. -- Compiles fine in 10g.

    Hi, We are planning to migrate from 10g to 11g so started compiling our Pro*c code in to 11g. Got several errors and couldn't trace. So to investigate further I have written a basic pro*c program as follows: #include <stdio.h> #include <sqlca.h> /*#i

  • Mac Pro slow vs. iMac?

    Hello: I have the early 2008 Mac Pro (2.8GHz quad) with 10GB total ram and I am really perplexed because when I went to Frys yesterday to play around with an iMac (2.8GHz core duo) with only 2GB ram, I found that this iMac opened up programs and was

  • I am unable to type quotation marks or use back spacer.

    First, I do not have this problem if I use Internet Explorer, which I don't like. I am unable to type some kinds of special mark - Apostrophe, slash - or to back space, forward space, or hit end. An odd thing crops up at bottom of page whoing what I'