Como alterar a profundidade de cor no Ubuntu 10.04?

1

Eu tenho o Ubuntu 10.04 instalado em um Dell C600 e a maior resolução disponível é de 800x600. Do meu anterior eu me lembro que 1024x768 funcionaria depois de definir a profundidade de cor para 16 bits, mas não há mais xorg.conf em / etc / X11. Então, como a profundidade de cor pode ser alterada sem um arquivo xorg.conf?

    
por Tobias Kienzler 07.08.2010 / 12:44

1 resposta

1

Isso foi respondido no beta do Ubuntu.SE ,

You can create a new xorg.conf by switching into a virtual virtual console (Ctrl + Alt + (1-6)) and running sudo service gdm stop.

Then run Xorg -configure (yes, it should be Xorg, not xorg). If you had an old xorg.conf file in /etc/X11/ you'd first back that up by doing sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup.

Then move your newly created xorg.conf to /etc/X11/ by running sudo mv xorg.conf.new /etc/X11/xorg.conf and restart gdm by running sudo service gdm start.

Then you can change the color depth in there by finding the appropriate section and changing/adding whatever's in there to DefaultDepth 16

Tommy Brunn

    
por 07.08.2010 / 14:15