K7N420 HD Controller Limit Question

I need to control more than 4 drives and thought the answer was a controller card.  When I cable a HD to the the controller card it wants to use it as the booting drive.  Is there a limitation in the MB that prevents more than 4 drives even with a controller card?  If not any suggestions to solve the problem?
Semper0

Hi,
I've used a PCI ATA133 IDE card (RAID) in my K7N420 Pro (as well as my onboard IDE connectors)!
The motherboard has no limitation in this regard - that I know of - except maybe IRQ assignments, but this depends on what other hardware you have installed!
However, some pieces of software act strangely when a PCI card is attached (I suppose it depends on the type of card you buy). Those that I know of are  "Drive Image 2002" (when run from floppy) and "EasyRecovery".
It may be worth your while buying a PCI card that has a chipset that WinXP (or other versions) can recognise without third party drivers, as you are less likely to have problems.
I should say that I had no troubles with my PCI card except for the two pieces of software I've previously mentioned!
Axel  

Similar Messages

  • How to Open the FailedFilesLog.txt File (statement), and How to Increase the 100 File Limit (question)

    It took us a while to figure this out, so I'm posting this in case it's helpful for someone out there. Plus, I have a question...
    DPM gave the following error for one of our file servers:
    Description: The replica of Volume D:\ on <servername> is inconsistent with the protected data source. Number of files skipped for synchronization due to errors has exceeded the maximum allowed limit of 100 files on this data
    source (ID 32538 Details: Internal error code: 0x809909FE)
    Recommended action: Review the failure errors for individual files from the log file
    \\?\Volume{8492c150-f195-11de-a186-001cc4ef89a0}\B1E9D373-2C03-464E-A472-99BC93DB1E2A\FailedFilesLog.txt and take appropriate action. If some files fail consistently, you can exclude the folders containing these files by modifying the protection group or
    moving the files to another location.
    So, how do you actually open the FailedFilesLog.txt file shown in this DPM alert? What is this path referring to? Well, this is the mount point for the protected server's replica volume on the DPM server, which is mounted under \Program
    Files\Microsoft DPM\DPM\Volumes\Replica\servername\File System. Here you'll see the mount points for all of the server's protected volumes. However, if you try to open one of these mounted volumes
    in Windows Explorer, you'll get Access Denied, even if you have administrator rights. (If someone knows of a way around this, please let me know). As a workaround, you can access this mounted volume in an elevated
    command prompt. Steps:
    Open an Administrator Command Prompt
    Type mountvol <AnyAvailableDriveLetter>: \\?\Volume{VolumeGUID}
    Example:  mountvol m: \\?\Volume{8492c150-f195-11de-a186-001cc4ef89a0}   Note that we're only using the first part of the path to the FailedFilesLog.txt
    file given in the DPM alert, starting from \\? and ending after the
    } character.
    Next, type m: to change to the newly mounted m: drive.
    Then type cd B1E9D373-2C03-464E-A472-99BC93DB1E2A   This is actually a folder name so we're just going into this folder.
    Finally type dir and you should see the FailedFilesLog.txt file. This file can be copied to another location where it's easier to use (i.e. in Windows Explorer).
    Be sure to unmount this volume when you're done by typing mountvol m: /d in the command prompt. (Mountvol reference:
    http://technet.microsoft.com/en-us/library/cc772586(WS.10).aspx.)
    What a pain, eh? But at least by reviewing the FailedFilesLog.txt file you can determine which files or folders caused the sync to fail and thus take action accordingly.
    Now, here's my question: Where is that registry key that lets me adjust the limit of 100 files that DPM allows to be skipped before it fails the replica? Hopefully someone out there will tell me. I know this can be done because Kapil Malhotra
    said so in this post:
    http://groups.google.com/group/microsoft.public.dataprotectionmanager/browse_thread/thread/a179fa30fb50c9b0/e9a348f2a9386063?lnk=raot.
    Also, does anyone know what the internal error code 0x809909FE means in this alert? Knowing this my help us determine what caused these files to fail. Interestingly, in the FailedFilesLog.txt file, it gave a different error code next to each failed file:
    0x80070002.
    -Taylorbox

    Thanks for responding, Fahd. So, just to be sure...
    Do I add this registry key to the DPM server or to the protected servers (or both)?
    In either case, the ContinueOnFailure key does not currently exist. So, I must create this key and the MaxFailedFiles DWORD value
    manually, right?
    Does the server in which I create this regkey have to be restarted for it to take affect?
    Can the DPM alert for the 0x809909FE error event (for exceeding the limit of 100 failures) please be adjusted to provide a path to the FailedFilesLog.txt file
    that actually works if you click on it?
    Any ideas on why the 0x80070002 "File not found" error happened? The files on the server were simply created and then deleted. Why would such file activity lead to this error?
    Thanks,
    -Taylorbox

  • Temporary files and buffersize limit question

    Hello,
    I have two questions :
    1. Buffer limit
    Is there a limit for the buffer to return to a client. I have
    a conversational service routine. If I want to return 50 record ( i.e. view structures
    ) my service routine hangs. If I do 10 records than it is ok. Is there a limit
    size to return. Is there a parameter in UBBconfig to fix this.
    2. Temporary files on conversational client / services
    My service routine creates temporary files in the /tmp directory. Unfortunately
    the mode for /tmp has 't'bit on so users can not delete files from other users.
    The problem is I have a lot of temporary files in /tmp. Does anyone know how to
    fix this or where can you specify not to use temp files or where can you specify
    the directory to create tempfile. de name of files are /tmp/TUXxxxxxx where xxxxxx
    is a random serie of characters.
    Thanks a lot
    Johan den Boer
    email : [email protected]
    [email protected]

    Buffers that are larger than 3/4 of MSGMNB are sent through a file. The name is
    generated with tmpnam(), so you should be able to specify a different directory by
    setting TMPDIR in the environment.
    The preferred solution is to not use file transfer, by setting your IPC parameters
    high enough to pass all of your application messages.
    If your service routine hangs, you should look at a possible application problem.
    How are you packing the VIEWs into a buffer? Are you using embedded FML with
    FLD_VIEW32 fields? That would be the best way.
    Remember that VIEWs are binary structures that are unique to a particular machine
    type. If you pack Views together into your own buffer format, and try to use them
    on a different machine type, then they won't work properly.
         Scott Orshan
    Johan den Boer wrote:
    Hello,
    I have two questions :
    1. Buffer limit
    Is there a limit for the buffer to return to a client. I have
    a conversational service routine. If I want to return 50 record ( i.e. view structures
    ) my service routine hangs. If I do 10 records than it is ok. Is there a limit
    size to return. Is there a parameter in UBBconfig to fix this.
    2. Temporary files on conversational client / services
    My service routine creates temporary files in the /tmp directory. Unfortunately
    the mode for /tmp has 't'bit on so users can not delete files from other users.
    The problem is I have a lot of temporary files in /tmp. Does anyone know how to
    fix this or where can you specify not to use temp files or where can you specify
    the directory to create tempfile. de name of files are /tmp/TUXxxxxxx where xxxxxx
    is a random serie of characters.
    Thanks a lot
    Johan den Boer
    email : [email protected]
    [email protected]

  • LIMIT question

    Hello!
    I've got one interesting question on OLAP DML. Assume you have dimension ARTICLES and one hierarchy with levels CATEGORY, SUB-CATEGORY, ITEM and one cube with variable SALES measured by this dimension.
    question: how to limit ARTICLES dimension to all top 20% items in EACH sub-category based on sales?
    I have tried to prepare a DML program with loop over ARTICLES dimension using TEMPSTAT PUSHLEVEL and POPLEVEL, but it seems that TEMPSTAT kills all PUSH in such loop.
    Does anybody knows how to do it?
    Thank you in advance.

    You're right.. It was interesting :-)
    I couldnt get it to work using just OLAP DML commands..
    ++++++++
    "SUBCAT level
    limit articles to articles_levelrel eq 'SUBCAT'
    "NOTE: DOES NOT WORK for EACH subcat. Adds 20% children of first sub-category in status
    limit articles add limit(limit(articles to children using articles_parentrel articles(articles articles)) keep top npcent percentof total(sales, articles))
    sort articles hierarchy articles_parentrel
    rpr down articles articles_parentrel heading 'SALES' sales heading 'Pct_Parent' sales(articles articles)/sales(articles articles_parentrel(articles articles)) heading 'TopNpcent_Children' limit(limit(articles to children using articles_parentrel articles(articles articles)) keep TOP 20 PERCENTOF total(sales, articles))
    ++++++++
    You can create a DML program and use the Limit function with Top N PERCENTOF based on expression to perform the needful.
    ****** OLAP DML program temp1 ******
    arg _npcent integer
    vrb npcent integer
    vrb vset1 valueset articles
    if _npcent eq na
    then npcent = 20
    else npcent = _npcent
    limit vset1 to na
    limit articles to articles_levelrel eq 'SUBCAT'
    tempstat articles
    DO
    FOR articles
    DO
    limit vset1 add limit(limit(articles to children using articles_parentrel articles(articles articles)) keep top npcent percentof total(sales, articles))
    DOEND
    DOEND
    limit articles add vset1
    sort articles hierarchy articles_parentrel
    temp1 20
    rpr down articles articles_parentrel Heading 'SALES' sales Heading 'Pct_Parent' sales(articles articles)/sales(articles articles_parentrel(articles articles)) Heading 'TopNpcent_Children' limit(limit(articles to children using articles_parentrel articles(articles articles)) keep TOP 20 PERCENTOF total(sales, articles))

  • Controller Assignment Question

    Hello, i was wondering if anyone could steer my in the right direction on this problem I have with controller assignments. See, i want to use Logic 7.1 on my Powerbook in a live situation with some midi controller knobs. The question is, how can i set up controller assignments so that i can have different assignments per song ( which has totally different tracks and plugins) ? I broke out the manual and read something about modes and zones, but cannot figure this out for the life of me, or know if this is the right direction to go in.
    I create the controller assignments for one song, then when i open up the next song, they seem to be interfering with each other. I suppose the controller function isnt particularly meant for this, but is there any way i can get around this problem?
    Thank you for taking the time to read this! I really appreciate any help.
    Leech.
    http:/www.myspace.com/leechernowetz
    Powerbook g4   Mac OS X (10.4.6)   Logic 7.1 , Evolution X-Session MIDI Interface

    When you use the "Learn mode", you bypass the Enviornment all together and Logic directly maps the controller info to the AU plug-in (or other control parameter).
    A quick and dirty way to (maybe) resolve this would be to make your midi controller send different channels on for each song. Therefore, song 1 would respond to assigned midi key commands on channel 1, song 2 would listen for channel 2, etc...I don't have Logic in front of me, but I think this might work. It's not the most elegant solution, but it might work. Another similar idea would be to put a transformer and shift all your CC different values (e.g. song 1, CC#1 would be CC#21 for song 2, CC#2 on song 1 would be CC#22 on song 2). And if you want to contol the same parameter from song to song, don't transform the CC (this is obvious, but I want to point it out).
    To reiterate, this is not the most elegant solution and I could be completely wrong, but this might be a quick fix.
    The best way (in my opinion) is wire cables (with transformers) in the environment to the audio object that you want to control. I haven't been able to get that idea to completely work and I am still working on it.
    good luck.
    Dual 1.8Ghz G5 PB G4 1Ghz LP7.1.1 RME FF800   Mac OS X (10.4.6)   Reaktor 5.1 Reason 3.0.4 Live 5.0.2 Battery 2.1.1 Recycle 2.1 DFH 1.5.3

  • LAP / Controller Compatibility Question

    Our company recently inheritated a group of locations that have Nortel 2270 WLC's with Cisco firmware and have a mixture of 1010 and 1030 LAP's. We are trying to map out an upgrade path for them but I am having difficulty getting the following information, even directly from Cisco. So I was hoping someone on here can help me answer the following questions:
    1. Does the 2270 WLC support any other model of Cisco LAP other than the 1010 and 1030?
    2. Will a newer controller, say a 2100 or 4400, be compatible with the 1010 and 1030 LAPs already at these locations?
    3. Is there anywhere I can find a list of Cisco controllers (EOL and otherwise) and what LAPs they support?
    Thanks in advance for any help!

    I wouldn't recommend the 2100 nor 2500 in a production network > 12 WAPs.  One of my pet peeves for the newer 2500 is the lack of LAG.
    Here's your problem:  You have a Nortel WLC running Cisco 3.X code.  This means that you have no choice but to run old WAPs of the 1000-series.  This also means that your client cannot run newer APs.  I'm not sure if the 1130 is supported in this code.  So which basically boils down to this:  Your client cannot get additional WAPs from Cisco.  HOWEVER, if your client goes to the Cisco Refurbished program, they MIGHT be able to find some.
    Another thing I'm curious are:
    1.  What are you  or your client trying to do; and
    2.  What's the budget?

  • Disco 4 OLAP dimension limit question

    Hello!
    Small question about Disco. Is it possible to do a limit on dimension simmilar to this:
    limit dim1 to HIERARCHY DEPTH 4 SKIP 3 'ONE_TOP_MEMBER'
    limit dim1 keep top 500 BASEDON SALES
    The problem is that in Disco we can not limit Current selection if we are doing top/bottom query. It allows to select only full level of hierarchy but we need only several members of that level. Are there any other aproach?
    Thank you in advance!
    Regards,
    Kirill Boyko

    You're right.. It was interesting :-)
    I couldnt get it to work using just OLAP DML commands..
    ++++++++
    "SUBCAT level
    limit articles to articles_levelrel eq 'SUBCAT'
    "NOTE: DOES NOT WORK for EACH subcat. Adds 20% children of first sub-category in status
    limit articles add limit(limit(articles to children using articles_parentrel articles(articles articles)) keep top npcent percentof total(sales, articles))
    sort articles hierarchy articles_parentrel
    rpr down articles articles_parentrel heading 'SALES' sales heading 'Pct_Parent' sales(articles articles)/sales(articles articles_parentrel(articles articles)) heading 'TopNpcent_Children' limit(limit(articles to children using articles_parentrel articles(articles articles)) keep TOP 20 PERCENTOF total(sales, articles))
    ++++++++
    You can create a DML program and use the Limit function with Top N PERCENTOF based on expression to perform the needful.
    ****** OLAP DML program temp1 ******
    arg _npcent integer
    vrb npcent integer
    vrb vset1 valueset articles
    if _npcent eq na
    then npcent = 20
    else npcent = _npcent
    limit vset1 to na
    limit articles to articles_levelrel eq 'SUBCAT'
    tempstat articles
    DO
    FOR articles
    DO
    limit vset1 add limit(limit(articles to children using articles_parentrel articles(articles articles)) keep top npcent percentof total(sales, articles))
    DOEND
    DOEND
    limit articles add vset1
    sort articles hierarchy articles_parentrel
    temp1 20
    rpr down articles articles_parentrel Heading 'SALES' sales Heading 'Pct_Parent' sales(articles articles)/sales(articles articles_parentrel(articles articles)) Heading 'TopNpcent_Children' limit(limit(articles to children using articles_parentrel articles(articles articles)) keep TOP 20 PERCENTOF total(sales, articles))

  • WCS and Controller upgrade questions

    Hi,
    with the WCS should I install both the EXE file and the BIN fil or just the BIN file?
    Also, for upgrading the Controllers where can I find the ER file. I have downloaded the 4.2.209.0 image but, can't find the 4.2.205.0 ER.aes. Does anyone know where this is?
    where on the controller can I tell if I already have the ER file?
    Thanks, Pat.

    Hi Patrick,
    The link which i posted is for 4404.. for 4402 here is the link..
    http://www.cisco.com/cisco/software/release.html?mdfid=279911193&flowid=7586&softwareid=280926587&release=4.2.112.0%20BOOT&rellifecycle=&relind=AVAILABLE&reltype=all
    The latest ER that we hav for 4402 is 4.2.112..
    Q1>> To get the software image I goto wireless, Wireless LAN Controllers,  standalone Controllers, Cisco 4400 Series Wireless LAN Controllers,  4402, Software on Chassis hten Wireless LAN Cotroller software, but  don't see the ER file.
    ANS - Yes you are right.. the above is the procedure to download the image.. "ER is nothing but the BOOT IMAGE, if you click on BOOT then the image will pop up as ER, the non BOOT will be in .aes format or something..
    lemme know if this answered your question..
    Regards
    Surendra
    ====
    Please dont forget to rate the posts which answered your question and mark it as answered or was helpfull

  • Time Capsule 50 Device Limit Question/Help

    I have a Time Capsule and I understand they are limited to 50 devices.  Well, I must have reached my 50 device limit, because I can not connect any additonal devices.  How do I go about deleting past devices so newer devices can connect?  I've done a reset, but that does not do it.

    A full factory reset will.
    The Factory Reset Gen1-4.
    Unplug your TC. Hold in reset. and power the TC back on.. without releasing reset for about 10sec. When the status light flashes rapidly; release it.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    Set the dhcp server time to 20min.. that will quickly recover the IP of any device that is no longer connected.
    A gen3 TC btw is more than 3years old now.. mostly.. and will be unreliable.. it needs replacement.. they are not long life devices.

  • 4 GB File Limit Question

    I've digitised three clips into FCP. Clips are 1GB, 6GB and 13GB in size.
    A freelance editor wants to transfer these files to his external drive so he can edit on his PC Avid. His drive is formatted as Fat 32. Am I out of options in transferring the two larger files because of the 4GB file size limit?
    From the following link:
    http://tinyurl.com/6q49vn
    I understand that the editor will need to convert to a codec that his machine will be able to play. But short of having to divide the clips up manually or redigitize the clips in shorter durations, are there other options? He doesn't have a deck to redigitize the footage.
    Thanks for the help.
    John Lanza

    Issue with that workflow...DVCPRO 50 Quicktime files captured via FCP will not work on a PC. Those codecs are only available to machines with FCP. So even if you can capture the files and get them to him in the native DVCPRO 50 format, he will not be able to see them. You'd need to transcode them into a format he could use.
    What system does the editor use? YOU have the deck, why not loan it to him so that he can capture it on his system? Capturing footage in one NLE for use in another is unwise, and should always be avoided. because NLEs all have different ways to capture footage. QT, MXF, AVI, OMFI...
    Shane

  • ITunes Match exceeded 25k limit question

    Hi,
    My iTunes library exceeded 25k songs, and so I went through and deleted quite a lot of albums - when you right-click an album though, it doesn't ask you if you also want to delete the songs from iCloud - I think from experimenting that I should have selected the individual songs instead - however, I've taken my local library down to 24k now but it's still saying my iCloud exceeds the 25k limit.
    Any ideas on what I should do next - is there an option to manually manage my iCloud collection for instance?
    Thanks
    I'm on OS X 10.9.5, and the latest version of iTunes FWIW.

    Hi,
    This is a draft of a user tip I intend posting. Does it help?
    "iTunes match has a limit of 25k tracks for tracks matched or uploaded. iTunes purchases do not count towards this limit.
    Can you have iTunes match and an iTunes library with more than 25K?
    Yes but you need to manage your library so that you keep matched and uploaded tracks below 25k. With iCloud status column added to song view (go to menu > view > view options and tick appropriate box), you can tell what has been matched, uploaded, purchased, ineligible, duplicate or waiting. You can also have a "Removed" status. Such files are ignored when match scans your library.
    I achieved this by creating a second blank library - I signed into match and was able to view all tracks in iTunes Match. iTunes: How to open an alternate iTunes Library file or create a new one
    I then deleted some tracks from this library - effectively deleting tracks in the cloud. They were not deleted from you hard drive and will still appear in your original library. This method works well if you have a second computer on which your library only shows tracks in the cloud.
    When I went back into my original library, the iCloud status for those tracks were shown as "removed". iTunes Match will now ignore those tracks. You can now add new tracks provided you kept matched and uploaded to less than 25k. I keep a smart playlist any track with iCloud status = matched and any track with iCloud status.
    If you have exceeded the limit, the iCloud status will tell you so but even after you have deleted the excess tracks, you might still get this message. You may find that using the above method will fix the problem BUT i can not verify this. If you back up your library regularly to may be able to restore the iTunes library.itl from a time immediately before you first had exceeded limit problem."
    Jim

  • Media Encoder Mbits/s Limit Question...

    In PP2.0 the Limit with the bitrate on .wmv is only 10Mbits/s.
    Yet most 1080i & 1080p avchd cams are around 17-18Mbit/s. I reckon 20Mbits/s should be available in Media encoder.
    I haven't used CS4 yet, what is it's limit? If its still 10Mbits/s, would that be good enough for a final render in avchd? Or would it be better to go a diff codec like H.264 Blu ray? I really Like .wmv for PC Playback.
    Also what is the best Bitrate Mode to use?
    :Constant?
    :Variable Constrained?
    :Variable Unconstrained?
    Thanks...

    WMV and other export options are there to compress your video clips so that they can be more conveniently viewed (downloaded) or handled. The object of exporting them tp other formats is to reduce the size of the output files; rherefore you want a lower bit rate out of the export process than your AVCHD files.
    You will have to experiment a little to find the lowest bit rate that gives you acceptable quality. It depends on the resolution that you select and several other factors.

  • Credit Limit Question

    Does SAP store Credit limit Deviation or does it calculate on the fly. If so what documents are taken into account when determining if the customer is over the credit limit?
    Thank you
    Chintan

    Hi Chintan,
    There is a report called 'Customers Credit Limit Deviation' under Business Partner Reports. If you want to see what is included in the credit/commitment level calculation, go to the Help (F1) file - it explains it in detail.
    You can also set so a warning comes up if a user posts a transactions that affects the credit/commitment level - go to Admin / General Settings / BP tab to activate this warning.
    Heather

  • Customer Has Exceeded Credit Limit Question

    Hi
    At the moment when we raise an order for a customer with a credit limit it appears a warning message saying that the customer has exceeded his credit limit.
    This information is a bit misleading if the customer has yes exceeded his limit but only because the outstanding invoices are not due yet ie the Due Date may be 31st May 2010.
    Is there a way to combine the two information and inform the SAP user when the payments terms for invoices have been exceeded, not just the credit limit?
    Thank you.
    MB

    Hi Matthew ,
    Both the thing are different :
    1. Credit Limit is only for the Alert or you can block the further transaction .
    2. Next you are talking about the Aging report for the outstanding payments .
    So both having different aspects , you can not directly combine the both. But if you want then you can use some reporting tools . 
    Thanks
    Ashish

  • Invoice Verification Tolerance Limit Question

    Hi All,
    I am in the process of learning MM basics and have a question. Supposing, I set all the tolerance limits for logistic invoice verification to "Do Not Check". This means that I set both BR ( Percentage OPUn Variance (IR before GR)) and BW ( Percentage OPUn Variance (GR before IR)) to "Do Not Check". Now when I create a purchase order, can I post an Invoice Receipt before Goods Receipt or not.
    My reasoning is that since we do not check whether IR/GR comes before GR/IR, the system should allow us to post IR before GR. Is this correct. If not, where is the flaw in my reasoning.
    Thanks for your help and time.
    Regards
    Anu

    Hi All,
    Appreciate any help from the expert,
    Let's say I have created PO in ECC 6.0. I have un-ticked the GR based IV, and over delivery qty or under delivery qty is being st to 10%.
    The reason it had been being set up as above since the user might have invoice comes before GR really done.
    then the question is : 
    1. the User wants to control in terms of amount/qty  of invoice that should not be exceed the amount or qty PO. what should be configured in invoice blocking setting?
    Thank you in advance.
    Best Regards,
    Daniel

Maybe you are looking for

  • Warranty and Hard Drive Self Upgrade

    According to Apple insider the hard drive in the new macbooks are easy to get to. I would like to purchase a 2.0 Duo (white) in the store (not fond of the 150 color change) that has a 80gb or 100gb hard drive and would like to get it as soon as possi

  • RCVCAT database is not compatible with this version of RMAN

    I am getting the below error while trying to configure rman catalog datababse. rman target prod_dba/Pass1234@proddb catalog cat_dba/Pass1234@catdb Recovery Manager: Release 9.2.0.1.0 - Production Copyright (c) 1995, 2002, Oracle Corporation. All righ

  • Error while accessing station global in LabVIEW

    I am trying to access the teststand station global value in the LabVIEW using activex methods. If I am reading default station global (TS.LastUserName) i am able to read the value. However if i am trying to read the value of the string station global

  • Packages are NOT transferring to new DP after adding it to a DP group - WHY!!!?

    I am in the midst of trying to put together a Windows 8.1 DP and when I check the Distmgr.log, everything looks fine. Then when I add it to a DP group that my primary DP is a member of for the simple purpose of having those packages transferred over

  • Sony monitor attached to iMac suddenly blacks out

    I have had a Sony monitor (model SDM-HS74P) attached to my iMac for over a year (and prior to that to my old iMac for several years) with no problem. Yesterday out of nowhere it blacks out. I have tried some troubleshooting things as per the Sony gui