<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://planet.ubuntu-fr.org/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
  <title>Planet Ubuntu Francophone - Xrandr</title>
  <link>http://planet.ubuntu-fr.org/</link>
  <description></description>
  <language>fr</language>
  <pubDate>Sat, 17 May 2008 06:14:39 +0200</pubDate>
  <copyright></copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>Mise en veille / Hibernation et optimisation de la Nvidia 8400GS du Dell XPS m1330 sous Ubuntu Hardy</title>
    <link>http://www.atlas95.com/blog/2008/05/09/mise-en-veille-hibernation-et-optimisation-de-la-nvidia-8400gs-du-dell-xps-m1330-sous-ubuntu-hardy/</link>
    <guid isPermaLink="false">urn:md5:00a3da9963b17e474d9e1b2fd90d0d7a</guid>
    <pubDate>Thu, 08 May 2008 22:58:02 +0200</pubDate>
    <dc:creator>Atlas95</dc:creator>
        <category>PUF</category>
        <category>8400gs</category><category>Accueil</category><category>Hardy</category><category>Hibernation</category><category>Linux</category><category>M1330</category><category>Nvidia</category><category>Ubuntu</category><category>Xps</category><category>Xps m1330</category><category>Xrandr</category>    
    <description>    &lt;p&gt;Afin d&amp;#8217;avoir un pc qui se met en veille et hiberne rapidement (&amp;#8221;rapidement&amp;#8221; pour l&amp;#8217;&lt;a href=&quot;http://www.atlas95.com/blog/tag/hibernation/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec hibernation&quot;&gt;hibernation&lt;/a&gt; est un gros mot je trouve, encore bien trop lent à mon goût) j&amp;#8217;ai réglé mon fichier /etc/default/acpi-support comme ci-dessous, &lt;strong&gt;je ne garanti rien&lt;/strong&gt;, mais pour info le mien est régler comme cela et ça fonctionne très bien.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
sudo cp /etc/default/acpi-support /etc/default/acpi-support.bak &amp;amp;&amp;amp; sudo gedit /etc/default/acpi-support
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;
# Comment the next line to disable ACPI suspend to RAM
ACPI_SLEEP=true

# Comment the next line to disable suspend to disk
ACPI_HIBERNATE=true

# Change the following to &quot;standby&quot; to use ACPI S1 sleep, rather than S3.
# This will save less power, but may work on more machines
ACPI_SLEEP_MODE=mem

# Add modules to this list to have them removed before suspend and reloaded
# on resume. An example would be MODULES=&quot;em8300 yenta_socket&quot;
#
# Note that network cards and USB controllers will automatically be unloaded
# unless they're listed in MODULES_WHITELIST
MODULES=&quot;uvcvideo&quot;

# Add modules to this list to leave them in the kernel over suspend/resume
MODULES_WHITELIST=&quot;&quot;

# Should we save and restore state using the VESA BIOS Extensions?
#SAVE_VBE_STATE=true
SAVE_VBE_STATE=false

# The file that we use to save the vbestate
VBESTATE=/var/lib/acpi-support/vbestate

# Should we attempt to warm-boot the video hardware on resume?
POST_VIDEO=false

# Save and restore video state?
# SAVE_VIDEO_PCI_STATE=true

# Should we switch the screen off with DPMS on suspend?
USE_DPMS=true

# Use Radeontool to switch the screen off? Seems to be needed on some machines
# RADEON_LIGHT=true

# Uncomment the next line to switch away from X and back again after resume.
# This is needed for some hardware, but should be unnecessary on most.
DOUBLE_CONSOLE_SWITCH=false

# Set the following to &quot;platform&quot; if you want to use ACPI to shut down
# your machine on &lt;a href=&quot;http://www.atlas95.com/blog/tag/hibernation/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec hibernation&quot;&gt;hibernation&lt;/a&gt;
HIBERNATE_MODE=shutdown

# Comment this out to disable screen locking on resume
LOCK_SCREEN=true

# Uncomment this line to have DMA disabled before suspend and reenabled
# afterwards
DISABLE_DMA=true

# Uncomment this line to attempt to reset the drive on resume. This seems
# to be needed for some Sonys
# RESET_DRIVE=true

# Add services to this list to stop them before suspend and restart them in
# the resume process.
STOP_SERVICES=&quot;networking&quot;

# Restart Infra Red services on resume - off by default as it crashes some
# machines
RESTART_IRDA=false

# Switch to laptop-mode on battery power - off by default as it causes odd
# hangs on some machines
ENABLE_LAPTOP_MODE=false

