JMF widthout X11

I have to run a jmf application like daemon in a Linux machine widthout X11 installed but I obtain this error:
javax.media.NoPlayerException: Error instantiating class: com.sun.media.content.unknown.Handler : java.awt.HeadlessExceptionWhat can I do to resolve this problem?
Thank for you help.

How do you intend to play media without X11? My understanding is that the AWT depends on X. Everything else depends on AWT.
Scott

Similar Messages

  • JMF in Unix-Shell:  No X11 DISPLAY variable was set

    Hello guys
    I've got a client-server application. The server runs on linux and is started in the unix-shell.
    When the server just sends out data which was received before, everything works fine. But when I'm using a processor (or a player) it says:
    No X11 DISPLAY variable was set, but this program performed an operation which requires it.
    How can I avoid this problem?
    Thanks in advance,
    Chris

    VladimrN wrote:
    ..No X11 DISPLAY variable was set, but this program performed an operation which requires it.Sounds like the problem of running in a headless environment. A google on "java headless x11" seems to turn up a number of hits.

  • JMF INSTALL ERROR OR WHAT ?

    I'm on Ubuntu 5.10
    and j2sdk1.5
    bruno@bruno:~/JMF-2.1.1e/bin$ ./jmstudio
    Exception in thread "main" java.lang.NullPointerException
    at sun.awt.X11.XMenuPeer.repaintMenuItem(XMenuPeer.java:363)
    at sun.awt.X11.XMenuItemPeer.setEnabled(XMenuItemPeer.java:71)
    at sun.awt.X11.XMenuItemPeer.disable(XMenuItemPeer.java:93)
    at java.awt.MenuItem.disable(MenuItem.java:280)
    at java.awt.MenuItem.enable(MenuItem.java:267)
    at java.awt.MenuItem.setEnabled(MenuItem.java:242)
    at JMStudio.updateMenu(JMStudio.java:1274)
    at JMStudio.<init>(JMStudio.java:119)
    at JMStudio.createNewFrame(JMStudio.java:1412)
    at JMStudio.main(JMStudio.java:1401)
    bruno@bruno:~/JMF-2.1.1e/bin$ ./jmfinit
    JavaSound Capture Supported = true
    JavaSoundAuto: Committed ok
    java.lang.Error: Can't open video card 0
    java.lang.Error: Can't open video card 1
    java.lang.Error: Can't open video card 2
    java.lang.Error: Can't open video card 3
    java.lang.Error: Can't open video card 4
    java.lang.Error: Can't open video card 5
    java.lang.Error: Can't open video card 6
    java.lang.Error: Can't open video card 7
    java.lang.Error: Can't open video card 8
    java.lang.Error: Can't open video card 9
    so what is the solution plz i need JMF
    tahnks for your attetions

    You need to loase a closing brace:
    import java.sql.*;
    import java.io.*;
    class linkrec
        public static void main(String args[]) throws IOException
            for(int j=0;;j++)
                InputStream f= new FileInputStream("D:\\Backup\\BACK UP OF SCADA\\avt\\csv.dat");
                int i;
                do
                    i=f.read();
                    if(i!= -1)
                        System.out.print((char) i);
                while(i!= -1);
                f.close();
    // } class connect{
            try
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                Connection con = DriverManager.getConnection("jdbc:odbc:dacc");
                Statement stmt = con.createStatement();
                stmt.executeUpdate("insert into sheet3 values(10:10,48.20,01556,01129,00177,00400,04076,01668,01336,02830)");
                ResultSet rs = stmt.executeQuery("select * from sheet3");
                while(rs.next())
                    double Mytime = rs.getDouble(1);
                    double Gridfreq= rs.getDouble(2);
                    int ntpc_gen = rs.getInt(3);
                    int nlcii_gen = rs.getInt(4);
                    int maps_gen = rs.getInt(5);
                    int kaps_gen = rs.getInt(6);
                    int ap_gen = rs.getInt(7);
                    int kar_gen= rs.getInt(8);
                    int ker_gen = rs.getInt(9);
                    int tn_gen = rs.getInt(10);
                    //System.out.println( slno +"\t" + name +"\t" + age);
                stmt.close();
                con.close();
                System.out.println("Records Successfully Inserted");
            catch(Exception e)
                e.printStackTrace();

  • Question  linux jmf

    code:
    stream = ((NewReceiveStreamEvent) evt).getReceiveStream();
    tmp_ds = stream.getDataSource();
    Player player = Manager.createRealizedPlayer(tmp_ds); //here exception
    FrameGrabbingControl fgc = (FrameGrabbingControl) player.getControl("javax.media.control.FrameGrabbingControl");
    javax.media.Buffer buffer = fgc.grabFrame();           
    BufferToImage bufferToImage=new BufferToImage((VideoFormat)buffer.getFormat());
    Image image=bufferToImage.createImage(buffer);
    error message:
    javax.media.NoPlayerException: Error instantiating class: com.sun.media.content.unknown.Handler : java.awt.HeadlessException:
    No X11 DISPLAY variable was set, but this program performed an operation which requires it.
    at javax.media.Manager.createPlayerForSource(Manager.java:1502)
    at javax.media.Manager.createPlayer(Manager.java:500)
    at javax.media.Manager.createRealizedPlayer(Manager.java:579)
    at MulServerProcess.createTransmitter(MulServerProcess.java:374)
    at MulServerProcess.update(MulServerProcess.java:286)
    at com.sun.media.rtp.RTPEventHandler.processEvent(RTPEventHandler.java:62)
    at com.sun.media.rtp.RTPEventHandler.dispatchEvents(RTPEventHandler.java:96)
    at com.sun.media.rtp.RTPEventHandler.run(RTPEventHandler.java:115)
    add "export DISPLAY=localhost:0" to file " /etc/profile" ,but nothing happen!

    System.setProperty("java.awt.headless", "true"); add code
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    System.out.println("Headless mode: " + ge.isHeadless()); the answer is true;
    error message:
    javax.media.NoPlayerException: Error instantiating class: com.sun.media.content.unknown.Handler : java.awt.HeadlessException
    at javax.media.Manager.createPlayerForSource(Manager.java:1502)
    at javax.media.Manager.createPlayer(Manager.java:500)
    at MulServerProcess.createTransmitter(MulServerProcess.java:393)
    at MulServerProcess.update(MulServerProcess.java:292)
    at com.sun.media.rtp.RTPEventHandler.processEvent(RTPEventHandler.java:62)
    at com.sun.media.rtp.RTPEventHandler.dispatchEvents(RTPEventHandler.java:96)
    at com.sun.media.rtp.RTPEventHandler.run(RTPEventHandler.java:115)
    Re: Headless exception in AIX using JMF2.1.1
    This question is the same as me. But it is still not solved.
    Is this a bug of JMF in Linux ?

  • JMF broken?

    I just tried to use JMF 2.1.1e under Linux/Java 1.5. I set JMFHOME and CLASSPATH, I ran jmfregistry as root and it worked.
    Yet:
    1. jmstudio did not work:
    NullPointerException at sun.awt.X11.XMenuPeer.repaintMenuItem(XMenuPeer.java:363)
    2. apps using JMF, that previously worked ok, did not work:
    locator = MediaLocator("v4l://0");
    source = javax.media.Manager.createDataSource(locator);
    throws NoDataSourceException.
    What is broken?

    Are you using the VERY latest version of Java 1.5 from Sun? I have had success using JRE 1.5.0_04 on Redhat 9.0. That said, many people have reported Java2 5.0 breaking some parts of JMF and I haven't tried the multimedia capturing parts of JMF. A bit of searching should see what problems others have had.
    Scott

  • Problem installing JMF performance pack for linux

    I'm trying to install the JMF performace pack for linux on redhat 9, and when I run the bin i get...
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x4D3C5B40
    Function=_XtCreateIndirectionTable+0x30
    Library=/usr/X11R6/lib/libXt.so.6
    Current Java thread:
            at sun.awt.motif.MTextAreaPeer.setFont(Native Method)
            at sun.awt.motif.MComponentPeer.initialize(MComponentPeer.java:185)
            at sun.awt.motif.MTextAreaPeer.initialize(MTextAreaPeer.java:58)
            at sun.awt.motif.MComponentPeer.init(MComponentPeer.java:228)
            at sun.awt.motif.MComponentPeer.<init>(MComponentPeer.java:232)
            at sun.awt.motif.MTextAreaPeer.<init>(MTextAreaPeer.java:62)
            at sun.awt.motif.MToolkit.createTextArea(MToolkit.java:197)
            at java.awt.TextArea.addNotify(TextArea.java:276)
            - locked <0x44c7e338> (a java.awt.Component$AWTTreeLock)
            at java.awt.Container.addNotify(Container.java:2049)
            - locked <0x44c7e338> (a java.awt.Component$AWTTreeLock)
            at java.awt.Window.addNotify(Window.java:418)
            - locked <0x44c7e338> (a java.awt.Component$AWTTreeLock)
            at java.awt.Frame.addNotify(Frame.java:482)
            - locked <0x44c7e338> (a java.awt.Component$AWTTreeLock)
            at JMFInit.createGUI(JMFInit.java:242)
            at JMFInit.<init>(JMFInit.java:25)
            at JMFInit.main(JMFInit.java:248)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 08:01 2359587    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/bin/java
    08056000-08059000 rw-p 0000d000 08:01 2359587    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/bin/java
    40000000-40015000 r-xp 00000000 08:01 3063814    /lib/ld-2.3.2.so
    40015000-40016000 rw-p 00015000 08:01 3063814    /lib/ld-2.3.2.so
    40016000-4001e000 r-xp 00000000 08:01 524584     /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/native_threads/libhpi.so
    4001e000-4001f000 rw-p 00007000 08:01 524584     /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/native_threads/libhpi.so
    4001f000-40020000 r-xp 00000000 08:01 2752541    /usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
    40020000-40021000 rw-p 00000000 08:01 2752541    /usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
    40022000-4002d000 r-xp 00000000 08:01 917517     /lib/tls/libpthread-0.34.so
    4002d000-4002e000 rw-p 0000a000 08:01 917517     /lib/tls/libpthread-0.34.so
    40030000-40033000 r-xp 00000000 08:01 3063827    /lib/libdl-2.3.2.so
    40033000-40034000 rw-p 00002000 08:01 3063827    /lib/libdl-2.3.2.so
    40035000-4043b000 r-xp 00000000 08:01 114947     /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/client/libjvm.so
    4043b000-40456000 rw-p 00405000 08:01 114947     /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/client/libjvm.so
    40469000-4047b000 r-xp 00000000 08:01 3063831    /lib/libnsl-2.3.2.so
    4047b000-4047c000 rw-p 00011000 08:01 3063831    /lib/libnsl-2.3.2.so
    4047e000-4049f000 r-xp 00000000 08:01 917515     /lib/tls/libm-2.3.2.so
    4049f000-404a0000 rw-p 00020000 08:01 917515     /lib/tls/libm-2.3.2.so
    404a0000-404a4000 rw-s 00000000 08:01 2343375    /tmp/hsperfdata_root/16836
    404a4000-404a7000 r--s 00000000 08:01 1163539    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/ext/dnsns.jar
    404ab000-404b6000 r-xp 00000000 08:01 3063837    /lib/libnss_files-2.3.2.so
    404b6000-404b7000 rw-p 0000a000 08:01 3063837    /lib/libnss_files-2.3.2.so
    404b7000-404c7000 r-xp 00000000 08:01 3178829    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libverify.so
    404c7000-404c9000 rw-p 0000f000 08:01 3178829    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libverify.so
    404c9000-404e9000 r-xp 00000000 08:01 3178817    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libjava.so
    404e9000-404eb000 rw-p 0001f000 08:01 3178817    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libjava.so
    404eb000-404ff000 r-xp 00000000 08:01 3178830    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libzip.so
    404ff000-40502000 rw-p 00013000 08:01 3178830    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libzip.so
    40502000-41ead000 r--s 00000000 08:01 1917420    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/rt.jar
    41ef7000-41f0d000 r--s 00000000 08:01 1917421    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/sunrsasign.jar
    41f0d000-41fea000 r--s 00000000 08:01 1917414    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/jsse.jar
    41fea000-41ffb000 r--s 00000000 08:01 1917413    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/jce.jar
    41ffb000-41fff000 r-xp 00000000 08:01 262370     /usr/X11R6/lib/libXtst.so.6.1
    41fff000-42000000 rw-p 00004000 08:01 262370     /usr/X11R6/lib/libXtst.so.6.1
    42000000-42130000 r-xp 00000000 08:01 917511     /lib/tls/libc-2.3.2.so
    42130000-42133000 rw-p 00130000 08:01 917511     /lib/tls/libc-2.3.2.so
    42136000-426d6000 r--s 00000000 08:01 1917351    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/charsets.jar
    4c983000-4cb83000 r--p 00000000 08:01 459007     /usr/lib/locale/locale-archive
    4cd87000-4ce43000 r--s 00000000 08:01 1163541    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/ext/localedata.jar
    4ce43000-4ce50000 r--s 00000000 08:01 1163540    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/ext/ldapsec.jar
    4ce50000-4ce6c000 r--s 00000000 08:01 1163542    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/ext/sunjce_provider.jar
    4ce6c000-4d028000 r--s 00000000 08:01 672131     /opt/JMF-2.1.1e/lib/jmf.jar
    4d028000-4d2f9000 r-xp 00000000 08:01 3178809    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libawt.so
    4d2f9000-4d30f000 rw-p 002d0000 08:01 3178809    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libawt.so
    4d334000-4d387000 r-xp 00000000 08:01 3178824    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libmlib_image.so
    4d387000-4d388000 rw-p 00052000 08:01 3178824    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libmlib_image.so
    4d388000-4d38e000 r--s 00000000 08:01 819398     /usr/lib/gconv/gconv-modules.cache
    4d393000-4d39a000 r-xp 00000000 08:01 262360     /usr/X11R6/lib/libXp.so.6.2
    4d39a000-4d39b000 rw-p 00006000 08:01 262360     /usr/X11R6/lib/libXp.so.6.2
    4d39b000-4d3e9000 r-xp 00000000 08:01 262404     /usr/X11R6/lib/libXt.so.6.0
    4d3e9000-4d3ed000 rw-p 0004d000 08:01 262404     /usr/X11R6/lib/libXt.so.6.0
    4d3ed000-4d3fa000 r-xp 00000000 08:01 262346     /usr/X11R6/lib/libXext.so.6.4
    4d3fa000-4d3fb000 rw-p 0000c000 08:01 262346     /usr/X11R6/lib/libXext.so.6.4
    4d3fb000-4d4d7000 r-xp 00000000 08:01 262336     /usr/X11R6/lib/libX11.so.6.2
    4d4d7000-4d4da000 rw-p 000db000 08:01 262336     /usr/X11R6/lib/libX11.so.6.2
    4d4da000-4d4e2000 r-xp 00000000 08:01 262334     /usr/X11R6/lib/libSM.so.6.0
    4d4e2000-4d4e3000 rw-p 00007000 08:01 262334     /usr/X11R6/lib/libSM.so.6.0
    4d4e3000-4d4f7000 r-xp 00000000 08:01 262383     /usr/X11R6/lib/libICE.so.6.3
    4d4f7000-4d4f8000 rw-p 00013000 08:01 262383     /usr/X11R6/lib/libICE.so.6.3
    4d4fa000-4d5b4000 r-xp 00000000 08:01 3178813    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libfontmanager.so
    4d5b4000-4d5cf000 rw-p 000b9000 08:01 3178813    /usr/lib/jvm/java-1.4.2-sun-1.4.2.08/jre/lib/i386/libfontmanager.so
    4d5d0000-4d5d9000 r-xp 00000000 08:01 2752544    /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2
    4d5d9000-4d5da000 rw-p 00008000 08:01 2752544    /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2
    4d5db000-4d5e3000 r-xp 00000000 08:01 262344     /usr/X11R6/lib/libXcursor.so.1.0
    4d5e3000-4d5e4000 rw-p 00007000 08:01 262344     /usr/X11R6/lib/libXcursor.so.1.0
    4d5e4000-4d5eb000 r-xp 00000000 08:01 262366     /usr/X11R6/lib/libXrender.so.1.2.2
    4d5eb000-4d5ec000 rw-p 00006000 08:01 262366     /usr/X11R6/lib/libXrender.so.1.2.2
    4d5ec000-4d608000 r-xp 00000000 08:01 2752538    /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2
    4d608000-4d60a000 rw-p 0001c000 08:01 2752538    /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2
    Heap at VM Abort:
    Heap
    def new generation   total 576K, used 203K [0x44780000, 0x44820000, 0x44c60000)
      eden space 512K,  28% used [0x44780000, 0x447a5158, 0x44800000)
      from space 64K,  86% used [0x44810000, 0x4481dda0, 0x44820000)
      to   space 64K,   0% used [0x44800000, 0x44800000, 0x44810000)
    tenured generation   total 1408K, used 490K [0x44c60000, 0x44dc0000, 0x48780000)
       the space 1408K,  34% used [0x44c60000, 0x44cdab80, 0x44cdac00, 0x44dc0000)
    compacting perm gen  total 4096K, used 2605K [0x48780000, 0x48b80000, 0x4c780000)
       the space 4096K,  63% used [0x48780000, 0x48a0b5f0, 0x48a0b600, 0x48b80000)
    Local Time = Thu Apr 21 09:38:17 2005
    Elapsed Time = 1
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid16836.log.
    # Please refer to the file for further information.
    ./jmf-2_1_1e-linux-i586.bin: line 305: 16836 Aborted                 JMF-2.1.1e/bin/jmfinit /tmp `pwd`/JMF-2.1.1e/doc/jmf-policy $allowCapture $allowSave
    Done.Looks like it could be something to do with a font?
    any ideas?
    thanks

    Please tell me how to solve this problem!
    Thanks!

  • JDK & Suse Linux - cannot use JMF or run JMSTUDIO

    Hi
    I have tried using JMF and running jmstudio with SuSE linux 10.0
    Every time I try and run jmstudio I get the following error:
    Exception in thread "main" java.lang.NullPointerException
    at sun.awt.X11.XMenuPeer.repaintMenuItem(XMenuPeer.java:363)
    at sun.awt.X11.XMenuItemPeer.setEnabled(XMenuItemPeer.java:71)
    at sun.awt.X11.XMenuItemPeer.disable(XMenuItemPeer.java:93)
    at java.awt.MenuItem.disable(MenuItem.java:280)
    at java.awt.MenuItem.enable(MenuItem.java:267)
    at java.awt.MenuItem.setEnabled(MenuItem.java:242)
    at JMStudio.updateMenu(JMStudio.java:1274)
    at JMStudio.<init>(JMStudio.java:119)
    at JMStudio.createNewFrame(JMStudio.java:1412)
    at JMStudio.main(JMStudio.java:1401)
    Please can someone tell me if this is a problem with environment variables?
    I have tried to set up my .bashrc but if someone has a working configuration file I would gladly try it
    I am a final year student and am using JMF for my project and DESPERATELY need to get JMF running
    Any help would be gratefully received
    Regards
    Uri

    In NetBeans using JDK1_5, all you have to do is :
    step 1.) tools -> library manager.
    step 2.) Click on New Library.
    step 3.) Name the Library Name JMF (or whatever).
    step 4.) Leave Library Type as Class Libraries.
    step 5.) Click OK.
    step 6.) Select the library you just made in the
    listbox on the left.
    step 7.) In the center of the form you are in, you should
    see a white box with three tabs on top (Classpath, Sources, Javadoc).
    Make sure Classpath is selected.
    step 8.) On the right , click on the Add Jar/Folder... button.
    step 9.) A dialogue box will pop up. Select the directory where your
    you put JMF. Add the .jar files from the JMF's lib directory and
    click the Add Jar/Folder for that dialog box. Repeat step 8.
    When finnished, you should have three .jar files in your newly
    created library(I called mine JMF). The files should be jmf.jar,
    mediaplayer.jar, and multiplayer.jar.
    step 10.) Create a project.
    step 11.) In the Projects pane, expand Libraries which you will see
    whatever JDK you are using and any other libraries you
    happen to be using. Right Click on Libraries there and
    click Add Library. A popup window displaying libraries
    will show and the one you just created should be in there.
    step 12.) Highlight the library you made and click its Add library
    button.
    You should now be able to use JMF in your apps! I assume you
    know about importing the packages in your sourcefiles!!!! ;-)
    Have fun whichever way you do! Please don't email me with
    dumb questions. Seeya!

  • X11 environment variables on MacBook Pro

    Hi
    I have just got my new MacBook Pro and have installed Gimp to run using x11 that came on the apple installation disks however I can't seem to get the xterm to configure correctly.
    GIMP is installed under /sw/bin but the default PATH for x11 does not include this location so I added PATH=$PATH:/sw/bin:/sw/sbin to a newly created .bash_profile. But x11 did not seem to use this file although terminal worked OK.
    After doing a bit of research, I then created a .bashrc file with the PATH defined and changed the .bash_profile to source .bashrc with no other entries.
    Again this worked OK for Terminal but now when I type 'echo $Path' in an x11 xterm the PATH displays two entries for /sw/bin & /sw/sbin. i.e.
    $ echo $PATH
    /usr/bin:/bin:/usr/sbin:/sbin:/usr/X11R6/bin:/sw/bin:/sw/sbin:/sw/bin:/sw/sbin
    Any ideas why? and how can I correct it?
    Macbook Pro 17   Mac OS X (10.4.9)  

    Sorry this was a bit brief; I think I was still asleep when I typed it.
    The reasons are these:
    1. Many fink programs require environment variables and other settings. When you source that init.sh file, it ensures everything is set up to work out of the box. (Among the things it does is to in turn source every relevant file in /sw/etc/profile.d -- take a look in it to see what, if anything, is in there). There is also some code to keep your path trimmed properly, so you don't get repeats pasted on.
    2. Bash is unique in that either .bashrc or .bash_profile, but not both, get sourced. In a rooted X11 environment, everything works properly, but on OS X, where X11 is "rootless," it leads to unexpected behavior like what you saw. As long as you put everything into one file and then tell the other one to source its contents, you should be ok.
    You can also run X11 stuff from Apple's terminal, provided you somewhere in a startup file have something to set the DISPLAY variable, usually to .0.
    I've put more discussion of these things here

  • X11 on a single screen in a dual monitor setup

    Same problem as posed here: http://discussions.info.apple.com/message.jspa?messageID=2260647&tstart=0
    I was excited when I read the following:
    I fiddled with Apple's X11, which I'd installed on my Desktop, to no avail. Nowhere could I disable the screen-spanning behavior. On a hunch, I decided to try out XDarwin, however, and lo and behold --- a checkbox for enabling/disabling Xinerama! In addition, XDarwin seems to be better behaved than Apple's X11 when it comes to correctly sourcing some of my $HOME/.X* configuration files (e.g., I always had to run xmodmap ~/.Xmodmap manually under X11, even after putting the command in my .xinitrc).
    I only ever use Xquartz(currently XQuartz 2.6.0 (xorg-server 1.9.3)) which is Xdarwin now. But I do not see the mentioned checkbox for enabling/disabling Xinerama.
    Which sounds exactly like what I want to do. I want to have my macbook air(mba) to display full screen Xquartz on external 27" Dell monitor only. On the macbook screen I want to show the OSX desktop with open applications not blacked out by X11.
    Any pointers to this checkbox's location would be great. Or any other way to configure this setup would also be good.
    I'm not looking for solutions that keep the laptop monitor off in any way as I have seen suggested many times. This is because I want to use it to view state of other OS X apps on the macbook screen while working in full screen X session on the external monitor.
    The xnest solution sounds inferior for the same reasons pointed out by Michael C. Lee in the post I mentioned above.

    Hi Andy,
    I really appreciate your help!
    I believe you're correct in that I wouldn't be able to start the X server and have it only produce output on one of my monitors, as they are necessarily part of a single "display" (in OS X, at least). Barring that, however, I wanted to be able to at least keep X11 from creating a single screen that spanned both my monitors (the problem with this is that it doesn't recognize the separate monitor geometries, so large chunks of the virtual spanning screen were inaccessible, and it also made dealing with X apps that are none dual-head friendly a pain). On my linux machine, I was able to get this behavior by default (i.e., separate screens named '.0 and .1' under a single X display), and could get monitor spanning only after enabling the Xinerama extension.
    I fiddled with Apple's X11, which I'd installed on my Desktop, to no avail. Nowhere could I disable the screen-spanning behavior. On a hunch, I decided to try out XDarwin, however, and lo and behold --- a checkbox for enabling/disabling Xinerama! In addition, XDarwin seems to be better behaved than Apple's X11 when it comes to correctly sourcing some of my $HOME/.X* configuration files (e.g., I always had to run xmodmap ~/.Xmodmap manually under X11, even after putting the command in my .xinitrc).
    Anyway, that basically gave me what I needed, so I'm a happy camper. Just thought I'd post this in the unlikely event that someone else is in the same situation. Oh, and if you're curious, the reason I needed to do this in the first place was because I wanted to run the ratpoison windows manager fullscreen --- great for dealing with ADD!

  • Install JMF on Windows 7 64bit

    Dear all,
    After a lot of struggling (and a really mean a lot), I finally got jmf to work on Windows 7 64bit. I figured that I can better not let this information go to waste, so that's why I'm posting it here. I didn't really test the full capabilities of jmf on my platform yet, in fact I only tested those features that I needed for my application. As such I am able to successfully capture and record video clips from my build in webcam of my laptop.
    First let me describe my platform:
    Laptop: Samsung R590 (JS01)
    Processor: I5 450M (64bit)
    OS: Windows 7 64bit
    Webcam: build in
    Secondly I want to apologize in advance if the method below doesn't work for you. The reason for that can be that I had to try so many different things before I finally got it to work, so I'm not really sure which steps are necessary and which ones are not. So I tried to make a guide that only includes the necessary steps, but in reality I tried so much more, so if this tutorial doesn't work for you, please give me feedback, and we'll try to figure it out. :)
    Step one: installation of java JRE/JDK
    JMF will never work on a 64bit JRE/JDK, plain and simple because JMF is too old and doesn't support a 64bit JRE/JDK. Thus your first step has to be to install a 32 bit JRE/JDK on your system. (I uninstalled my 64 bit JRE/JDK first, but I don't now whether or not this is necessary)
    Step two: download JMF with windows performance pack
    Go to the jmf site and download the most recent jmf version, with windows performance pack. (This is - and will probably be forever - version 2.1.1e)
    The link to the website is currently: [https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=7372-jmf-2.1.1e-oth-JPR@CDS-CDS_Developer]
    Step three: install JMF
    Install the file you just downloaded in the normal way you would install any other program. But chose as installation path: "C:\JMF2.1.1e"
    I think this is necessary because of the strict security policy in Windows 7, if you don't do this, I guess jmf won't be able to store capture device settings to your local hard drive. (But again, I'm not completely sure here, please verify this if possible)
    After the installation, you don't have to do anything special to get jmf to work, so you don't manually have to set the JMFDIR, PATH and CLASSPATH (as is explained at the sun website), just skip those steps.
    After the installation, reboot your pc.
    Remark: I recommend you to install jmf as an administrator (but I don't now whether or not this is necessary). To do this, right click the installation file and select: "run as administrator'.
    *Step four: register your capture devices*
    First make sure that all your devices are working properly, I recommend you to use a program like Skype or something just to check whether your microphone is working or not.
    Secondly, open jmfstudio, select 'file > preferences > capture devices', and press the button 'detect capture devices'. Normally you will have to wait for a couple of minutes now (because the determination of all the available video formats takes quite a while). Afterwards jmf should have found all of your devices, that usually looks something like this:
    DirectSoundCapture
    JavaSound audio capture
    vfw:Microsoft WDM Image Capture (Win32):0
    But this can vary according to your configuration off course. :)
    *Step four: test your capture devices*
    In jmfstudio, select 'file > capture' and select the video and audio combo and see if your webcam settings work. You should now be able to view and hear yourself.
    *Step five: that's it, enjoy your jmf*
    *Remarks:*
    My development platform is currently netbeans 6.9.1 and I am able to write code, build it and run it with netbeans. I can also just run normal *.jar files
    *Troubleshoot:*
    If you get a dialog screen when starting your video capture device that looks like this: [http://www.alexandria.nu/ai/machine_vision/dual_cameras/SelectDevice.gif]
    (With off course another name for the capture device), then that means that your capturing device is currently occupied by another program and you can't currently use it.
    To solve this, make sure that no other application is using the webcam. For me even this was insufficient, but I managed to solve this by installing the latest drivers for my webcam from the manufacturing site of my laptop.
    I sincerely hope this tutorial can be of any use for someone, feel free to give me comments/suggestions. And please post here if this works for you or not.
    Greetings, Molly

    Hi
    sure I follow each of your steps, I uninstall all java verisones and installed a new java version 32-bit, I installed JMF in "C: \ JMF2.1.1e".
    when all installing finished, works fine JMF only once, I do the tests, recognizes the device; shows the video, but when I close and open again JStudio don't works throws error, and therefore my apliación not working, always returns null the device

  • Unable to capture video from webcam in JMF in xlet

    hi
    I am unable to capture video from webcam in an Xlet. I am using Xletview to run Xlet. The method CaptureDeviceManager.getDeviceList(vidformat) returns empty array. Which videoformat should I use and why do I get empty array?
    Thanks
    Rajesh

    MHP and OCAP only use JMF 1.0, which does not include support for capturing video. You will not be able to do this in any current MHP/OCAP imlementation that I know of.
    Steve.

  • Unable to capture video from webcam in JMF

    hi
    I am unable to capture video from webcam in an Xlet. I am using Xletview to run Xlet. The method CaptureDeviceManager.getDeviceList(vidformat) returns empty array. Which videoformat should I use and why do I get empty array?

    MHP and OCAP only use JMF 1.0, which does not include support for capturing video. You will not be able to do this in any current MHP/OCAP imlementation that I know of.
    Steve.

  • Detecting Video Capture Devices without Installing JMF

    Hi All,
    I want to detect the video capture devices, without installing the JMF.
    I had included the jmf (windows version) in lib path in netbeans ide. I am able to detect the audio capture device. But unable to detect the video capture devices. But if I install the JMF, I am able to detect the Video Capture devices in My system. Can anyone help me?
    Thanks,
    Vinoth Kumar.

    YES! Please take a look at SIP Communicator project. They have all what u want.
    The main idea is copy all .dll files to System or System32 (Please check files which JMF will copy to ur computer and where).
    U need to have jmf.jar and sound.jar too ( maybe more) in your computer.
    Your program should have DirectSoundAuto.java, JavaSoundAuto.java, JavaSoundDetector.java, JMFInit.java. Those files are in JMStudio source code. They are used to detect all capture devices and register it to JMF, but wait !!! where they will be saved? In order to save information about capture devices which are detected, you should create "jmf.properties" file in the same location with jmf.jar.Therefore, u should modify the JMFInit.java so it can check if the "jmf.properties" exists. If it's not, you have to create it.
    Check SIP Communicator at Folder "media" then "device". They have modified those files I mentioned above and created some new files to SC can detect more devices.
    Edited by: tamngminh on Sep 16, 2008 9:50 AM

  • Problems in sound capture and JMF deployment

    Hello:
    I am new to JMF.
    I made an applet using JDK 1.3 on JBuilder 5. This applet captures and plays audio. When I run it through JBuilder's IDE, it runs fine. But when I run it independently, the applet's GUI appears but sound recording doesnn't work. Remember that I have JRE1.4.2 and JMF2.1.1e installed on my machine.
    When I installed JMF, I enabled the recording, and file writing options for an applet.
    To further check the problem, I ran it through JMF debugger. There I found that it says that ,
    <permission javax.sound.sampled.AudioPermission "record";> is not enabled.
    To enable it I added this entry in java.policy. This allowed the audio capture to work.
    But my question is,
    1. Why isn't this entry present by default in java.policy?
    2. Even one of my user entered this entry in java.policy, but was unable to capture audio.
    3. I want my applet to be running with different users having different versions of JRE,JMF and browser settings. How can I do this, without asking my user to do anything? I simply want that when my user downloads this applet, I should provide him with some installation file that installs JMF as well as configures everything on the system in a way that he can use this applet easily.
    Haven't you guys faced such problems in deploying JMF stuff?
    I'll be grateful for any help.
    Thanks
    Jami

    Hi.
    I am facing very similar problems: it looks like deploying JMF with Java Applets is really a challange!
    On my own test installation, if I enable audio capture and file writing for applets through the JMFRegistry, then I am able to record audio from my test applet, even when executed in the target web browser.
    Nevertheless, how to deploy the applet in such a way clients won't be required to manually install JMF and enable audio capture and file writing through the JMFRegistry?
    It looks like the JMF Customizer is able to produce a custom JAR also embedding user preferences for audio capture from applets and file writing , is this correct?
    Any help would be greatly appreciated.
    Regards,
    Marco.

  • Cannot Get X11 Running

    So, I've spent the last few days setting up Arch on my iMac.  I've been using Linux for a few years, but this is the first time I've tried to setup a distro myself.  Anyway, I got things partitioned and dual booting okay, but I'm now stuck trying to get X to work.  I'm not sure if this is a problem with my graphics card, with the drivers, with X11, with my sound, or with my general configuration, but what I *do* know is that I'm a newbie.. so I hope this is the right place to be.
    I've been able to get unstuck thus far because I've had a concrete google-able error to look up... but none of these warnings are particularly illuminating.  I know I'm committing the cardinal sin of not including bunches of relevant files, but I guess that's a Catch-22, since I don't know how to copy-pasta things from that computer as I don't have a WM, so bear with me and I'll try to provide the information ya'll need.
    $ lspci | grep VGA
    01:00.0 VGA compatible controller: ATI Technologies Inc M98L [Mobility Radeon HD4850]
    I'm using Catalyst -- I tried the open source drivers but I seem to have more luck with Catalyst (I can switch back, not particularly set on either, and I was careful to reboot between uninstalling and installing and remove the old config files).  I'm using the 3.2.5-1 kernel and Catalyst 12. The xorg.conf file indicates to use "fglrx" for the graphics card on "PCI:1:0:0" (all the settings from an aticonfig --init).  I have fglrx in the the rc.conf modules as well, and I'm running the kernel with nomodeset (if I don't, it wont even boot.. not even a little bit). 
    So, the problem... I try starting X with startx, and it goes grey, then black, and the shuts down "successfully" without doing anything.  Just running X will hang on a grey screen and I'll have to reboot.  At least startx spits out stuff to the command line:
    $ startx
    (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
    [- XMM_GLX] [I ]glesxXvInit Configureable RGBOutputColorRange
    xinit: connection to X server lost
    waiting for X server to shut down Server terminated successfully (0). Closing log file.
    The device at that port is the HDMI Radeon sound -- so I don't know why that's relevant.  I've tried to add a Device section for it but the warning persists.  I haven't changed xinit, and I have installed twm, clock, xterm, etc.  There are no errors in the log file, only warnings, including the warning above:
    $ cat /var/log/Xorg.0.log | grep WW
    (WW) Falling back to old probe method for fglrx
    (WW) fglrx(0): board is an unknown third party board, chipset is supported
    Running just X, or various other similar commands lead to the same warnings and observationally equivalent behavior.  This might be needless to say, but the commands to "see if you set this up right" also fail, like
    $ glxinfo | grep direct
    Error: unable to open display
    So... yeah.
    EDIT: Figured out how to command line email myself the files..!
    The output of startx to the terminal:
    X.Org X Server 1.10.4
    Release Date: 2011-08-19
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.0-ARCH x86_64
    Current Operating System: Linux archsepia 3.2.5-1-ARCH #1 SMP PREEMPT Tue Feb 7 08:34:36 CET 2012 x86_64
    Kernel command line: root=/dev/sda6 ro nomodeset 5
    Build Date: 17 September 2011 07:42:58AM
    Current version of pixman: 0.24.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 15 18:05:38 2012
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
    [- XMM_GLX] [I ]glesxXvInit Configureable RGBOutputColorRange
    xinit: connection to X server lost
    waiting for X server to shut down .
    The contents of Xorg.0.log after that (or after something similar):
    [ 73.402]
    X.Org X Server 1.10.4
    Release Date: 2011-08-19
    [ 73.403] X Protocol Version 11, Revision 0
    [ 73.403] Build Operating System: Linux 3.0-ARCH x86_64
    [ 73.403] Current Operating System: Linux archsepia 3.2.5-1-ARCH #1 SMP PREEMPT Tue Feb 7 08:34:36 CET 2012 x86_64
    [ 73.403] Kernel command line: root=/dev/sda6 ro nomodeset 5
    [ 73.403] Build Date: 17 September 2011 07:42:58AM
    [ 73.403]
    [ 73.403] Current version of pixman: 0.24.4
    [ 73.403] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 73.403] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 73.403] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 15 18:05:38 2012
    [ 73.403] (==) Using config file: "/etc/X11/xorg.conf"
    [ 73.403] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 73.403] (==) ServerLayout "aticonfig Layout"
    [ 73.403] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 73.403] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 73.403] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 73.403] (==) Automatically adding devices
    [ 73.403] (==) Automatically enabling devices
    [ 73.403] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 73.403] Entry deleted from font path.
    [ 73.403] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 73.403] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/Type1/".
    [ 73.403] Entry deleted from font path.
    [ 73.403] (Run 'mkfontdir' on "/usr/share/fonts/Type1/").
    [ 73.403] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 73.403] Entry deleted from font path.
    [ 73.403] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 73.403] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 73.403] Entry deleted from font path.
    [ 73.403] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 73.403] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 73.403] (**) ModulePath set to "/usr/lib/xorg/modules/extensions/fglrx,/usr/lib/xorg/modules"
    [ 73.403] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 73.403] (II) Loader magic: 0x7d6160
    [ 73.403] (II) Module ABI versions:
    [ 73.403] X.Org ANSI C Emulation: 0.4
    [ 73.403] X.Org Video Driver: 10.0
    [ 73.403] X.Org XInput driver : 12.2
    [ 73.403] X.Org Server Extension : 5.0
    [ 73.404] (--) PCI:*(0:1:0:0) 1002:944a:106b:00b5 rev 0, Mem @ 0xc0000000/268435456, 0xd0620000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    [ 73.404] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 73.404] (II) "extmod" will be loaded by default.
    [ 73.404] (II) "dbe" will be loaded by default.
    [ 73.404] (II) "glx" will be loaded by default.
    [ 73.404] (II) "record" will be loaded by default.
    [ 73.404] (II) "dri" will be loaded by default.
    [ 73.404] (II) "dri2" will be loaded by default.
    [ 73.404] (II) LoadModule: "extmod"
    [ 73.404] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 73.404] (II) Module extmod: vendor="X.Org Foundation"
    [ 73.404] compiled for 1.10.4, module version = 1.0.0
    [ 73.404] Module class: X.Org Server Extension
    [ 73.404] ABI class: X.Org Server Extension, version 5.0
    [ 73.404] (II) Loading extension MIT-SCREEN-SAVER
    [ 73.404] (II) Loading extension XFree86-VidModeExtension
    [ 73.404] (II) Loading extension XFree86-DGA
    [ 73.404] (II) Loading extension DPMS
    [ 73.404] (II) Loading extension XVideo
    [ 73.404] (II) Loading extension XVideo-MotionCompensation
    [ 73.404] (II) Loading extension X-Resource
    [ 73.404] (II) LoadModule: "dbe"
    [ 73.404] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 73.404] (II) Module dbe: vendor="X.Org Foundation"
    [ 73.404] compiled for 1.10.4, module version = 1.0.0
    [ 73.405] Module class: X.Org Server Extension
    [ 73.405] ABI class: X.Org Server Extension, version 5.0
    [ 73.405] (II) Loading extension DOUBLE-BUFFER
    [ 73.405] (II) LoadModule: "glx"
    [ 73.405] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 73.405] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 73.405] compiled for 6.9.0, module version = 1.0.0
    [ 73.405] (II) Loading extension GLX
    [ 73.405] (II) LoadModule: "record"
    [ 73.405] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 73.405] (II) Module record: vendor="X.Org Foundation"
    [ 73.405] compiled for 1.10.4, module version = 1.13.0
    [ 73.405] Module class: X.Org Server Extension
    [ 73.405] ABI class: X.Org Server Extension, version 5.0
    [ 73.405] (II) Loading extension RECORD
    [ 73.405] (II) LoadModule: "dri"
    [ 73.405] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 73.405] (II) Module dri: vendor="X.Org Foundation"
    [ 73.405] compiled for 1.10.4, module version = 1.0.0
    [ 73.405] ABI class: X.Org Server Extension, version 5.0
    [ 73.405] (II) Loading extension XFree86-DRI
    [ 73.405] (II) LoadModule: "dri2"
    [ 73.405] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 73.405] (II) Module dri2: vendor="X.Org Foundation"
    [ 73.405] compiled for 1.10.4, module version = 1.2.0
    [ 73.405] ABI class: X.Org Server Extension, version 5.0
    [ 73.405] (II) Loading extension DRI2
    [ 73.405] (II) LoadModule: "fglrx"
    [ 73.405] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 73.416] (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
    [ 73.416] compiled for 1.4.99.906, module version = 8.93.4
    [ 73.417] Module class: X.Org Video Driver
    [ 73.417] (II) Loading sub module "fglrxdrm"
    [ 73.417] (II) LoadModule: "fglrxdrm"
    [ 73.417] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 73.417] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
    [ 73.417] compiled for 1.4.99.906, module version = 8.93.4
    [ 73.417] (II) ATI Proprietary Linux Driver Version Identifier:8.93.4
    [ 73.417] (II) ATI Proprietary Linux Driver Release Identifier: 8.93
    [ 73.417] (II) ATI Proprietary Linux Driver Build Date: Dec 5 2011 21:06:58
    [ 73.417] (--) using VT number 7
    [ 73.419] (WW) Falling back to old probe method for fglrx
    [ 73.434] (II) Loading PCS database from /etc/ati/amdpcsdb
    [ 73.435] (--) Chipset Supported AMD Graphics Processor (0x944A) found
    [ 73.436] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
    [ 73.436] (II) AMD Video driver is running on a device belonging to a group targeted for this release
    [ 73.436] (II) AMD Video driver is signed
    [ 73.436] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 73.436] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 73.436] (II) fglrx(0): pEnt->device->identifier=0x1d2d540
    [ 73.436] (II) fglrx(0): === [xdl_xs110_atiddxPreInit] === begin
    [ 73.436] (II) Loading sub module "vgahw"
    [ 73.436] (II) LoadModule: "vgahw"
    [ 73.437] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 73.437] (II) Module vgahw: vendor="X.Org Foundation"
    [ 73.437] compiled for 1.10.4, module version = 0.1.0
    [ 73.437] ABI class: X.Org Video Driver, version 10.0
    [ 73.437] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 73.437] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 73.437] (==) fglrx(0): Default visual is TrueColor
    [ 73.437] (**) fglrx(0): Option "DPMS" "true"
    [ 73.437] (==) fglrx(0): RGB weight 888
    [ 73.437] (II) fglrx(0): Using 8 bits per RGB
    [ 73.437] (==) fglrx(0): Buffer Tiling is ON
    [ 73.437] (II) Loading sub module "fglrxdrm"
    [ 73.437] (II) LoadModule: "fglrxdrm"
    [ 73.437] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 73.437] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
    [ 73.437] compiled for 1.4.99.906, module version = 8.93.4
    [ 73.439] ukiDynamicMajor: found major device number 251
    [ 73.439] ukiDynamicMajor: found major device number 251
    [ 73.439] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 73.439] ukiOpenDevice: node name is /dev/ati/card0
    [ 73.439] ukiOpenDevice: open result is 9, (OK)
    [ 73.439] ukiOpenByBusid: ukiOpenMinor returns 9
    [ 73.439] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 73.439] (==) fglrx(0): NoAccel = NO
    [ 73.439] (==) fglrx(0): ATI 2D Acceleration Architecture enabled
    [ 73.439] (--) fglrx(0): Chipset: "ATI Mobility Radeon HD 4850" (Chipset = 0x944a)
    [ 73.439] (--) fglrx(0): (PciSubVendor = 0x106b, PciSubDevice = 0x00b5)
    [ 73.439] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
    [ 73.439] (--) fglrx(0): Linear framebuffer (phys) at 0xc0000000
    [ 73.439] (--) fglrx(0): MMIO registers at 0xd0620000
    [ 73.439] (--) fglrx(0): I/O port at 0x00002000
    [ 73.439] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 73.440] (II) fglrx(0): AC Adapter is used
    [ 73.444] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    [ 73.532] (II) Loading sub module "vbe"
    [ 73.532] (II) LoadModule: "vbe"
    [ 73.532] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 73.532] (II) Module vbe: vendor="X.Org Foundation"
    [ 73.532] compiled for 1.10.4, module version = 1.1.0
    [ 73.532] ABI class: X.Org Video Driver, version 10.0
    [ 73.533] (II) fglrx(0): VESA BIOS detected
    [ 73.533] (II) fglrx(0): VESA VBE Version 3.0
    [ 73.533] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
    [ 73.533] (II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
    [ 73.533] (II) fglrx(0): VESA VBE OEM Software Rev: 11.22
    [ 73.533] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI Technologies Inc.
    [ 73.533] (II) fglrx(0): VESA VBE OEM Product: M98
    [ 73.533] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    [ 73.576] (II) fglrx(0): ATI Video BIOS revision 9 or later detected
    [ 73.576] (--) fglrx(0): Video RAM: 524288 kByte, Type: GDDR3
    [ 73.576] (II) fglrx(0): PCIE card detected
    [ 73.576] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 73.576] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 73.582] (II) fglrx(0): Using adapter: 1:0.0.
    [ 73.660] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf00000000, MCFBSize = 0x20000000)
    [ 73.740] (II) fglrx(0): Interrupt handler installed at IRQ 48.
    [ 73.740] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 73.740] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 73.740] (==) fglrx(0): Center Mode is disabled
    [ 73.740] (II) Loading sub module "fb"
    [ 73.740] (II) LoadModule: "fb"
    [ 73.740] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 73.740] (II) Module fb: vendor="X.Org Foundation"
    [ 73.740] compiled for 1.10.4, module version = 1.0.0
    [ 73.740] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 73.740] (II) Loading sub module "ddc"
    [ 73.740] (II) LoadModule: "ddc"
    [ 73.740] (II) Module "ddc" already built-in
    [ 74.177] (II) fglrx(0): Finished Initialize PPLIB!
    [ 74.179] (II) fglrx(0): Output LVDS using monitor section aticonfig-Monitor[0]-0
    [ 74.179] (II) fglrx(0): Output DFP1 has no monitor section
    [ 74.179] (II) fglrx(0): Output CRT1 has no monitor section
    [ 74.179] (II) Loading sub module "ddc"
    [ 74.179] (II) LoadModule: "ddc"
    [ 74.179] (II) Module "ddc" already built-in
    [ 74.179] (II) fglrx(0): Connected Display0: LVDS
    [ 74.179] (II) fglrx(0): Display0 EDID data ---------------------------
    [ 74.179] (II) fglrx(0): Manufacturer: APP Model: 9cb5 Serial#: 0
    [ 74.179] (II) fglrx(0): Year: 2009 Week: 28
    [ 74.179] (II) fglrx(0): EDID Version: 1.4
    [ 74.179] (II) fglrx(0): Digital Display Input
    [ 74.179] (II) fglrx(0): 8 bits per channel
    [ 74.179] (II) fglrx(0): Digital interface is DisplayPort
    [ 74.179] (II) fglrx(0): Max Image Size [cm]: horiz.: 60 vert.: 34
    [ 74.179] (II) fglrx(0): Gamma: 2.20
    [ 74.179] (II) fglrx(0): DPMS capabilities: Off
    [ 74.179] (II) fglrx(0): Supported color encodings: RGB 4:4:4
    [ 74.179] (II) fglrx(0): First detailed timing is preferred mode
    [ 74.179] (II) fglrx(0): Preferred mode is native pixel format and refresh rate
    [ 74.179] (II) fglrx(0): redX: 0.653 redY: 0.334 greenX: 0.300 greenY: 0.620
    [ 74.179] (II) fglrx(0): blueX: 0.146 blueY: 0.050 whiteX: 0.312 whiteY: 0.329
    [ 74.179] (II) fglrx(0): Manufacturer's mask: 0
    [ 74.179] (II) fglrx(0): Supported detailed timing:
    [ 74.179] (II) fglrx(0): clock: 241.5 MHz Image Size: 597 x 336 mm
    [ 74.179] (II) fglrx(0): h_active: 2560 h_sync: 2608 h_sync_end 2640 h_blank_end 2720 h_border: 0
    [ 74.179] (II) fglrx(0): v_active: 1440 v_sync: 1443 v_sync_end 1448 v_blanking: 1481 v_border: 0
    [ 74.179] (II) fglrx(0): Supported detailed timing:
    [ 74.179] (II) fglrx(0): clock: 74.5 MHz Image Size: 597 x 336 mm
    [ 74.179] (II) fglrx(0): h_active: 1280 h_sync: 1344 h_sync_end 1472 h_blank_end 1664 h_border: 0
    [ 74.179] (II) fglrx(0): v_active: 720 v_sync: 723 v_sync_end 728 v_blanking: 748 v_border: 0
    [ 74.179] (II) fglrx(0): Unknown vendor-specific block 2
    [ 74.179] (II) fglrx(0): Monitor name: Color LCD
    [ 74.179] (II) fglrx(0): Supported detailed timing:
    [ 74.179] (II) fglrx(0): clock: 241.5 MHz Image Size: 597 x 336 mm
    [ 74.179] (II) fglrx(0): h_active: 2560 h_sync: 2608 h_sync_end 2640 h_blank_end 2720 h_border: 0
    [ 74.179] (II) fglrx(0): v_active: 1440 v_sync: 1443 v_sync_end 1448 v_blanking: 1481 v_border: 0
    [ 74.179] (II) fglrx(0): Supported detailed timing:
    [ 74.179] (II) fglrx(0): clock: 74.5 MHz Image Size: 597 x 336 mm
    [ 74.179] (II) fglrx(0): h_active: 1280 h_sync: 1344 h_sync_end 1472 h_blank_end 1664 h_border: 0
    [ 74.179] (II) fglrx(0): v_active: 720 v_sync: 723 v_sync_end 728 v_blanking: 748 v_border: 0
    [ 74.179] (II) fglrx(0): Number of EDID sections to follow: 1
    [ 74.179] (II) fglrx(0): EDID (in hex):
    [ 74.179] (II) fglrx(0): 00ffffffffffff000610b59c00000000
    [ 74.179] (II) fglrx(0): 1c130104a53c2278226fb1a7554c9e25
    [ 74.179] (II) fglrx(0): 0c505400000001010101010101010101
    [ 74.179] (II) fglrx(0): 010101010101565e00a0a0a029503020
    [ 74.179] (II) fglrx(0): 350055502100001a1a1d008051d01c20
    [ 74.179] (II) fglrx(0): 4080350055502100001c000000020106
    [ 74.179] (II) fglrx(0): 10010a010000000000000000000000fc
    [ 74.179] (II) fglrx(0): 00436f6c6f72204c43440a2020200108
    [ 74.179] (II) fglrx(0): End of Display0 EDID data --------------------
    [ 74.199] (II) fglrx(0): EDID for output LVDS
    [ 74.199] (II) fglrx(0): Manufacturer: APP Model: 9cb5 Serial#: 0
    [ 74.199] (II) fglrx(0): Year: 2009 Week: 28
    [ 74.199] (II) fglrx(0): EDID Version: 1.4
    [ 74.199] (II) fglrx(0): Digital Display Input
    [ 74.199] (II) fglrx(0): 8 bits per channel
    [ 74.199] (II) fglrx(0): Digital interface is DisplayPort
    [ 74.199] (II) fglrx(0): Max Image Size [cm]: horiz.: 60 vert.: 34
    [ 74.199] (II) fglrx(0): Gamma: 2.20
    [ 74.199] (II) fglrx(0): DPMS capabilities: Off
    [ 74.199] (II) fglrx(0): Supported color encodings: RGB 4:4:4
    [ 74.199] (II) fglrx(0): First detailed timing is preferred mode
    [ 74.199] (II) fglrx(0): Preferred mode is native pixel format and refresh rate
    [ 74.199] (II) fglrx(0): redX: 0.653 redY: 0.334 greenX: 0.300 greenY: 0.620
    [ 74.199] (II) fglrx(0): blueX: 0.146 blueY: 0.050 whiteX: 0.312 whiteY: 0.329
    [ 74.199] (II) fglrx(0): Manufacturer's mask: 0
    [ 74.199] (II) fglrx(0): Supported detailed timing:
    [ 74.199] (II) fglrx(0): clock: 241.5 MHz Image Size: 597 x 336 mm
    [ 74.199] (II) fglrx(0): h_active: 2560 h_sync: 2608 h_sync_end 2640 h_blank_end 2720 h_border: 0
    [ 74.199] (II) fglrx(0): v_active: 1440 v_sync: 1443 v_sync_end 1448 v_blanking: 1481 v_border: 0
    [ 74.199] (II) fglrx(0): Supported detailed timing:
    [ 74.199] (II) fglrx(0): clock: 74.5 MHz Image Size: 597 x 336 mm
    [ 74.199] (II) fglrx(0): h_active: 1280 h_sync: 1344 h_sync_end 1472 h_blank_end 1664 h_border: 0
    [ 74.199] (II) fglrx(0): v_active: 720 v_sync: 723 v_sync_end 728 v_blanking: 748 v_border: 0
    [ 74.199] (II) fglrx(0): Unknown vendor-specific block 2
    [ 74.199] (II) fglrx(0): Monitor name: Color LCD
    [ 74.199] (II) fglrx(0): Supported detailed timing:
    [ 74.199] (II) fglrx(0): clock: 241.5 MHz Image Size: 597 x 336 mm
    [ 74.199] (II) fglrx(0): h_active: 2560 h_sync: 2608 h_sync_end 2640 h_blank_end 2720 h_border: 0
    [ 74.199] (II) fglrx(0): v_active: 1440 v_sync: 1443 v_sync_end 1448 v_blanking: 1481 v_border: 0
    [ 74.199] (II) fglrx(0): Supported detailed timing:
    [ 74.199] (II) fglrx(0): clock: 74.5 MHz Image Size: 597 x 336 mm
    [ 74.199] (II) fglrx(0): h_active: 1280 h_sync: 1344 h_sync_end 1472 h_blank_end 1664 h_border: 0
    [ 74.199] (II) fglrx(0): v_active: 720 v_sync: 723 v_sync_end 728 v_blanking: 748 v_border: 0
    [ 74.199] (II) fglrx(0): Number of EDID sections to follow: 1
    [ 74.199] (II) fglrx(0): EDID (in hex):
    [ 74.199] (II) fglrx(0): 00ffffffffffff000610b59c00000000
    [ 74.199] (II) fglrx(0): 1c130104a53c2278226fb1a7554c9e25
    [ 74.199] (II) fglrx(0): 0c505400000001010101010101010101
    [ 74.199] (II) fglrx(0): 010101010101565e00a0a0a029503020
    [ 74.199] (II) fglrx(0): 350055502100001a1a1d008051d01c20
    [ 74.199] (II) fglrx(0): 4080350055502100001c000000020106
    [ 74.199] (II) fglrx(0): 10010a010000000000000000000000fc
    [ 74.199] (II) fglrx(0): 00436f6c6f72204c43440a2020200108
    [ 74.199] (II) fglrx(0): EDID vendor "APP", prod id 40117
    [ 74.199] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 74.199] (II) fglrx(0): Modeline "2560x1440"x0.0 241.50 2560 2608 2640 2720 1440 1443 1448 1481 +hsync -vsync (88.8 kHz)
    [ 74.199] (II) fglrx(0): Modeline "1280x720"x0.0 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz)
    [ 74.200] (II) fglrx(0): Printing probed modes for output LVDS
    [ 74.200] (II) fglrx(0): Modeline "2560x1440"x60.0 241.50 2560 2608 2640 2720 1440 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1920x1440"x60.0 241.50 1920 2608 2640 2720 1440 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1800x1440"x60.0 241.50 1800 2608 2640 2720 1440 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1856x1392"x60.0 241.50 1856 2608 2640 2720 1392 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1792x1344"x60.0 241.50 1792 2608 2640 2720 1344 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1920x1200"x60.0 241.50 1920 2608 2640 2720 1200 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1920x1080"x60.0 241.50 1920 2608 2640 2720 1080 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1600x1200"x60.0 241.50 1600 2608 2640 2720 1200 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1680x1050"x60.0 241.50 1680 2608 2640 2720 1050 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1400x1050"x60.0 241.50 1400 2608 2640 2720 1050 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1280x1024"x60.0 241.50 1280 2608 2640 2720 1024 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1440x900"x60.0 241.50 1440 2608 2640 2720 900 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1280x960"x60.0 241.50 1280 2608 2640 2720 960 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1280x800"x60.0 241.50 1280 2608 2640 2720 800 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1152x864"x60.0 241.50 1152 2608 2640 2720 864 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1280x768"x60.0 241.50 1280 2608 2640 2720 768 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1280x720"x60.0 241.50 1280 2608 2640 2720 720 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1024x768"x60.0 241.50 1024 2608 2640 2720 768 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "1024x600"x60.0 241.50 1024 2608 2640 2720 600 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "800x600"x60.0 241.50 800 2608 2640 2720 600 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "800x480"x60.0 241.50 800 2608 2640 2720 480 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "720x480"x60.0 241.50 720 2608 2640 2720 480 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): Modeline "640x480"x60.0 241.50 640 2608 2640 2720 480 1443 1448 1481 -hsync +vsync (88.8 kHz)
    [ 74.200] (II) fglrx(0): EDID for output DFP1
    [ 74.200] (II) fglrx(0): EDID for output CRT1
    [ 74.200] (II) fglrx(0): Output LVDS connected
    [ 74.200] (II) fglrx(0): Output DFP1 disconnected
    [ 74.200] (II) fglrx(0): Output CRT1 disconnected
    [ 74.200] (II) fglrx(0): Using exact sizes for initial modes
    [ 74.200] (II) fglrx(0): Output LVDS using initial mode 2560x1440
    [ 74.200] (II) fglrx(0): Display dimensions: (600, 340) mm
    [ 74.200] (II) fglrx(0): DPI set to (108, 108)
    [ 74.200] (II) fglrx(0): Adapter ATI Mobility Radeon HD 4850 has 2 configurable heads and 1 displays connected.
    [ 74.200] (==) fglrx(0): PseudoColor visuals disabled
    [ 74.200] (II) Loading sub module "ramdac"
    [ 74.200] (II) LoadModule: "ramdac"
    [ 74.200] (II) Module "ramdac" already built-in
    [ 74.200] (==) fglrx(0): NoDRI = NO
    [ 74.200] (==) fglrx(0): Capabilities: 0x00000000
    [ 74.200] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 74.200] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 74.200] (==) fglrx(0): UseFastTLS=0
    [ 74.200] (==) fglrx(0): BlockSignalsOnLock=1
    [ 74.200] (--) Depth 24 pixmap format is 32 bpp
    [ 74.200] (II) Loading extension ATIFGLRXDRI
    [ 74.200] (II) fglrx(0): doing swlDriScreenInit
    [ 74.200] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 74.200] ukiDynamicMajor: found major device number 251
    [ 74.200] ukiDynamicMajor: found major device number 251
    [ 74.200] ukiDynamicMajor: found major device number 251
    [ 74.200] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 74.200] ukiOpenDevice: node name is /dev/ati/card0
    [ 74.200] ukiOpenDevice: open result is 12, (OK)
    [ 74.200] ukiOpenByBusid: ukiOpenMinor returns 12
    [ 74.200] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 74.200] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 74.200] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
    [ 74.200] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x50000
    [ 74.200] (II) fglrx(0): [uki] mapped SAREA 0x50000 to 0x7f5494ee8000
    [ 74.200] (II) fglrx(0): [uki] framebuffer handle = 0x51000
    [ 74.200] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 74.200] (II) fglrx(0): swlDriScreenInit done
    [ 74.200] (II) fglrx(0): Kernel Module Version Information:
    [ 74.200] (II) fglrx(0): Name: fglrx
    [ 74.200] (II) fglrx(0): Version: 8.93.4
    [ 74.200] (II) fglrx(0): Date: Dec 5 2011
    [ 74.200] (II) fglrx(0): Desc: ATI FireGL DRM kernel module
    [ 74.200] (II) fglrx(0): Kernel Module version matches driver.
    [ 74.200] (II) fglrx(0): Kernel Module Build Time Information:
    [ 74.200] (II) fglrx(0): Build-Kernel UTS_RELEASE: 3.2.5-1-ARCH
    [ 74.200] (II) fglrx(0): Build-Kernel MODVERSIONS: no
    [ 74.200] (II) fglrx(0): Build-Kernel __SMP__: no
    [ 74.200] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 74.200] (II) fglrx(0): [uki] register handle = 0x00052000
    [ 74.214] (II) fglrx(0): DRI initialization successfull
    [ 74.214] (II) fglrx(0): FBADPhys: 0xf00000000 FBMappedSize: 0x01900000
    [ 74.214] (==) fglrx(0): Backing store disabled
    [ 74.214] (II) Loading extension FGLRXEXTENSION
    [ 74.214] (**) fglrx(0): DPMS enabled
    [ 74.215] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 74.215] (**) fglrx(0): Textured Video is enabled.
    [ 74.215] (II) LoadModule: "glesx"
    [ 74.215] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 74.215] (II) Module glesx: vendor="X.Org Foundation"
    [ 74.215] compiled for 1.4.99.906, module version = 1.0.0
    [ 74.215] (II) Loading extension GLESX
    [ 74.215] (II) fglrx(0): GLESX enableFlags = 528
    [ 74.215] (II) fglrx(0): GLESX is enabled
    [ 74.215] (II) LoadModule: "amdxmm"
    [ 74.215] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 74.215] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 74.215] compiled for 1.4.99.906, module version = 2.0.0
    [ 74.216] (II) Loading extension AMDXVOPL
    [ 74.216] (II) Loading extension AMDXVBA
    [ 74.216] [- XMM_GLX] [I ]glesxXvInit Configureable RGBOutputColorRange
    [ 74.216] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
    [ 74.218] (II) fglrx(0): Enable composite support successfully
    [ 74.218] (WW) fglrx(0): Option "VendorName" is not used
    [ 74.218] (WW) fglrx(0): Option "ModelName" is not used
    [ 74.218] (II) fglrx(0): X context handle = 0x1
    [ 74.218] (II) fglrx(0): [DRI] installation complete
    [ 74.218] (==) fglrx(0): Silken mouse enabled
    [ 74.218] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 74.218] (II) fglrx(0): Disabling in-server RandR and enabling in-driver RandR 1.2.
    [ 74.218] (II) fglrx(0): 'eDP LCD' ConnectorType, abstracted as 'Panel'
    [ 74.483] (--) RandR disabled
    [ 74.483] (II) Initializing built-in extension Generic Event Extension
    [ 74.483] (II) Initializing built-in extension SHAPE
    [ 74.483] (II) Initializing built-in extension MIT-SHM
    [ 74.483] (II) Initializing built-in extension XInputExtension
    [ 74.483] (II) Initializing built-in extension XTEST
    [ 74.483] (II) Initializing built-in extension BIG-REQUESTS
    [ 74.483] (II) Initializing built-in extension SYNC
    [ 74.483] (II) Initializing built-in extension XKEYBOARD
    [ 74.483] (II) Initializing built-in extension XC-MISC
    [ 74.483] (II) Initializing built-in extension SECURITY
    [ 74.483] (II) Initializing built-in extension XINERAMA
    [ 74.483] (II) Initializing built-in extension XFIXES
    [ 74.483] (II) Initializing built-in extension RENDER
    [ 74.483] (II) Initializing built-in extension RANDR
    [ 74.483] (II) Initializing built-in extension COMPOSITE
    [ 74.483] (II) Initializing built-in extension DAMAGE
    [ 74.485] ukiDynamicMajor: found major device number 251
    [ 74.485] ukiDynamicMajor: found major device number 251
    [ 74.485] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 74.485] ukiOpenDevice: node name is /dev/ati/card0
    [ 74.485] ukiOpenDevice: open result is 13, (OK)
    [ 74.485] ukiOpenByBusid: ukiOpenMinor returns 13
    [ 74.485] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 74.542] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
    [ 74.550] (II) fglrx(0): Enable the clock gating!
    [ 74.550] (II) fglrx(0): Setting screen physical size to 677 x 381
    [ 74.607] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 74.607] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 74.607] (II) LoadModule: "evdev"
    [ 74.607] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 74.607] (II) Module evdev: vendor="X.Org Foundation"
    [ 74.607] compiled for 1.10.0, module version = 2.6.0
    [ 74.607] Module class: X.Org XInput Driver
    [ 74.607] ABI class: X.Org XInput driver, version 12.2
    [ 74.607] (II) Using input driver 'evdev' for 'Power Button'
    [ 74.607] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 74.607] (**) Power Button: always reports core events
    [ 74.607] (**) Power Button: Device: "/dev/input/event4"
    [ 74.607] (--) Power Button: Found keys
    [ 74.607] (II) Power Button: Configuring as keyboard
    [ 74.607] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 74.607] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 74.607] (**) Option "xkb_rules" "evdev"
    [ 74.607] (**) Option "xkb_model" "evdev"
    [ 74.607] (**) Option "xkb_layout" "us"
    [ 74.656] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 74.656] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 74.656] (II) Using input driver 'evdev' for 'Power Button'
    [ 74.656] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 74.656] (**) Power Button: always reports core events
    [ 74.656] (**) Power Button: Device: "/dev/input/event2"
    [ 74.656] (--) Power Button: Found keys
    [ 74.656] (II) Power Button: Configuring as keyboard
    [ 74.656] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 74.656] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 74.656] (**) Option "xkb_rules" "evdev"
    [ 74.656] (**) Option "xkb_model" "evdev"
    [ 74.656] (**) Option "xkb_layout" "us"
    [ 74.656] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 74.656] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 74.656] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 74.656] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 74.656] (**) Sleep Button: always reports core events
    [ 74.656] (**) Sleep Button: Device: "/dev/input/event3"
    [ 74.656] (--) Sleep Button: Found keys
    [ 74.656] (II) Sleep Button: Configuring as keyboard
    [ 74.656] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event3"
    [ 74.656] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    [ 74.656] (**) Option "xkb_rules" "evdev"
    [ 74.656] (**) Option "xkb_model" "evdev"
    [ 74.656] (**) Option "xkb_layout" "us"
    [ 74.657] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event6)
    [ 74.657] (II) No input driver/identifier specified (ignoring)
    [ 74.658] (II) config/udev: Adding input device Microsft Microsoft Wireless Desktop Receiver 3.1 (/dev/input/event0)
    [ 74.658] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: Applying InputClass "evdev keyboard catchall"
    [ 74.658] (II) Using input driver 'evdev' for 'Microsft Microsoft Wireless Desktop Receiver 3.1'
    [ 74.658] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 74.658] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: always reports core events
    [ 74.658] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: Device: "/dev/input/event0"
    [ 74.658] (--) Microsft Microsoft Wireless Desktop Receiver 3.1: Found keys
    [ 74.658] (II) Microsft Microsoft Wireless Desktop Receiver 3.1: Configuring as keyboard
    [ 74.658] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.3/1-1.3:1.0/input/input0/event0"
    [ 74.658] (II) XINPUT: Adding extended input device "Microsft Microsoft Wireless Desktop Receiver 3.1" (type: KEYBOARD)
    [ 74.658] (**) Option "xkb_rules" "evdev"
    [ 74.658] (**) Option "xkb_model" "evdev"
    [ 74.658] (**) Option "xkb_layout" "us"
    [ 74.658] (II) config/udev: Adding input device Microsft Microsoft Wireless Desktop Receiver 3.1 (/dev/input/event1)
    [ 74.658] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: Applying InputClass "evdev pointer catchall"
    [ 74.658] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: Applying InputClass "evdev keyboard catchall"
    [ 74.658] (II) Using input driver 'evdev' for 'Microsft Microsoft Wireless Desktop Receiver 3.1'
    [ 74.659] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 74.659] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: always reports core events
    [ 74.659] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: Device: "/dev/input/event1"
    [ 74.659] (--) Microsft Microsoft Wireless Desktop Receiver 3.1: Found 9 mouse buttons
    [ 74.659] (--) Microsft Microsoft Wireless Desktop Receiver 3.1: Found scroll wheel(s)
    [ 74.659] (--) Microsft Microsoft Wireless Desktop Receiver 3.1: Found relative axes
    [ 74.659] (--) Microsft Microsoft Wireless Desktop Receiver 3.1: Found x and y relative axes
    [ 74.659] (--) Microsft Microsoft Wireless Desktop Receiver 3.1: Found absolute axes
    [ 74.659] (--) Microsft Microsoft Wireless Desktop Receiver 3.1: Found keys
    [ 74.659] (II) Microsft Microsoft Wireless Desktop Receiver 3.1: Configuring as mouse
    [ 74.659] (II) Microsft Microsoft Wireless Desktop Receiver 3.1: Configuring as keyboard
    [ 74.659] (II) Microsft Microsoft Wireless Desktop Receiver 3.1: Adding scrollwheel support
    [ 74.659] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: YAxisMapping: buttons 4 and 5
    [ 74.659] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 74.659] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.3/1-1.3:1.1/input/input1/event1"
    [ 74.659] (II) XINPUT: Adding extended input device "Microsft Microsoft Wireless Desktop Receiver 3.1" (type: KEYBOARD)
    [ 74.659] (**) Option "xkb_rules" "evdev"
    [ 74.659] (**) Option "xkb_model" "evdev"
    [ 74.659] (**) Option "xkb_layout" "us"
    [ 74.659] (II) Microsft Microsoft Wireless Desktop Receiver 3.1: initialized for relative axes.
    [ 74.659] (WW) Microsft Microsoft Wireless Desktop Receiver 3.1: ignoring absolute axes.
    [ 74.659] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: (accel) keeping acceleration scheme 1
    [ 74.659] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: (accel) acceleration profile 0
    [ 74.659] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: (accel) acceleration factor: 2.000
    [ 74.659] (**) Microsft Microsoft Wireless Desktop Receiver 3.1: (accel) acceleration threshold: 4
    [ 74.659] (II) config/udev: Adding input device Microsft Microsoft Wireless Desktop Receiver 3.1 (/dev/input/mouse0)
    [ 74.659] (II) No input driver/identifier specified (ignoring)
    [ 74.660] (II) config/udev: Adding input device Built-in iSight (/dev/input/event7)
    [ 74.660] (**) Built-in iSight: Applying InputClass "evdev keyboard catchall"
    [ 74.660] (II) Using input driver 'evdev' for 'Built-in iSight'
    [ 74.660] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 74.660] (**) Built-in iSight: always reports core events
    [ 74.660] (**) Built-in iSight: Device: "/dev/input/event7"
    [ 74.660] (--) Built-in iSight: Found keys
    [ 74.660] (II) Built-in iSight: Configuring as keyboard
    [ 74.660] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1:1.0/input/input7/event7"
    [ 74.660] (II) XINPUT: Adding extended input device "Built-in iSight" (type: KEYBOARD)
    [ 74.660] (**) Option "xkb_rules" "evdev"
    [ 74.660] (**) Option "xkb_model" "evdev"
    [ 74.660] (**) Option "xkb_layout" "us"
    [ 74.662] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 74.662] (II) No input driver/identifier specified (ignoring)
    [ 75.732] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
    [ 75.796] (II) Power Button: Close
    [ 75.796] (II) UnloadModule: "evdev"
    [ 75.796] (II) Unloading evdev
    [ 75.903] (II) Power Button: Close
    [ 75.903] (II) UnloadModule: "evdev"
    [ 75.903] (II) Unloading evdev
    [ 76.010] (II) Sleep Button: Close
    [ 76.010] (II) UnloadModule: "evdev"
    [ 76.010] (II) Unloading evdev
    [ 76.130] (II) Microsft Microsoft Wireless Desktop Receiver 3.1: Close
    [ 76.130] (II) UnloadModule: "evdev"
    [ 76.130] (II) Unloading evdev
    [ 76.236] (II) Microsft Microsoft Wireless Desktop Receiver 3.1: Close
    [ 76.236] (II) UnloadModule: "evdev"
    [ 76.236] (II) Unloading evdev
    [ 76.343] (II) Built-in iSight: Close
    [ 76.343] (II) UnloadModule: "evdev"
    [ 76.343] (II) Unloading evdev
    [ 76.346] (II) fglrx(0): Shutdown CMMQS
    [ 76.346] (II) fglrx(0): [uki] removed 1 reserved context for kernel
    [ 76.346] (II) fglrx(0): [uki] unmapping 8192 bytes of SAREA 0x50000 at 0x7f5494ee8000
    [ 76.349] (II) fglrx(0): Interrupt handler Shutdown.
    And finally, someone asked for my xorg.conf (this is mostly autogenerated by aticonfig):
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules/extensions/fglrx"
    ModulePath "/usr/lib/xorg/modules"
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Last edited by chckadee (2012-02-15 23:58:52)

    moetunes wrote:Maybe start reading from here.
    Yeah thats... the guide I was reading.
    hadrons123 wrote:Another thread possibly due to not adding required dameons  in /etc/rc.conf.
    And those are?  I installed dbus as that's the only daemon the beginners guide mentions, and I added alsa and a few others to rc.conf for good measure but saw no change and removed them.  So right now I only have:
    $ grep DAEMONS /etc/rc.conf
    # DAEMONS
    DAEMONS=(syslog-ng network crond dbus)

Maybe you are looking for

  • How do I get rid of the alert saying capacity is over?

    I was putting msic and stuff on my iPhone from my itunes and i put a movie on my phone and it said that i had too much stuff in my ipod when i didnt.  I was just putting everything from my iPod to my phone.  My ipod has 32GB and my iphone has 16GB bu

  • How to add the model view controller in webcenter portal framework application

    i create a webcenter portal framework application.how to create a model class in my application..please help me.

  • How to Reverse COPA line item

    Hi, I have posted one manual line item in KE21N for COPA. There is a need to reverse this entry as it was done by mistake. Please give me some idea how to reverse this document. Thanks KB

  • Alias in CONNECT BY

    Hello when I try to use an alias in a connect by I get an error. Which workaround could I use to dodge that problem? SELECT AREA.LOCATION_ID AS AREA_LOC_ID, AREA.LOCATION_REF AS AREA, SUB_AREA_L1.LOCATION_REF AS SUB_AREA_L1, SUB_AREA_L2.LOCATION_REF

  • 1000+ photo slideshow

    I am creating a slideshow in iMovie6 that contains over 1000 photos that have been dragged in from iPhoto. I am getting a little nervous hearing all the problems with picture quality and KB effect ON vs OFF. I am a little confused as to how I should