IOS4 and create directory issues

Hi everyone,
I just upgraded the iOS to version 4.
Using the new 3.2.3 xcode.
Existing application could create a new directory at...
/var/mobile/Media/DCIM/xxx
now the new OS will not allow files to be created there.
Did the virtual location change for the camera pictures?
Or has apple closed the exploit?
thanks
tony

Apple killed the option of writing to any place other than the sandbox.
dead horse.

Similar Messages

  • Search and Create Directory?

    Hello,
    how do I search for a directory and create it if it doesn't exist?
    Unfortunately, the 'New Directory' vi can't create a new directory
    with sub directories. For example, I want to create the directory
    'c:\measurements\data'. The 'New Directory' vi is only successfull if
    c:\measurements already exists. But this is not necessarily the case.
    In general, it is not fixed how nested the new directory is and how
    many sub directories already exist.
    What I would like to have is a dialog that pops up if the specified
    directory (control) doesn't exist. It informs the user that it doesn't
    exist and asks him or her to create it. The user can click a Yes or a
    Cancel button. Then it creates the directory as appropriate. Actually
    this is just a st
    andard Windows dialog.
    I use LabView 5.1
    Any help would be great
    Johannes

    If you have the Professional edition of LabVIEW 5.1, you can use the following VI:
    [LabVIEW 5.1]\project\Source Code Control\_utils\Create Directory Recursive.vi
    This VI is available in all editions of LabVIEW starting in version 7.0 in vi.lib\utility\libraryn.llb.
    Good luck,
    -D
    P.S. - Here is a screenshot of the VI from LabVIEW 5.1, so you can compare it to the example posted previously.
    Message Edited by Darren on 04-16-2007 01:35 PM
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman
    Attachments:
    create_directory_recursive_51.png ‏17 KB

  • Create directory issue in Store Procedure

    Hi Guys,
    can any one help?
    I am using XP, Oracle 10g, sql developer and Sql Plus.
    I am trying to create directory in storeprocedure, but it not let me to do that thing. below is the statement i am using
    create or replace directory public_access as '/tmp/public_access';
    please let me know hoe can i initialize my dir object in store procedure.
    Thanks

    user13012136 wrote:
    Hi Guys,
    can any one help?
    I am using XP, Oracle 10g, sql developer and Sql Plus.
    I am trying to create directory in storeprocedure, but it not let me to do that thing. below is the statement i am using
    create or replace directory public_access as '/tmp/public_access';
    please let me know hoe can i initialize my dir object in store procedure.
    ThanksTypically best NOT to do something like this in a procedure, but there are cases where it's needed.
    In those cases, you need to use Native Dynamic SQL.
    execute immediate 'create or replace directory public_access as ''/tmp/public_access''';  Assuming your syntax was correct before (i just copied and pasted what you had, adding quotes where needed).

  • WP 8.1 LiveSDK 5.5 get folder and create folder issue on some devices

    Hi,
    I've an app which will connect to the users OneDrive account and creates a folder and upload a textfile.
    1. I check if a specifig folder exists, and if it exists, I'll get the folder ID.
    LiveOperationResult operationResult = await client.GetAsync("me/skydrive/files?filter=folders");
    foreach (var item in operationResult.Result.Values.ToList())
    foreach (IDictionary<string, object> fo in (item as List<object>))
    if (fo["name"].ToString() == folderName)
    return fo["id"].ToString();
    If the ID is null, I'll create the folder with this piece of code...
    await client.PostAsync("me/skydrive", new Dictionary<string, object>() { { "name", "MyFolderName" } });
    My issue... this won't work on any windows phone device.
    This will work on my device Lumia 925 with WP 8.10.12393.890 one device where this won't work is a Lumia 830 with WP 8.10.14219.0
    I'll will get these error messages from some customers:
    "The resource couldn't be created because a resource named 'MyFolderName' already exists." or "Input parameter 'path' is invalid.  'path' must be a valid URI."
    So what could be my issue? Can anyone help me with this.
    In my develeopment environment I just updated to LiveSDK 5.6 and it will work on my Lumia 925 device. Could this a soloution for my issues? (It's not uploaded to the app store with this change).
    I'm greatful for any hint or solution.
    Kind regards
    Kevin

    Hey
    Thanks for reaching out to us on the community and welcome aboard. I hope you find all the answers you were hoping for (Though we're not sure of the meaning of life just yet) ;)
    In regards to your troubles, the best place to start would be with a clean reinstall of the app. It will make sure that any faulty cache data etc. will be removed. Find instructions on how to do so here:
    https://support.spotify.com/learn-more/faq/#!/article/reinstallation-of-spotify
    Of course, get back to me and let me know how it all goes. I'd love to help out should you need me more.
    Thanks! :)

  • Directory Traversal and Empty Directory Issue. Please Help!

    Hi
    I am building an application which is aimed at traversing the entire hard disk or a given folder and extract files from the folder, sub-folders and so on. I am able to currently traverse the disk and able to gain access to the files which are nested several layers of directories. The issue I am facing is that when I reach an empty directory, it throws a NullPointerException. I have tried using all kinds of methods like dir.exists() and have also tried to check for whether the number files in the directory is > 0, but the exception is still bugging me. I would require any help I can get.
    Here is the code:
    public class myFileReader{
        void myRecursiveMethod(File dir) {
            File eachFile;
            File[] files = dir.listFiles();
            for (int i = 0;i < files.length; i++) {
                if (files.isDirectory()) {
    if (files[i].list().length > 0) { // I am not sure if this is the right way to go about it. This is one of the ways I tried.
    eachFile = (File)files[i];
    myRecursiveMethod(eachFile);
    System.out.println("Directory: " + eachFile);
    } else if (files[i].isFile()) {
    System.out.println("Files: " + files[i]);
    public static void main(String[]args) throws Exception {
    File dir = new File("C://");
    myFileReader mfr = new myFileReader();
    mfr.myRecursiveMethod(dir);
    Hope to get some responses soon.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    kajbj wrote:
    One line throws the exception, and why aren't you checking what list() returns? It can return null.
    and the whole of this
                  if (files.list().length > 0) { // I am not sure if this is the right way to go about it. This is one of the ways I tried.
    eachFile = (File)files[i];
    myRecursiveMethod(eachFile);
    System.out.println("Directory: " + eachFile);
    } can be replaced by myRecursiveMethod(files[i]);
    System.out.println("Directory: " + files[i]);
    Edited by: sabre150 on May 23, 2009 8:49 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How do I create admin console users with full access to configuration and the directory in every instance?

    I want to be able to create directory user ID for the iPlanet administrators. They should be able to access the admin console and all the instances created. They should be able to configure each instance and directory. I was able tocreate Admin Server Administrators but they were only able to modify the directory(tab) and not the configurations(tab). Any help would be greatly appreciated!
    Thanks.
    Keith

    Hi Keith,
    In o=netscaperoot, edit the static group called cn=Configuration Administrators, ou=Groups, ou=TopologyManagement, o=NetscapeRoot - this group contains the admins peer to your config admin. Since the console is quirky and doesn't let you add in users not in netscaperoot, just click advanced and put in the full dn of whoever you want in by hand, e.g., uid=scarter, ou=people, dc=mydomain,dc=com as a static member. then rebind to the console with the full dn and passwd, and away you go :)
    james

  • I am running OS X 10.9.1 on a MacBook Air....I had keychain issues that I bumbled my way through - deleted and created a new Keychain....now a box appears pretty regularly, wanting my Keychain login....i enter it and it's accepted and the box disappears.

    Help..!!  I'm running OS X 10.9.1 on a MacBook Air.  I had keychain issues with passwords etc and bumbled my way out of it by deleting the current keychain and creating a new one with a new log-in (yes, I wrote it down this time!)  But now these little boxes appear wanting my log-in ie. calendar, Safari, Outlook) and its annoying....entering the login gets rid of the box but what a pain and I know it's not right.....I know I need to enter somekind of automatic logins to these apps but how do I do that....and go easy on me, I'm not computer savvy.

    Did you install the latest driver set for the device?  there is a new release on motu.com for mavericks.
    rachel

  • Script to create directory based on current file name and then save the file in that directory

    Hi all,
    I have a need save all my projects in a directory using the name of the main image I am working on.
    Manually these are the steps I used:
    Save As.
    Copy ( press command-c <== the filename is highlighted by default so all I have to do is )
    New Folder ( press the new folder button. Brings up a dialog box)
    Paste ( press command-v. <== Pastes the file name into the "New Folder" dialog box.)
    Save ( press thre save button. Saves the files into the new folder )
    Save As.
    Change format to JPG
    Save
    Change image quality to 12
    I want to assign these actions to a key
    Recording these steps and playing them back does not give me the results I need, snce the original name is hard-coded in the actionlist that was recorded
    What should I be doing instead ?
    Thanks in advance !

    You don’t mention which format the original file is (and figuring that and its current settings out seems too much of a hassle to me) so this would only save the jpgs into the folder (and create one if it does not exist).
    If you want to give it a try, paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation, Applications/Utilities/Adobe Utilities/ExtendScript Toolkit CS4 or /Applications/Utilities/Adobe Utilities-CS5/ExtendScript Toolkit CS5) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    After restarting Photoshop the Script should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action, (in CS4 and CS5) be used in a Configurator-Panel or started from ExtendScript Toolkit directly.
    // saves jpg into folder of file’s name next to file;
    // be advised: this  overwrites existing jpgs of the same name without prompting;
    // thanks to xbytor;
    // 2012, use it at your own risk;
    #target photoshop;
    if (app.documents.length > 0) {
    var thedoc = app.activeDocument;
    // getting the name and location;
    var docName = thedoc.name;
    if (docName.indexOf(".") != -1) {var basename = docName.match(/(.*)\.[^\.]+$/)[1]}
    else {var basename = docName};
    // getting the location, if unsaved save to desktop;
    try {var docPath = thedoc.path}
    catch (e) {var docPath = "~/Desktop"};
    // create folder if it does not exist;
    var folderString = docPath+"/"+basename;
    if (Folder(folderString).exists == false) {new Folder(folderString).create()};
    // jpg options;
    var jpegOptions = new JPEGSaveOptions();
    jpegOptions.quality = 12;
    jpegOptions.embedColorProfile = true;
    jpegOptions.matte = MatteType.NONE;
    //save jpg as a copy:
    thedoc.saveAs((new File(folderString+"/"+basename+".jpg")),jpegOptions,true);

  • VMS, create directory and the chamber of secrets

    Ok, here I am bumbling around in the dark. Here is the scenario I am developing an application using PL/SQL under the constraints of the SCT Banner web form system. The Banner function calls create the web page on the fly from data obtained with PL/SQL. What I would like to do is incorporate a java function into the web page. The only method available to me is via Banners function call twbkfrmt.p_printmessage (my_string); Here is the 'Plan' (caution: may be seriously flawed). I thought I could store my java code in a the CLOB field of a table, access it with a cursor and insert the code into the generated web page like so: twbkfrmt.p_printmessage (my_java_from_the_CLOB); I am having troubles loading the .js into my table. Here is how I attempted to accomplish this and the result (and to add insult to injury, it is on a VMS system!):
    CREATE TABLE js_holder (
    js_name varchar(30),
    js_body CLOB );
    CREATE DIRECTORY foos as 'USR$DISK:[CLEMENSD.SQL_EDIT]';
    CREATE OR REPLACE PROCEDURE Load_CLOB IS
    dest_clob CLOB;
    in_file BFILE := BFILENAME('foos', 'supernote.js');
    dst_offset number := 1 ;
    src_offset number := 1 ;
    lang_ctx number := DBMS_LOB.DEFAULT_LANG_CTX;
    warning number;
    BEGIN
    DBMS_OUTPUT.ENABLE(100000);
    INSERT INTO js_holder(js_name, js_body)
    VALUES('supernote', empty_clob())
    RETURNING js_body INTO dest_clob;
    DBMS_LOB.OPEN(in_file, DBMS_LOB.LOB_READONLY);
    DBMS_LOB.LoadCLOBFromFile(
    DEST_LOB => dest_clob
    , SRC_BFILE => in_file
    , AMOUNT => DBMS_LOB.GETLENGTH(in_file)
    , DEST_OFFSET => dst_offset
    , SRC_OFFSET => src_offset
    , BFILE_CSID => DBMS_LOB.DEFAULT_CSID
    , LANG_CONTEXT => lang_ctx
    , WARNING => warning
    DBMS_LOB.CLOSE(in_file);
    COMMIT;
    DBMS_OUTPUT.PUT_LINE('Loaded File using DBMS_LOB.LoadCLOBFromFile.');
    END;
    then the following:
    EOUTST> set serveroutput on
    EOUTST> exec Load_CLOB
    EOUTST> exec load_clob
    BEGIN load_clob; END;
    ERROR at line 1:
    ORA-22285: non-existent directory or file for FILEOPEN operation
    ORA-06512: at "SYS.DBMS_LOB", line 672
    ORA-06512: at "BANINST1.LOAD_CLOB", line 13
    ORA-06512: at line 1
    EOUTST>

    Is the directory owned by the same schema that owns the procedure?
    If not did you GRANT READ and WRITE to the proc's schema?
    If so then you might want to create a simple external table to confirm that your directory and permissions are valid.

  • I want read PDF file from SAP directory and create a spool request or print

    Hi all,
    I want read PDF file from SAP directory and create a spool request or print the pdf through SAP. Can any body  help me in this.
    Also please write to me if its possible to open PDF from SAP directory to adobe pdf reader.
    Thanks in advance,
    Sunny

    Hi Sunny,
    Check these links.
    http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm
    http://www.erpgenie.com/sap/abap/pdf_creation.htm
    http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html
    http://www.thespot4sap.com/Articles/SAP_Mail_SO_Object_Send.asp
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • SP1 for Exchange 2013 install fails with ECP virtual directory issues and now transport service won't start and mail is unavailable

    SP1 for Exchange 2013 install failed on me with ECP virtual directory issues:
    Error:
    The following error was generated when "$error.Clear();
              $BEVdirIdentity = $RoleNetBIOSName + "\ecp (name)";
              $be = get-EcpVirtualDirectory -ShowMailboxVirtualDirectories -Identity $BEVdirIdentity -DomainController $RoleDomainController -ErrorAction SilentlyContinue;
              if ($be -eq $null)
              new-EcpVirtualDirectory -Role Mailbox -WebSiteName "name" -DomainController $RoleDomainController;
              set-EcpVirtualdirectory -Identity $BEVdirIdentity -FormsAuthentication:$false -WindowsAuthentication:$true;
              set-EcpVirtualdirectory -Identity $BEVdirIdentity -InternalUrl $null -ExternalUrl $null;
              . "$RoleInstallPath\Scripts\Update-AppPoolManagedFrameworkVersion.ps1" -AppPoolName:"MSExchangeECPAppPool" -Version:"v4.0";
            " was run: "The virtual directory 'ecp' already exists under 'server/name'.
    Parameter name: VirtualDirectoryName".
    Error:
    The following error was generated when "$error.Clear();
              $BEVdirIdentity = $RoleNetBIOSName + "\ECP (name)";
              $be = get-EcpVirtualDirectory -ShowMailboxVirtualDirectories -Identity $BEVdirIdentity -DomainController $RoleDomainController -ErrorAction SilentlyContinue;
              if ($be -eq $null)
              new-EcpVirtualDirectory -Role Mailbox -WebSiteName "name" -DomainController $RoleDomainController;
              set-EcpVirtualdirectory -Identity $BEVdirIdentity -FormsAuthentication:$false -WindowsAuthentication:$true;
              set-EcpVirtualdirectory -Identity $BEVdirIdentity -InternalUrl $null -ExternalUrl $null;
              . "$RoleInstallPath\Scripts\Update-AppPoolManagedFrameworkVersion.ps1" -AppPoolName:"MSExchangeECPAppPool" -Version:"v4.0";
            " was run: "The operation couldn't be performed because object 'server\ECP (name)' couldn't be found on 'DC0xx.domain.com'.".
    Error:
    The following error was generated when "$error.Clear();
              $BEVdirIdentity = $RoleNetBIOSName + "\ECP (name)";
              $be = get-EcpVirtualDirectory -ShowMailboxVirtualDirectories -Identity $BEVdirIdentity -DomainController $RoleDomainController -ErrorAction SilentlyContinue;
              if ($be -eq $null)
              new-EcpVirtualDirectory -Role Mailbox -WebSiteName "name" -DomainController $RoleDomainController;
              set-EcpVirtualdirectory -Identity $BEVdirIdentity -FormsAuthentication:$false -WindowsAuthentication:$true;
              set-EcpVirtualdirectory -Identity $BEVdirIdentity -InternalUrl $null -ExternalUrl $null;
              . "$RoleInstallPath\Scripts\Update-AppPoolManagedFrameworkVersion.ps1" -AppPoolName:"MSExchangeECPAppPool" -Version:"v4.0";
            " was run: "The operation couldn't be performed because object 'server\ECP (name)' couldn't be found on 'DC0xx.domain.com'.".
    !! And now transport service won't start and mail is unavailable !!
    Any help would be appreciated.
    I have removed the ecp site from default site and attempting to rerun SP1 now. I do not have high hopes. :(

    Hi,
    Thanks for your response.
    From the error description, you need to manually remove the ECP with IIS manager in both the Default Web Site and the Exchange Back End firstly. And then continue the upgrade to check the result.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • To create interface using Integration Repostiory and Integration Directory

    How To create interface using Integration Repostiory and Integration Directory for Java appln???

    Hi,
    Are u talking about Java based applications. If so, one of the way is to go with Java Proxies.
    Go thru these for more:https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a068cf2f-0401-0010-2aa9-f5ae4b2096f9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f272165e-0401-0010-b4a1-e7eb8903501d
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d06315a6-e66e-2910-039c-ba8bbbd23702
    Rgds,Moorthy

  • Can I create and empty directory with installer

    I have modified a program executable to run on Windows 7 and I have an ini file that I am putting in the ProgramData\<company>\<app name> directory but I do NOT want to include in the installer. It will be created by the software. Within this ini file is a path pointing to another file that will either be C:\Program Files... or C:\Program Files (x86)... depending on whether or not the software is being installed on Windows 7 x64.
    So, what I do in software is check if the config file exists (which it wont the first time I run the program ) then check the OS, and create the default the path within that ini file according to the OS I am running on. Then any time the program is run in the future it will load whatever path is there. This gives the user the ability to change it should they want and it will load their changes any subsequent time the program is run. However, in order to do this I want my installer to create the directory structure C:\ProgramData\<company>\<app name> with nothing in it. It seems I can't do this...is there a way to or do I have to just put some empty file in there in order for the directory structure to be created?
    CLA, LabVIEW Versions 2010-2013

    Darin.K wrote:
    Sounds like a good place to put the "Readme" file that nobody is actually going to read...
    I actually laughed out loud at that one. Thanks Darin, I'll go that route. Another option is to just create the default ini file with a tag that is called, say "first time" and have that default value be true. I could check if it's true in the startup state in the software and if it is then set the path accordingly. After this is done, switch the boolean to false and write it back to the file.Then I wouldn't have to write the whole file, just change that one line, and the uninstaller would also get rid of the file if the program was uninstalled (I think). If it was created programmatically I don't believe it will. But, this method would require some software changes to make it compatible with the new tag. So, I guess I just have to pick my poison here.
    CLA, LabVIEW Versions 2010-2013

  • Step by step process to create domain name and active directory in windows 7 64 bit

    Step by step process to create domain and active directory in windows 7 64 bit
    I work in an organization
    I want to create a domain name SBBYDP and make it server for other computers
    I want that, all users’ have a personal account while they use any computer from this organization, even they use any computer from this network they use their own account to login to network.
    And this may be in Active directory option.
    I installed windows 7 professional edition 64 bit
    Can any person help me? Step by step process, I always thanks full all of you

    Hi,
    You must use the Windows Server platform system for the AD service, you can refer the following KB first:
    Active Directory
    http://technet.microsoft.com/en-us/library/bb742424.aspx
    AD DS Deployment Guide
    http://technet.microsoft.com/zh-cn/library/cc753963(v=ws.10).aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • GDM and Gnome graphical issues with Nvidia card

    Hi !
    I want to install archlinux with cinnamon as desktop environment on the computer of a friend, but I have some issue with it, and especially with (I think) the graphic card, it's a Nvidia GeForce FX 5200LE.
    I tried installing nvidia-173xx from the aur first. I installed gdm, but it's extremly slow, as a result that I can't log in (nevertheless the mouse is fluid..)  the cpu is not so much used yet, and it's the same thing in the cinnamon session or the gnome session (I tried installing lightdm to log in which works fine). Moreover, in the session I've got some strange graphical things, such as some missing white pixels, or a blue window when I launch nautilus, ... (here are some screenshots : http://i49.tinypic.com/2efhm6s.png and a with a window : http://i46.tinypic.com/116m05k.png)
    I tried to install the nouveau driver instead, and now gdm don't freeze, I can log in, but there is always these strange graphical issues.
    Is the graphic card too old for gnome ? Or did I forget something ?
    Thank you in advance for your help !! And sorry for my english ..
    Here are some log with the nouveau driver :
    - Xorg.log :
    [ 9.026]
    X.Org X Server 1.12.4
    Release Date: 2012-08-27
    [ 9.026] X Protocol Version 11, Revision 0
    [ 9.026] Build Operating System: Linux 3.4.8-1-ARCH i686
    [ 9.026] Current Operating System: Linux famille-workstation 3.5.3-1-ARCH #1 SMP PREEMPT Sun Aug 26 08:15:06 UTC 2012 i686
    [ 9.026] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=83840f06-da6c-4558-a8ef-8ed779442ff3 ro quiet pci=nomsi
    [ 9.026] Build Date: 27 August 2012 08:08:29AM
    [ 9.026]
    [ 9.026] Current version of pixman: 0.26.2
    [ 9.026] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 9.026] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 9.027] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Sep 5 13:26:01 2012
    [ 9.053] (==) Using config file: "/etc/X11/xorg.conf"
    [ 9.053] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 9.072] (==) No Layout section. Using the first Screen section.
    [ 9.072] (==) No screen section available. Using defaults.
    [ 9.072] (**) |-->Screen "Default Screen Section" (0)
    [ 9.072] (**) | |-->Monitor "<default monitor>"
    [ 9.074] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 9.074] (**) Option "AIGLX" "off"
    [ 9.074] (==) Automatically adding devices
    [ 9.074] (==) Automatically enabling devices
    [ 9.127] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 9.127] Entry deleted from font path.
    [ 9.128] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 9.128] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/Type1/".
    [ 9.128] Entry deleted from font path.
    [ 9.128] (Run 'mkfontdir' on "/usr/share/fonts/Type1/").
    [ 9.128] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 9.128] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 9.128] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 9.128] (II) Loader magic: 0x82225a0
    [ 9.128] (II) Module ABI versions:
    [ 9.128] X.Org ANSI C Emulation: 0.4
    [ 9.128] X.Org Video Driver: 12.1
    [ 9.128] X.Org XInput driver : 16.0
    [ 9.128] X.Org Server Extension : 6.0
    [ 9.129] (--) PCI:*(0:1:0:0) 10de:0323:107d:1334 rev 161, Mem @ 0xe0000000/16777216, 0xd8000000/134217728, BIOS @ 0x????????/131072
    [ 9.129] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 9.129] (II) LoadModule: "extmod"
    [ 9.145] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 9.156] (II) Module extmod: vendor="X.Org Foundation"
    [ 9.156] compiled for 1.12.4, module version = 1.0.0
    [ 9.156] Module class: X.Org Server Extension
    [ 9.156] ABI class: X.Org Server Extension, version 6.0
    [ 9.156] (II) Loading extension MIT-SCREEN-SAVER
    [ 9.156] (II) Loading extension XFree86-VidModeExtension
    [ 9.156] (II) Loading extension XFree86-DGA
    [ 9.156] (II) Loading extension DPMS
    [ 9.156] (II) Loading extension XVideo
    [ 9.156] (II) Loading extension XVideo-MotionCompensation
    [ 9.156] (II) Loading extension X-Resource
    [ 9.156] (II) LoadModule: "dbe"
    [ 9.157] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 9.157] (II) Module dbe: vendor="X.Org Foundation"
    [ 9.157] compiled for 1.12.4, module version = 1.0.0
    [ 9.157] Module class: X.Org Server Extension
    [ 9.157] ABI class: X.Org Server Extension, version 6.0
    [ 9.157] (II) Loading extension DOUBLE-BUFFER
    [ 9.157] (II) LoadModule: "glx"
    [ 9.157] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 9.164] (II) Module glx: vendor="X.Org Foundation"
    [ 9.164] compiled for 1.12.4, module version = 1.0.0
    [ 9.164] ABI class: X.Org Server Extension, version 6.0
    [ 9.164] (**) AIGLX disabled
    [ 9.165] (II) Loading extension GLX
    [ 9.165] (II) LoadModule: "record"
    [ 9.165] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 9.166] (II) Module record: vendor="X.Org Foundation"
    [ 9.166] compiled for 1.12.4, module version = 1.13.0
    [ 9.166] Module class: X.Org Server Extension
    [ 9.166] ABI class: X.Org Server Extension, version 6.0
    [ 9.166] (II) Loading extension RECORD
    [ 9.166] (II) LoadModule: "dri"
    [ 9.166] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 9.172] (II) Module dri: vendor="X.Org Foundation"
    [ 9.172] compiled for 1.12.4, module version = 1.0.0
    [ 9.172] ABI class: X.Org Server Extension, version 6.0
    [ 9.172] (II) Loading extension XFree86-DRI
    [ 9.172] (II) LoadModule: "dri2"
    [ 9.172] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 9.173] (II) Module dri2: vendor="X.Org Foundation"
    [ 9.173] compiled for 1.12.4, module version = 1.2.0
    [ 9.173] ABI class: X.Org Server Extension, version 6.0
    [ 9.173] (II) Loading extension DRI2
    [ 9.173] (==) Matched nouveau as autoconfigured driver 0
    [ 9.173] (==) Matched nvidia as autoconfigured driver 1
    [ 9.173] (==) Matched nv as autoconfigured driver 2
    [ 9.173] (==) Matched vesa as autoconfigured driver 3
    [ 9.173] (==) Matched fbdev as autoconfigured driver 4
    [ 9.173] (==) Assigned the driver to the xf86ConfigLayout
    [ 9.173] (II) LoadModule: "nouveau"
    [ 9.180] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 9.191] (II) Module nouveau: vendor="X.Org Foundation"
    [ 9.191] compiled for 1.12.2, module version = 1.0.1
    [ 9.191] Module class: X.Org Video Driver
    [ 9.191] ABI class: X.Org Video Driver, version 12.0
    [ 9.191] (II) LoadModule: "nvidia"
    [ 9.191] (WW) Warning, couldn't open module nvidia
    [ 9.191] (II) UnloadModule: "nvidia"
    [ 9.191] (II) Unloading nvidia
    [ 9.192] (EE) Failed to load module "nvidia" (module does not exist, 0)
    [ 9.192] (II) LoadModule: "nv"
    [ 9.192] (WW) Warning, couldn't open module nv
    [ 9.192] (II) UnloadModule: "nv"
    [ 9.192] (II) Unloading nv
    [ 9.192] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 9.192] (II) LoadModule: "vesa"
    [ 9.192] (WW) Warning, couldn't open module vesa
    [ 9.192] (II) UnloadModule: "vesa"
    [ 9.192] (II) Unloading vesa
    [ 9.192] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 9.192] (II) LoadModule: "fbdev"
    [ 9.193] (WW) Warning, couldn't open module fbdev
    [ 9.193] (II) UnloadModule: "fbdev"
    [ 9.193] (II) Unloading fbdev
    [ 9.193] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 9.193] (II) NOUVEAU driver
    [ 9.193] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 9.193] RIVA TNT (NV04)
    [ 9.193] RIVA TNT2 (NV05)
    [ 9.193] GeForce 256 (NV10)
    [ 9.193] GeForce 2 (NV11, NV15)
    [ 9.193] GeForce 4MX (NV17, NV18)
    [ 9.193] GeForce 3 (NV20)
    [ 9.193] GeForce 4Ti (NV25, NV28)
    [ 9.193] GeForce FX (NV3x)
    [ 9.193] GeForce 6 (NV4x)
    [ 9.193] GeForce 7 (G7x)
    [ 9.193] GeForce 8 (G8x)
    [ 9.193] GeForce GTX 200 (NVA0)
    [ 9.193] GeForce GTX 400 (NVC0)
    [ 9.193] (++) using VT number 7
    [ 9.196] drmOpenDevice: node name is /dev/dri/card0
    [ 9.196] drmOpenDevice: open result is 7, (OK)
    [ 9.196] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 9.196] drmOpenDevice: node name is /dev/dri/card0
    [ 9.196] drmOpenDevice: open result is 7, (OK)
    [ 9.196] drmOpenByBusid: drmOpenMinor returns 7
    [ 9.196] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 9.196] (II) [drm] nouveau interface version: 1.0.0
    [ 9.196] (II) Loading sub module "dri"
    [ 9.196] (II) LoadModule: "dri"
    [ 9.197] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 9.197] (II) Module dri: vendor="X.Org Foundation"
    [ 9.197] compiled for 1.12.4, module version = 1.0.0
    [ 9.197] ABI class: X.Org Server Extension, version 6.0
    [ 9.197] (II) NOUVEAU(0): Loaded DRI module
    [ 9.197] drmOpenDevice: node name is /dev/dri/card0
    [ 9.197] drmOpenDevice: open result is 8, (OK)
    [ 9.197] drmOpenDevice: node name is /dev/dri/card0
    [ 9.197] drmOpenDevice: open result is 8, (OK)
    [ 9.197] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 9.197] drmOpenDevice: node name is /dev/dri/card0
    [ 9.197] drmOpenDevice: open result is 8, (OK)
    [ 9.197] drmOpenByBusid: drmOpenMinor returns 8
    [ 9.197] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 9.197] (II) [drm] DRM interface version 1.4
    [ 9.197] (II) [drm] DRM open master succeeded.
    [ 9.197] (--) NOUVEAU(0): Chipset: "NVIDIA NV34"
    [ 9.197] (II) NOUVEAU(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 9.197] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
    [ 9.197] (==) NOUVEAU(0): RGB weight 888
    [ 9.197] (==) NOUVEAU(0): Default visual is TrueColor
    [ 9.197] (==) NOUVEAU(0): Using HW cursor
    [ 9.197] (==) NOUVEAU(0): GLX sync to VBlank disabled.
    [ 9.197] (==) NOUVEAU(0): Page flipping enabled
    [ 9.197] (==) NOUVEAU(0): Swap limit set to 2 [Max allowed 2]
    [ 9.227] (II) NOUVEAU(0): Output VGA-1 has no monitor section
    [ 9.280] (II) NOUVEAU(0): Output TV-1 has no monitor section
    [ 9.309] (II) NOUVEAU(0): EDID for output VGA-1
    [ 9.309] (II) NOUVEAU(0): Manufacturer: SAM Model: 1b Serial#: 1195913527
    [ 9.309] (II) NOUVEAU(0): Year: 2003 Week: 16
    [ 9.309] (II) NOUVEAU(0): EDID Version: 1.3
    [ 9.309] (II) NOUVEAU(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 9.309] (II) NOUVEAU(0): Sync: Separate Composite SyncOnGreenSerration on. V.Sync Pulse req. if CompSync or SyncOnGreen
    [ 9.309] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 34 vert.: 27
    [ 9.309] (II) NOUVEAU(0): Gamma: 2.40
    [ 9.309] (II) NOUVEAU(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 9.309] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 9.309] (II) NOUVEAU(0): redX: 0.634 redY: 0.354 greenX: 0.304 greenY: 0.581
    [ 9.309] (II) NOUVEAU(0): blueX: 0.143 blueY: 0.102 whiteX: 0.318 whiteY: 0.339
    [ 9.309] (II) NOUVEAU(0): Supported established timings:
    [ 9.309] (II) NOUVEAU(0): 720x400@70Hz
    [ 9.309] (II) NOUVEAU(0): 640x480@60Hz
    [ 9.309] (II) NOUVEAU(0): 640x480@67Hz
    [ 9.309] (II) NOUVEAU(0): 640x480@72Hz
    [ 9.310] (II) NOUVEAU(0): 640x480@75Hz
    [ 9.310] (II) NOUVEAU(0): 800x600@56Hz
    [ 9.310] (II) NOUVEAU(0): 800x600@60Hz
    [ 9.310] (II) NOUVEAU(0): 800x600@72Hz
    [ 9.310] (II) NOUVEAU(0): 800x600@75Hz
    [ 9.310] (II) NOUVEAU(0): 832x624@75Hz
    [ 9.310] (II) NOUVEAU(0): 1024x768@60Hz
    [ 9.310] (II) NOUVEAU(0): 1024x768@70Hz
    [ 9.310] (II) NOUVEAU(0): 1024x768@75Hz
    [ 9.310] (II) NOUVEAU(0): 1280x1024@75Hz
    [ 9.310] (II) NOUVEAU(0): 1152x864@75Hz
    [ 9.310] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 9.310] (II) NOUVEAU(0): Supported standard timings:
    [ 9.310] (II) NOUVEAU(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 9.310] (II) NOUVEAU(0): #1: hsize: 1024 vsize 768 refresh: 60 vid: 16481
    [ 9.310] (II) NOUVEAU(0): #2: hsize: 800 vsize 600 refresh: 60 vid: 16453
    [ 9.310] (II) NOUVEAU(0): #3: hsize: 640 vsize 480 refresh: 60 vid: 16433
    [ 9.310] (II) NOUVEAU(0): Supported detailed timing:
    [ 9.310] (II) NOUVEAU(0): clock: 108.0 MHz Image Size: 338 x 270 mm
    [ 9.310] (II) NOUVEAU(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 9.310] (II) NOUVEAU(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 9.310] (II) NOUVEAU(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 9.310] (II) NOUVEAU(0): Monitor name: SyncMaster
    [ 9.310] (II) NOUVEAU(0): Serial No: HJGW403719
    [ 9.310] (II) NOUVEAU(0): EDID (in hex):
    [ 9.310] (II) NOUVEAU(0): 00ffffffffffff004c2d1b0037314847
    [ 9.310] (II) NOUVEAU(0): 100d01030f221b8cea6f8ba25a4d9424
    [ 9.310] (II) NOUVEAU(0): 1a5156bfef8081806140454031400101
    [ 9.310] (II) NOUVEAU(0): 010101010101302a009851002a403070
    [ 9.310] (II) NOUVEAU(0): 1300520e1100001e000000fd00384c1e
    [ 9.310] (II) NOUVEAU(0): 510e000a202020202020000000fc0053
    [ 9.310] (II) NOUVEAU(0): 796e634d61737465720a2020000000ff
    [ 9.310] (II) NOUVEAU(0): 00484a47573430333731390a20200057
    [ 9.310] (II) NOUVEAU(0): EDID vendor "SAM", prod id 27
    [ 9.310] (II) NOUVEAU(0): Using EDID range info for horizontal sync
    [ 9.310] (II) NOUVEAU(0): Using EDID range info for vertical refresh
    [ 9.310] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 9.310] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 9.310] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 9.310] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 9.310] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 9.310] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 9.310] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 9.310] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Printing probed modes for output VGA-1
    [ 9.311] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 9.311] (II) NOUVEAU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1280x800"x74.9 106.50 1280 1360 1488 1696 800 803 809 838 -hsync +vsync (62.8 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1280x768"x74.9 102.25 1280 1360 1488 1696 768 771 778 805 +hsync -vsync (60.3 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1280x768"x59.9 79.50 1280 1344 1472 1664 768 771 778 798 -hsync +vsync (47.8 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "1024x576"x60.0 46.97 1024 1064 1168 1312 576 577 580 597 -hsync +vsync (35.8 kHz)
    [ 9.311] (II) NOUVEAU(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "848x480"x60.0 33.75 848 864 976 1088 480 486 494 517 +hsync +vsync (31.0 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 489 492 525 -hsync -vsync (31.5 kHz e)
    [ 9.311] (II) NOUVEAU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 9.363] (II) NOUVEAU(0): EDID for output TV-1
    [ 9.363] (II) NOUVEAU(0): Output VGA-1 connected
    [ 9.363] (II) NOUVEAU(0): Output TV-1 disconnected
    [ 9.363] (II) NOUVEAU(0): Using exact sizes for initial modes
    [ 9.363] (II) NOUVEAU(0): Output VGA-1 using initial mode 1280x1024
    [ 9.363] (II) NOUVEAU(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 9.363] (--) NOUVEAU(0): Virtual size is 1280x1024 (pitch 0)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1280x1024": 135.0 MHz (scaled from 0.0 MHz), 80.0 kHz, 75.0 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1280x960": 108.0 MHz (scaled from 0.0 MHz), 60.0 kHz, 60.0 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1280x800": 106.5 MHz (scaled from 0.0 MHz), 62.8 kHz, 74.9 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1280x800"x74.9 106.50 1280 1360 1488 1696 800 803 809 838 -hsync +vsync (62.8 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1280x800": 83.5 MHz (scaled from 0.0 MHz), 49.7 kHz, 59.8 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1280x768": 102.2 MHz (scaled from 0.0 MHz), 60.3 kHz, 74.9 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1280x768"x74.9 102.25 1280 1360 1488 1696 768 771 778 805 +hsync -vsync (60.3 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1280x768": 79.5 MHz (scaled from 0.0 MHz), 47.8 kHz, 59.9 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1280x768"x59.9 79.50 1280 1344 1472 1664 768 771 778 798 -hsync +vsync (47.8 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.1 kHz, 75.1 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.1 Hz
    [ 9.363] (II) NOUVEAU(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 9.363] (**) NOUVEAU(0): Driver mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 9.364] (**) NOUVEAU(0): Mode "1024x576": 47.0 MHz (scaled from 0.0 MHz), 35.8 kHz, 60.0 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "1024x576"x60.0 46.97 1024 1064 1168 1312 576 577 580 597 -hsync +vsync (35.8 kHz)
    [ 9.364] (**) NOUVEAU(0): Driver mode "832x624": 57.3 MHz (scaled from 0.0 MHz), 49.7 kHz, 74.6 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.2 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.3 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.2 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "848x480": 33.8 MHz (scaled from 0.0 MHz), 31.0 kHz, 60.0 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "848x480"x60.0 33.75 848 864 976 1088 480 486 494 517 +hsync +vsync (31.0 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.8 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "640x480": 30.2 MHz (scaled from 0.0 MHz), 35.0 kHz, 66.7 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 59.9 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 489 492 525 -hsync -vsync (31.5 kHz e)
    [ 9.364] (**) NOUVEAU(0): Driver mode "720x400": 28.3 MHz (scaled from 0.0 MHz), 31.5 kHz, 70.1 Hz
    [ 9.364] (II) NOUVEAU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 9.364] (**) NOUVEAU(0): Display dimensions: (340, 270) mm
    [ 9.364] (**) NOUVEAU(0): DPI set to (95, 96)
    [ 9.364] (II) Loading sub module "fb"
    [ 9.364] (II) LoadModule: "fb"
    [ 9.364] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 9.375] (II) Module fb: vendor="X.Org Foundation"
    [ 9.375] compiled for 1.12.4, module version = 1.0.0
    [ 9.375] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 9.375] (II) Loading sub module "exa"
    [ 9.375] (II) LoadModule: "exa"
    [ 9.376] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 9.380] (II) Module exa: vendor="X.Org Foundation"
    [ 9.380] compiled for 1.12.4, module version = 2.5.0
    [ 9.380] ABI class: X.Org Video Driver, version 12.1
    [ 9.380] (II) Loading sub module "shadowfb"
    [ 9.380] (II) LoadModule: "shadowfb"
    [ 9.380] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
    [ 9.382] (II) Module shadowfb: vendor="X.Org Foundation"
    [ 9.382] compiled for 1.12.4, module version = 1.0.0
    [ 9.382] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 9.382] (--) Depth 24 pixmap format is 32 bpp
    [ 9.382] (II) NOUVEAU(0): Opened GPU channel 1
    [ 9.384] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 9.384] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 9.384] (II) NOUVEAU(0): [DRI2] VDPAU driver: nouveau
    [ 9.399] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 9.399] (II) EXA(0): Driver registered support for the following operations:
    [ 9.399] (II) Solid
    [ 9.399] (II) Copy
    [ 9.399] (II) Composite (RENDER acceleration)
    [ 9.399] (II) UploadToScreen
    [ 9.399] (II) DownloadFromScreen
    [ 9.399] (==) NOUVEAU(0): Backing store disabled
    [ 9.399] (==) NOUVEAU(0): Silken mouse enabled
    [ 9.399] (II) NOUVEAU(0): [XvMC] Associated with NV30 texture adapter.
    [ 9.399] (II) NOUVEAU(0): [XvMC] Extension initialized.
    [ 9.399] (==) NOUVEAU(0): DPMS enabled
    [ 9.399] (II) NOUVEAU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 9.399] (--) RandR disabled
    [ 9.399] (II) Initializing built-in extension Generic Event Extension
    [ 9.399] (II) Initializing built-in extension SHAPE
    [ 9.399] (II) Initializing built-in extension MIT-SHM
    [ 9.400] (II) Initializing built-in extension XInputExtension
    [ 9.400] (II) Initializing built-in extension XTEST
    [ 9.400] (II) Initializing built-in extension BIG-REQUESTS
    [ 9.400] (II) Initializing built-in extension SYNC
    [ 9.400] (II) Initializing built-in extension XKEYBOARD
    [ 9.400] (II) Initializing built-in extension XC-MISC
    [ 9.400] (II) Initializing built-in extension SECURITY
    [ 9.400] (II) Initializing built-in extension XINERAMA
    [ 9.400] (II) Initializing built-in extension XFIXES
    [ 9.400] (II) Initializing built-in extension RENDER
    [ 9.400] (II) Initializing built-in extension RANDR
    [ 9.400] (II) Initializing built-in extension COMPOSITE
    [ 9.400] (II) Initializing built-in extension DAMAGE
    [ 9.800] (II) AIGLX: Loaded and initialized swrast
    [ 9.800] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 9.807] (II) NOUVEAU(0): NVEnterVT is called.
    [ 9.807] (II) NOUVEAU(0): Setting screen physical size to 338 x 270
    [ 9.807] resize called 1280 1024
    [ 10.066] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 10.066] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 10.066] (II) LoadModule: "evdev"
    [ 10.066] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 10.075] (II) Module evdev: vendor="X.Org Foundation"
    [ 10.075] compiled for 1.12.3.901, module version = 2.7.3
    [ 10.075] Module class: X.Org XInput Driver
    [ 10.075] ABI class: X.Org XInput driver, version 16.0
    [ 10.075] (II) Using input driver 'evdev' for 'Power Button'
    [ 10.076] (**) Power Button: always reports core events
    [ 10.076] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 10.076] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 10.076] (--) evdev: Power Button: Found keys
    [ 10.076] (II) evdev: Power Button: Configuring as keyboard
    [ 10.076] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
    [ 10.076] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 10.076] (**) Option "xkb_rules" "evdev"
    [ 10.076] (**) Option "xkb_model" "evdev"
    [ 10.076] (**) Option "xkb_layout" "us"
    [ 10.117] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 10.117] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 10.117] (II) Using input driver 'evdev' for 'Power Button'
    [ 10.117] (**) Power Button: always reports core events
    [ 10.117] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 10.118] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 10.118] (--) evdev: Power Button: Found keys
    [ 10.118] (II) evdev: Power Button: Configuring as keyboard
    [ 10.118] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event1"
    [ 10.118] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 10.118] (**) Option "xkb_rules" "evdev"
    [ 10.118] (**) Option "xkb_model" "evdev"
    [ 10.118] (**) Option "xkb_layout" "us"
    [ 10.118] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 10.118] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 10.118] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 10.119] (**) AT Translated Set 2 keyboard: always reports core events
    [ 10.119] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 10.119] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 10.119] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 10.119] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 10.119] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 10.119] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 8)
    [ 10.119] (**) Option "xkb_rules" "evdev"
    [ 10.119] (**) Option "xkb_model" "evdev"
    [ 10.119] (**) Option "xkb_layout" "us"
    [ 10.120] (II) config/udev: Adding input device ImPS/2 Logitech Wheel Mouse (/dev/input/event4)
    [ 10.120] (**) ImPS/2 Logitech Wheel Mouse: Applying InputClass "evdev pointer catchall"
    [ 10.120] (II) Using input driver 'evdev' for 'ImPS/2 Logitech Wheel Mouse'
    [ 10.120] (**) ImPS/2 Logitech Wheel Mouse: always reports core events
    [ 10.120] (**) evdev: ImPS/2 Logitech Wheel Mouse: Device: "/dev/input/event4"
    [ 10.120] (--) evdev: ImPS/2 Logitech Wheel Mouse: Vendor 0x2 Product 0x5
    [ 10.120] (--) evdev: ImPS/2 Logitech Wheel Mouse: Found 3 mouse buttons
    [ 10.120] (--) evdev: ImPS/2 Logitech Wheel Mouse: Found scroll wheel(s)
    [ 10.120] (--) evdev: ImPS/2 Logitech Wheel Mouse: Found relative axes
    [ 10.120] (--) evdev: ImPS/2 Logitech Wheel Mouse: Found x and y relative axes
    [ 10.120] (II) evdev: ImPS/2 Logitech Wheel Mouse: Configuring as mouse
    [ 10.120] (II) evdev: ImPS/2 Logitech Wheel Mouse: Adding scrollwheel support
    [ 10.120] (**) evdev: ImPS/2 Logitech Wheel Mouse: YAxisMapping: buttons 4 and 5
    [ 10.120] (**) evdev: ImPS/2 Logitech Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 10.120] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input4/event4"
    [ 10.120] (II) XINPUT: Adding extended input device "ImPS/2 Logitech Wheel Mouse" (type: MOUSE, id 9)
    [ 10.120] (II) evdev: ImPS/2 Logitech Wheel Mouse: initialized for relative axes.
    [ 10.120] (**) ImPS/2 Logitech Wheel Mouse: (accel) keeping acceleration scheme 1
    [ 10.120] (**) ImPS/2 Logitech Wheel Mouse: (accel) acceleration profile 0
    [ 10.120] (**) ImPS/2 Logitech Wheel Mouse: (accel) acceleration factor: 2.000
    [ 10.120] (**) ImPS/2 Logitech Wheel Mouse: (accel) acceleration threshold: 4
    [ 10.121] (II) config/udev: Adding input device ImPS/2 Logitech Wheel Mouse (/dev/input/mouse0)
    [ 10.121] (II) No input driver specified, ignoring this device.
    [ 10.121] (II) This device may have been added with another device file.
    [ 10.121] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 10.121] (II) No input driver specified, ignoring this device.
    [ 10.121] (II) This device may have been added with another device file.
    [ 10.174] (II) NOUVEAU(0): EDID vendor "SAM", prod id 27
    [ 10.174] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 10.174] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 10.174] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 10.174] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 10.174] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 10.174] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 14.960] (II) NOUVEAU(0): EDID vendor "SAM", prod id 27
    [ 14.960] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 14.960] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 14.960] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 14.960] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 14.961] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 14.961] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 84.256] (II) NOUVEAU(0): NVLeaveVT is called.
    [ 111.559] (II) NOUVEAU(0): NVEnterVT is called.
    [ 111.601] (II) NOUVEAU(0): EDID vendor "SAM", prod id 27
    [ 111.601] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 111.601] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 111.601] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 111.601] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 111.601] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 111.601] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 111.601] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 111.601] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 111.601] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 111.601] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 111.602] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 119.891] (II) NOUVEAU(0): EDID vendor "SAM", prod id 27
    [ 119.891] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 119.891] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 119.891] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 119.891] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 119.891] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 119.891] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 119.892] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 119.892] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 121.162] (II) NOUVEAU(0): EDID vendor "SAM", prod id 27
    [ 121.162] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 121.162] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 121.162] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 121.162] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 121.162] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 121.162] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 121.163] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 121.163] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 122.743] (II) NOUVEAU(0): EDID vendor "SAM", prod id 27
    [ 122.743] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 122.743] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 122.743] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 122.743] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 122.743] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 122.743] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 122.744] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 122.744] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 138.896] (II) NOUVEAU(0): NVLeaveVT is called.
    [ 167.669] (II) NOUVEAU(0): NVEnterVT is called.
    [ 167.720] (II) NOUVEAU(0): EDID vendor "SAM", prod id 27
    [ 167.720] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 167.720] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 167.720] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 167.720] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 167.720] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
    [ 167.720] (II) NOUVEAU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 186.390] (II) NOUVEAU(0): NVLeaveVT is called.
    - .xsession-errors in gnome session :
    GNOME_KEYRING_CONTROL=/home/olivier/.cache/keyring-D3uSoF
    GNOME_KEYRING_CONTROL=/home/olivier/.cache/keyring-D3uSoF
    GPG_AGENT_INFO=/home/olivier/.cache/keyring-D3uSoF/gpg:0:1
    GNOME_KEYRING_CONTROL=/home/olivier/.cache/keyring-D3uSoF
    GPG_AGENT_INFO=/home/olivier/.cache/keyring-D3uSoF/gpg:0:1
    SSH_AUTH_SOCK=/home/olivier/.cache/keyring-D3uSoF/ssh
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 30
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 30
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 55
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 56
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 59
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 58
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 30
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 30
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 30
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 55
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 56
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 59
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 58
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 30
    Failed to play sound: File or data not found
    ** Message: applet now removed from the notification area
    ** Message: applet now embedded in the notification area
    Avertissement du gestionnaire de fenêtres : CurrentTime used to choose focus window; focus window may not be correct.
    Avertissement du gestionnaire de fenêtres : Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    nvfx_screen_get_param:95 - Warning: unknown PIPE_CAP 30
    (gnome-shell:700): folks-WARNING **: Failed to find primary PersonaStore with type ID 'eds' and ID 'system'.
    Individuals will not be linked properly and creating new links between Personas will not work.
    The configured primary PersonaStore's backend may not be installed. If you are unsure, check with your distribution.
    (gnome-shell:700): GLib-GIO-WARNING **: Dropping signal ActiveSessionChanged of type (s) since the type from the expected interface is (o)
    (gnome-settings-daemon:657): color-plugin-WARNING **: Done switch to new account, reload devices
    (gnome-shell:700): GLib-GIO-WARNING **: Dropping signal ActiveSessionChanged of type (s) since the type from the expected interface is (o)
    (gnome-shell:700): GLib-GIO-WARNING **: Dropping signal ActiveSessionChanged of type (s) since the type from the expected interface is (o)
    Last edited by Jejel59 (2012-09-06 11:34:53)

    I'm no expert on reading the xsession errors, but I had all sorts of problems running gnome3 with my machine of the same vintage.   Cinamon is based on gnome3.  I switched to Mate which is a re-packaging of the old gnome2 along with Compiz for the window manager and all works well.
    I strongly suspect that they are using the newer OpenGL 4 API.  The Nvidia FX5200 is stuck at OpenGL 2.1.