# Spindown time on battery
SPINDOWN_TIME=12
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Vous devez également modifier dans /etc/X11/xorg.conf la partie concernant la carte graphique.&lt;br /&gt;
La partie concernant la carte &lt;a href=&quot;http://www.atlas95.com/blog/tag/nvidia/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec nvidia&quot;&gt;nvidia&lt;/a&gt; &lt;a href=&quot;http://www.atlas95.com/blog/tag/8400gs/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec 8400gs&quot;&gt;8400gs&lt;/a&gt; avec les drivers propriétaires fournis dans &lt;a href=&quot;http://www.atlas95.com/blog/tag/ubuntu/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec Ubuntu&quot;&gt;Ubuntu&lt;/a&gt; &lt;a href=&quot;http://www.atlas95.com/blog/tag/hardy/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec hardy&quot;&gt;Hardy&lt;/a&gt; est ainsi :&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak &amp;amp;&amp;amp; sudo gedit /etc/X11/xorg.conf
&lt;/code&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;code&gt;
Section &quot;Device&quot;
    Identifier     &quot;&lt;a href=&quot;http://www.atlas95.com/blog/tag/nvidia/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec nvidia&quot;&gt;nVidia&lt;/a&gt; Corporation G80 [GeForce 8400M GS]&amp;#8221;
    Driver         &amp;#8220;&lt;a href=&quot;http://www.atlas95.com/blog/tag/nvidia/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec nvidia&quot;&gt;nvidia&lt;/a&gt;&amp;#8221;
EndSection

Section &amp;#8220;Screen&amp;#8221;
    Identifier     &amp;#8220;Default Screen&amp;#8221;
    Device         &amp;#8220;&lt;a href=&quot;http://www.atlas95.com/blog/tag/nvidia/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec nvidia&quot;&gt;nVidia&lt;/a&gt; Corporation G80 [GeForce 8400M GS]&amp;#8221;
    Monitor        &amp;#8220;Écran générique&amp;#8221;
    DefaultDepth    24
    Option         &amp;#8220;RenderAccel&amp;#8221; &amp;#8220;true&amp;#8221;
    Option         &amp;#8220;AllowGLXWithComposite&amp;#8221; &amp;#8220;true&amp;#8221;
    Option         &amp;#8220;AddARGBVisuals&amp;#8221; &amp;#8220;True&amp;#8221;
    Option         &amp;#8220;AddARGBGLXVisuals&amp;#8221; &amp;#8220;True&amp;#8221;
    Option         &amp;#8220;OnDemandVBlankInterrupts&amp;#8221; &amp;#8220;True&amp;#8221; # Optimisation
    Option         &amp;#8220;Coolbits&amp;#8221; &amp;#8220;0&amp;#8243; # Passer à 1 pour permettre l&amp;#8217;overclocking, à vos risque et péril !
    Option         &amp;#8220;TripleBuffer&amp;#8221; &amp;#8220;true&amp;#8221;
    Option         &amp;#8220;NoLogo&amp;#8221; &amp;#8220;True&amp;#8221; # Pas de logo au démarrage
    Option         &amp;#8220;RandRRotation&amp;#8221; # Rotation de l&amp;#8217;écran avec la commande &lt;a href=&quot;http://www.atlas95.com/blog/tag/xrandr/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec xrandr&quot;&gt;xrandr&lt;/a&gt; -o left par exemple
    Option         &amp;#8220;NvAGP&amp;#8221; &amp;#8220;1&amp;#8243; # Résout problême d&amp;#8217;&lt;a href=&quot;http://www.atlas95.com/blog/tag/hibernation/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec hibernation&quot;&gt;hibernation&lt;/a&gt;
    SubSection     &amp;#8220;Display&amp;#8221;
        Depth       24
        Modes      &amp;#8220;1280&amp;#215;1280&amp;#8243;
    EndSubSection
EndSection

Section &amp;#8220;Extensions&amp;#8221;
    Option         &amp;#8220;Composite&amp;#8221; &amp;#8220;Enable&amp;#8221;
