Cann't read video rom

Hi All!
I'm try install Solarris 9 x86. All right, but when I'm configure video card as ATI Radeon(it's really instaled video card) I'm see message:
Cann't read Ati Rage/Radeon ROM, and x-server working only if video card configure as VESA card.
When my mistake.
Tanks.
Excuse my bad english

Hi All!
I'm try install Solarris 9 x86. All right, but when I'm configure video card as ATI Radeon(it's really instaled video card) I'm see message:
Cann't read Ati Rage/Radeon ROM, and x-server working only if video card configure as VESA card.
When my mistake.
Tanks.
Excuse my bad english

Similar Messages

  • Ipod too slow when reading video files via DVD player with USB port.

    Hi all, this is my first message in this forum.
    I've got a DVD player that has a USB port and reads all types of disks. When I use my IPOD 80 GB the files I read are somehow frozen and don't run properly (lack of sync between audio and video, etc). I've got version 1.2.1 and use it in disk mode otherwise the player doesn’t see it. Meanwhile a friend of mine uses it's 60 Gb IPO on the same player, version 1.0 and it doesn't need to go to disk mode, and the player reads perfect from it. Is this a problem of the ipod software version?
    Both ipods are in Fat32 format, but in his ipod the partition is set to active. I can't change mine to that, because windows is seeing my IPOD as a removable device, and my friend’s IPOD as a disk.
    Hope I haven't been too confusing, and I welcome any help anyone can give.
    Thanks.

    Sorry, but I don't even know
    what it is you are trying to do. Are you attaching
    the iPod to a stand alone DVD player? Are you trying
    to export stuff out of the iPod into the DVD player?
    Patrick
    Hi, I'm attaching the iPod to a stand alone DVD player, that has a usb input port. And then read video files from it.

  • Superdrive not working correctly (not reading CD-Roms)

    Since installing Snow Leopard last year, I have found that my intel iMac no longer reads CD-Roms (commercial music CDs). It will still read/write to DVD-Rs, read and play DVDs, read/write to CD-Rs. Any ideas? I'm not fond of spending $200+ for a new internal Superdrive, when I can pick up a new slimline DVD read/write combo unit for $30.....

    Mariamne,
    The plot unfolds... Look for any copy-protection notices on the faces of your problematic commercial discs. If you find any, stop here and post back. If you don't, please continue.
    Load a problematic original commercial CD into the optical drive. Once it mounts, check the file sizes of the individual tracks, which should be somewhere in the range of 30-50 MB per file. Do this via a Finder window. (You won't be able to view the file sizes via iTunes unless you first import the files.) If the sizes are in this range, then continue. If not, stop and post back.
    Launch iTunes and from the iTunes menubar, choose iTunes>Preferences. Click on the Advanced tab in the preferences window and then click on Importing. Make note of your preferred import setting so you can reset it again later. There select Import Using AIFF Encoder and check the four boxes below. Next click on the Burning tab and select the Audio CD burn option. Click Okay to close the window and then import the CD. The imported file sizes in iTunes should match the CD file sizes of the original disc. if they do, please continue. If not, stop and post back.
    Attempt to play the imported files with iTunes. If successful, eject the original CD and attempt to burn a blank CD. Check play on the burned CD once it mounts to the desktop, using iTunes.
    Please post back with your results.
    Gary
    ps: What type of computer are you dealing with here? Is it a Powermac G4 or an Intel iMac?

  • I have a problem with the mac can not read video files with the extension IMOD. How can I solve this problem?

    I have a problem with the mac can not read video files with the extension IMOD. How can I solve this problem?

    By doing a Google search. 

  • Reading videos with iphoto and select iphoto in the screen saver

    Since I've upgraded my mac with mavericks, I can not read videos in iphoto'09.
    I have an other proble: I can't select iphoto in the screen saver module.
    Can you help me? thanx

    About videos in iphoto'09: before upgrading my mac with mavericks, in order to read videos I just click on it. Now, itunes don't find the good software to read the video in iphoto.
    About selecting a new screen saver: my mac can not find the iphoto library in the right place when I'm in the screen saver module

  • Cannot read videos on the Canvas

    Hi all!
    I'm still getting used to FCE 4.0, but something bothers me: I can't read videos on the canvas screen. I either get sound an a blue screen with a "non rendu" (it's a French version), image, but no sound (get beeps) or the blue sreccn and the beeps.
    What gives?
    Thanks in advance,
    Claude

    This happens if your clips do not match your sequence settings. What exactly are the item properties of your clips? What are the item properties of your sequence? When you put the first clip into the timeline, do you not get an option to change the sequence to match the clips? If that does not happen the clips are probably in a format that is not supported by FCE, but I'm only guessing without any real information.

  • Failure to read videos

    I installed the latest flash player. However, it does not read videos from internet. It again aks me to intsall the flash player. Why?

    Please do not post the same question multiple times!

  • I need a help in reading video file of 80MB into ...

    Hello,
    I need a help in reading video file of 80MB into a vector storing ByteArrays in it.Please help me soon.
    Thank You

    Hello,
    I was able to solve my problem by thinking & my code goes as follows.I am trying to read a video file in my program.
    public Vector getFileMediaContent(RandomAccessFile fileObj){
         Runtime runtime = Runtime.getRuntime();
    System.out.println ("Free memory : inside Boolean Type Panel" + runtime.freeMemory() );
    dataContent.removeAllElements();
    System.out.println("dataContent :"+dataContent.size());
    try{
    int size=(int)fileObj.length();
    if(size<2000000){
    byte[] data = new byte[size];
    fileObj.read(data);
    dataContent.addElement(data);
    data=null;
    System.gc();
    else{
    int fixedsize=2000000;
    int startindex=0;
    int read=0;
    int remaining=0;
    while(read!=-1){
    byte[] data=new byte[fixedsize];
    read=fileObj.read(data,0,data.length);
    dataContent.addElement(data);
    startindex=startindex+data.length;
    remaining=size-startindex;
    fileObj.seek(startindex);
    data=null;
    System.gc();
    if(remaining>0 && remaining<2000000){
    byte[] data1=new byte[remaining];
    read=fileObj.read(data1,0,data1.length);
    dataContent.addElement(data1);
    data1=null;
    System.gc();
    System.out.println("outside while");
    System.out.println("dataContent 1 :"+dataContent.size());
    System.out.println ("Free memory : inside Boolean Type Panel" + runtime.freeMemory() );
    fileObj = null;
    System.gc();
    }catch(Exception e){
    e.printStackTrace();
    return dataContent;
    Now I am not facing the problem of IndexOut of Bounds Exception But I am getting Out of Memory Error.
    Can You suggest me to come out of this,.
    As I know I have two solutions.
    1.Make the objects Null which is using more space & call System.gc();
    2.Increase the Virtual Memory of my System.
    Any solutions other than this?
    And How to Increase the Virtual Memory?Please do reply.
    ThankYou

  • Impossible to read video after a location rental of a film on itunes store

    It is Impossible to read video after a location rental of a film on itunes store
    I have tried re renting in itunes 
    I have rebooted my ipad
    What do i have to do ?

    Actually, you can. It's a bit of a hack, but nothing serious and it doesn't involve anything that would get your warranty revoked. What it entails is making a tweak to your iTunes Music Library.xml
    1) Make all the informational changes, ratings or whatever to the movie you want to keep on the Apple TV.
    2) Sync the movie to your Apple TV then shut down iTunes
    3) Make a backup of your iTunes Music Libary.xml
    4) Create a small m4v file for each movie you intend to delete from the computer you synced with the Apple TV. Give each file it's own unique name.
    5) Edit the iTunes Music Library.xml for each movie entry, pointing the entries to your tiny dummy m4v files
    6) Delete the original m4v for the movie
    If you open iTunes and sync up to your Apple TV you should notice that the original movie does not get overwritten with the dummy file. The only way the Apple TV will grab that file is if you update the information in your iTunes copy and/or the dates change for the movie record in the xml.
    As a side note to Apple: The fact we cannot leave content on our Apple TVs without this hack is uncharacteristic of your company. I paid for the hard drive, the movie and I have to use twice as much hard drive space on my network than I should? This is not environmentally sound nor is it consumer friendly.
    Enjoy!

  • DVD drive will not read DVD-Roms

    I recently tried to reinstall a game that I had played previously, only to find that my drive will not read it. I can hear the disk spinning, but my computer will not recognize that there is a disk in the drive. I tried some of my other games and I noticed that all of the older games, that ran on CD-Rom, had no trouble installing, while the ones that ran on DVD-Rom never showed up in the drive.
    This is strange because I have installed all of these DVD-Rom games on my laptop before with no problem. I've tried doing simple fixes, like updating everything and uninstalling then reinstalling the drivers, but nothing helps. 

    Hi,
    If it worked before then try few System Restore points and check. Could have happened due to some update.
    Also provide the Product number of your notebook if restore doesnt help.
    Note:
    If you have HP Support Assistant installed on the computer(The Blue Question Mark) then open it ==> Complete all pending Updates & Tuneups==> Restart and Check. It may solve your problem
    Although I am an HP employee, I am speaking for myself and not for HP.
    **Click on “Kudos” Star if you think this reply helped** Or Mark it as "Solved" if issue got fixed.

  • My Macbook Pro 5.1 wont read CD-Rom.

    It plays DVDs ok , but when I insert a Konica CD Rom to load drivers for my printer, it doesnt open the disc and after a couple of attempts it ejects the disc. The disc works when inserted into a (spit!) PC.  Any ideas? I currently have the CD settings to open cd in i-tunes.

    True, I hadn't thought of that. I am not sure I am willing to invest that much money in to it, though. Thank you for your help.

  • Cann't sync video clip from iphoto to iphone 4

    i just have my new replacement iphone 4 today
    and i try to set up everything
    but i cannot sync all video clip i have from iphoto to my new iphone
    any suggestions? thank you

    Holy crap you guys! I'm spinning with outstretched arms knocking stuff over jubilantly screaming "YESSS"! while you guys sit, spinning in your chairs saying "great we saved another idiot..."
    I was told my videos would appear in my photo album.
    Thank you. ThanK YOU! I need to go have some fun now. Wow, it looks great!
    Thanks again. Am I really an idiot...

  • After upgrade to 10.4 won't read CD-ROM's

    I just installed 10.4 from DVD onto my Blue&white G3. Prior to that I installed a Lite-On SOHW-1693S06C combo drive. The Lite-On drive worked fairly well in 10.2 even though it is not technically supported. Now, strangely, it will read DVD's just fine, but will not read a single CD-ROM that I put into it (and I've tried just about every type of CD I can find). When I put in the CD the drive light goes on for a while and then goes off again and nothing - no icon on the screen, no error messages. I found a few posts from a year ago or so that seem to be identifying the same problem. The only solution put forward was to boot from the install DVD and repair permissions. I did that and it didn't solve the problem. Any ideas? (Sorry in advance if this topic has already been covered and solved.)

    Do you have any CDs you can try booting from - Diskwarrior, old OS X or OS 9 installation CDs, etc? If none of those will boot I suspect a hardware problem with the drive. Have you tried cleaning the lens?

  • G5 not reading Video DVDs

    I'm a student filmmaker and I burn Video DVD's all the time. I'll burn a dvd successfully, eject the disc, put it back in the computer and it wont read it. It says "Disk Insertion: This disk is not readable by this computer". What is weird is that it will read DVD's formatted for Data, but not Video DVD's.
    My friend told me to reset something by holding apple + alt + p + r, still not working.
    Anyhelp would be greatly appreciated! Thanks in Advance!

    I don't want to sound pessimistic - but I don't think there is anything you can do. If you read through all the threads in this area - you will see this has happened to many of us.
    First you lose your ability to read DVDs. Next you will lose your ability to record DVDs.
    Mine is at the point where I can't get more than 50mb on a CD.
    And guess what - Apple doesn't seem to want to acknowledge those of us with G5s -- not that this will make you feel better - but you are not alone. It has happened to too many of us.
    Eliminating the dust in your G5 - reconfiguring your desktop nonsense, rewriting permissions - tapping on your processor -- and all the other supposedly "helpful" answers - don't do diddly-squat.
    Been there - done that...
    Get yourself a new DVD -- and become bitter - or smile...
    Because there doesn't seem to be anyone here who can help you -- and no one from Apple is willing to tell the truth about this -- and life must go on.

  • Adobe Reader won't read video links in e-book

    I've downloaded several training ebooks.  These books are designed to be used with Adobe Reader.  They have links in them to training videos.  However, when I open these books in Reader 11.0.2 the video links in the book do not appear.  Others who have these books and use a Macbook Pro like me say that it works fine for them.  What do I do?  I need to use these books badly for training.
    Dave

    What is your operating system?  Reader XI version?
    I never had any problems with opening links; try if this test PDF behaves the same way: https://files.acrobat.com/a/preview/d84f26d4-f71e-42f8-a5dd-36bfda65ae25

Maybe you are looking for

  • Oracle Merant driver not available

    Hi friends, For Creating ODBC Database Connections for DAC Client, i need to create ODBC connection and for it i tried to give ODBC connection for oracle database and they adviced the below points in the docs like To create ODBC connections for Oracl

  • To check the date range

    Hi, I have a table that records the leave for employees. Like employee id , leave start date, leave end date and total hours. I need to find out , if the start date or end date was on weekend , or if the date range includes weekends . And there is on

  • 02 number not being recognized through my Sony xperia z2 tablet

    I brought a sony experia z2 tablet yesterday, I had a sim card for 4g given to me with a number to use. However when I typed that number into 02 priorities it said it was not a recognised number and my tablet will not allow me to make calls. Any help

  • Process chain failure at AND condition

    Hi gurus, Please help me with this issue . the process chain is failing at  the AND process after the DTPgets succesful . its giving the error message as"THIS AND PROCESS IS NOT WAITING FOR EVENT RS PROCESS". PLEASE SUGGEST.

  • Backup everything except the system tablespace

    Is there a way to backup everything except the system tablespace without having to specify every individual tablespace? version is 10.1.0.5 on HP-UX itanium. The reason for this is the database was upgraded from 7.3.4->8i->10.1.0.5 and we are now mig