Maybe you are looking for

  • Binding for table produces list for other tables using foreign key and crea

    Using software Jdev 11G, WLS 11G, Oracle DB 11G, Windows Vista platform technology EJB 3.0, jspx, backing beans, session bean I cannot create a namedquery on my secondary table. The method for the column uses the entity object rather than the name an

  • My screen goes off and on once its changes power from AC to Battery and vice versa

    Dear All I started noticing this from today ownwards that whenever the power is switched off and goes to battery mode and vice versa the screen turns off and on for 1 second. I dont know this is normal or i did mess up with some kind of power options

  • Manufacturing Interfaces documentation in R12

    Hi, For manufacturing interfaces, is the documentation in 11i still valid for R12? If not, where can I find it? I checked the doc library CD for R12 and couldn't find the 'Manufacturing Open Interfaces Guide', as it was in 11i.

  • Webutil progress bar

    Hi, When I use the webutil function client_to_AS_With_Progress a progress bar is shown. Is there a way to change the position of the progress bar, because it always appears on the top-left of the screen. Regards, Meine Dijkstra

  • XSS in htmldb Reports

    I put together a simple report and a form using the wizard. http://htmldb.oracle.com/pls/otn/f?p=42110:3:1507372630223102303::NO::: Then I got this really evil idea and entered <script>alert('aa')</script> in the text field and saved. When I hit crea