EndSection
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Regarder les commentaires de celui-ci, je n&amp;#8217;ai pas tout détaillé.&lt;/p&gt;
&lt;p&gt;Avec ce xorg, &lt;a href=&quot;http://www.atlas95.com/blog/tag/compiz/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec compiz&quot;&gt;compiz&lt;/a&gt; fonctionnel, pas de problème de &lt;strong&gt;mise en veille / &lt;a href=&quot;http://www.atlas95.com/blog/tag/hibernation/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec hibernation&quot;&gt;hibernation&lt;/a&gt;&lt;/strong&gt;, rotation de l&amp;#8217;écran avec &lt;strong&gt;&lt;a href=&quot;http://www.atlas95.com/blog/tag/xrandr/&quot; rel=&quot;tag&quot; title=&quot;Voir les articles taggés avec xrandr&quot;&gt;xrandr&lt;/a&gt; possible&lt;/strong&gt; !&lt;/p&gt;
&lt;p&gt;En espérant que ça vous soit utile !&lt;/p&gt;

	Les Tags: &lt;a href=&quot;http://www.atlas95.com/blog/tag/8400gs/&quot; title=&quot;8400gs&quot; rel=&quot;tag&quot;&gt;8400gs&lt;/a&gt;, &lt;a href=&quot;http://www.atlas95.com/blog/tag/hardy/&quot; title=&quot;hardy&quot; rel=&quot;tag&quot;&gt;hardy&lt;/a&gt;, &lt;a href=&quot;http://www.atlas95.com/blog/tag/hibernation/&quot; title=&quot;hibernation&quot; rel=&quot;tag&quot;&gt;hibernation&lt;/a&gt;, &lt;a href=&quot;http://www.atlas95.com/blog/tag/linux/&quot; title=&quot;Linux&quot; rel=&quot;tag&quot;&gt;Linux&lt;/a&gt;, &lt;a href=&quot;http://www.atlas95.com/blog/tag/m1330/&quot; title=&quot;m1330&quot; rel=&quot;tag&quot;&gt;m1330&lt;/a&gt;, &lt;a href=&quot;http://www.atlas95.com/blog/tag/nvidia/&quot; title=&quot;nvidia&quot; rel=&quot;tag&quot;&gt;nvidia&lt;/a&gt;, &lt;a href=&quot;http://www.atlas95.com/blog/tag/ubuntu/&quot; title=&quot;Ubuntu&quot; rel=&quot;tag&quot;&gt;Ubuntu&lt;/a&gt;, &lt;a href=&quot;http://www.atlas95.com/blog/tag/xps/&quot; title=&quot;xps&quot; rel=&quot;tag&quot;&gt;xps&lt;/a&gt;, &lt;a href=&quot;http://www.atlas95.com/blog/tag/xrandr/&quot; title=&quot;xrandr&quot; rel=&quot;tag&quot;&gt;xrandr&lt;/a&gt;&lt;br /&gt;

	&lt;h4&gt;Ces articles t'intéressent?&lt;/h4&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.atlas95.com/blog/2007/10/02/installation-tweaking-dell-xps-1330-avec-ubuntu-gusty/&quot; title=&quot;Installation, tweaking Dell XPS m1330 avec Ubuntu Gutsy (2 octobre 2007)&quot;&gt;Installation, tweaking Dell XPS m1330 avec Ubuntu Gutsy&lt;/a&gt; (17)&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.atlas95.com/blog/2007/12/10/mise-a-jour-du-tuto-du-xps-1330-et-programmes-dell-pour-ubuntulinux/&quot; title=&quot;Mise à jour du tuto du XPS m1330 et programmes Dell pour Ubuntu/Linux (10 décembre 2007)&quot;&gt;Mise à jour du tuto du XPS m1330 et programmes Dell pour Ubuntu/Linux&lt;/a&gt; (13)&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.atlas95.com/blog/2008/01/22/m1330-et-carte-broadcom/&quot; title=&quot;m1330 et carte Broadcom (22 janvier 2008)&quot;&gt;m1330 et carte Broadcom&lt;/a&gt; (0)&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.atlas95.com/blog/2007/09/24/demain-je-devrais-avoir-un-xps-1330/&quot; title=&quot;Demain je devrais avoir un xps 1330 (24 septembre 2007)&quot;&gt;Demain je devrais avoir un xps 1330&lt;/a&gt; (0)&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.atlas95.com/blog/2007/10/14/bios-dell-linuxubuntu/&quot; title=&quot;Bios DELL + Linux/Ubuntu (14 octobre 2007)&quot;&gt;Bios DELL + Linux/Ubuntu&lt;/a&gt; (3)&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.atlas95.com/blog/2008/01/23/avoir-du-son-sur-les-2-sorties-casque-du-m1330/&quot; title=&quot;Avoir du son sur les 2 sorties casque du m1330 (23 janvier 2008)&quot;&gt;Avoir du son sur les 2 sorties casque du m1330&lt;/a&gt; (7)&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://www.atlas95.com/blog/2008/01/22/majactiver-le-micro-interne-du-m1330-sous-gutsy/&quot; title=&quot;[MàJ]Activer le micro interne du m1330 sous Gutsy (22 janvier 2008)&quot;&gt;[MàJ]Activer le micro interne du m1330 sous Gutsy&lt;/a&gt; (2)&lt;/li&gt;
&lt;/ul&gt;</description>
    
    
    
      </item>
    
</channel>
</rss>
