Autor Tópico: Como aumentar a resolução da tela???[RESOLVIDO]  (Lida 11073 vezes)

Offline RaphaelSantos

  • Usuário Ubuntu
  • *
  • Mensagens: 89
    • Ver perfil
Como aumentar a resolução da tela???[RESOLVIDO]
« Online: 07 de Setembro de 2007, 13:47 »
Pessoal, tava com o ubuntu 7.04 64bits e minha resolução dava 1280x1024... porem fui pro 7.04 32 bits e minha resolução maxima, mesmo instalando o driver de video atraves dos drivers restritos, é 1024x768...
Alguem sabe como aumentar minha resolução??

Meu pc é um althon 64 x2 4200+, 2gb de ram, placamae Asus A8N-E, placa de video ati radeon x300 128mb pci-e...

meu x-org é
Citar
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf(5) manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
   FontPath   "/usr/share/fonts/X11/misc"
   FontPath   "/usr/share/fonts/X11/cyrillic"
   FontPath   "/usr/share/fonts/X11/100dpi/:unscaled"
   FontPath   "/usr/share/fonts/X11/75dpi/:unscaled"
   FontPath   "/usr/share/fonts/X11/Type1"
   FontPath   "/usr/share/fonts/X11/100dpi"
   FontPath   "/usr/share/fonts/X11/75dpi"
   # path to defoma fonts
   FontPath   "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
   Load   "i2c"
   Load   "bitmap"
   Load   "ddc"
   Load   "dri"
   Load   "extmod"
   Load   "freetype"
   Load   "glx"
   Load   "int10"
   Load   "vbe"
EndSection

Section "InputDevice"
   Identifier   "Generic Keyboard"
   Driver      "kbd"
   Option      "CoreKeyboard"
   Option      "XkbRules"   "xorg"
   Option      "XkbModel"   "abnt2"
   Option      "XkbLayout"   "br"
EndSection

Section "InputDevice"
   Identifier   "Configured Mouse"
   Driver      "mouse"
   Option      "CorePointer"
   Option      "Device"      "/dev/input/mice"
   Option      "Protocol"      "ImPS/2"
   Option      "ZAxisMapping"      "4 5"
   Option      "Emulate3Buttons"   "true"
EndSection

Section "InputDevice"
   Driver      "wacom"
   Identifier   "stylus"
   Option      "Device"   "/dev/input/wacom"
   Option      "Type"      "stylus"
   Option      "ForceDevice"   "ISDV4"      # Tablet PC ONLY
EndSection

Section "InputDevice"
   Driver      "wacom"
   Identifier   "eraser"
   Option      "Device"   "/dev/input/wacom"
   Option      "Type"      "eraser"
   Option      "ForceDevice"   "ISDV4"      # Tablet PC ONLY
EndSection

Section "InputDevice"
   Driver      "wacom"
   Identifier   "cursor"
   Option      "Device"   "/dev/input/wacom"
   Option      "Type"      "cursor"
   Option      "ForceDevice"   "ISDV4"      # Tablet PC ONLY
EndSection

Section "Device"
   Identifier   "ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]"
   Driver      "ati"
   BusID      "PCI:1:0:0"
EndSection

Section "Monitor"
   Identifier   "Monitor Genérico"
   Option      "DPMS"
   HorizSync   28-51
   VertRefresh   43-60
EndSection

Section "Screen"
   Identifier   "Default Screen"
   Device      "ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]"
   Monitor      "Monitor Genérico"
   DefaultDepth   24
   SubSection "Display"
      Depth      1
      Modes      "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      4
      Modes      "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      8
      Modes      "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      15
      Modes      "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      16
      Modes      "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      24
      Modes      "1024x768" "800x600" "640x480"
   EndSubSection
EndSection

Section "ServerLayout"
   Identifier   "Default Layout"
   Screen      "Default Screen"
   InputDevice   "Generic Keyboard"
   InputDevice   "Configured Mouse"
   InputDevice     "stylus"   "SendCoreEvents"
   InputDevice     "cursor"   "SendCoreEvents"
   InputDevice     "eraser"   "SendCoreEvents"
EndSection

Section "DRI"
   Mode   0666
EndSection
« Última modificação: 07 de Setembro de 2007, 14:51 por RaphaelSantos »

Offline Versuri

  • Usuário Ubuntu
  • *
  • Mensagens: 912
  • Linux#436528 ● Ubuntu#9933 MacBook Pro SL 10.6.7
    • Ver perfil
Re: Como aumentar a resolução da tela???
« Resposta #1 Online: 07 de Setembro de 2007, 14:29 »
Tente selecionar a resolução colocando o comando:
Citar
sudo dpkg-reconfigure -phigh xserver-xorg

Se não funcionar, tente acrescentar manualmente em todas as linhas Modes a resolução "1280x1024"

Faça um backup antes de editar:
Citar
sudo cp /etc/X11/xorg.conf /etc/X11/xorgback.conf

Edite o xorg:
Citar
sudo gedit /etc/X11/xorg.conf

Exemplo:
Citar
SubSection "Display"
      Depth      24
      Modes     "1280x1024" "1024x768" "800x600" "640x480"

Ctrl+Alt+Backspace para reiniciar o X
« Última modificação: 07 de Setembro de 2007, 14:33 por Versuri »

Offline RaphaelSantos

  • Usuário Ubuntu
  • *
  • Mensagens: 89
    • Ver perfil
Re: Como aumentar a resolução da tela???
« Resposta #2 Online: 07 de Setembro de 2007, 14:52 »
Tente selecionar a resolução colocando o comando:
Citar
sudo dpkg-reconfigure -phigh xserver-xorg

Se não funcionar, tente acrescentar manualmente em todas as linhas Modes a resolução "1280x1024"

Faça um backup antes de editar:
Citar
sudo cp /etc/X11/xorg.conf /etc/X11/xorgback.conf

Edite o xorg:
Citar
sudo gedit /etc/X11/xorg.conf

Exemplo:
Citar
SubSection "Display"
      Depth      24
      Modes     "1280x1024" "1024x768" "800x600" "640x480"

Ctrl+Alt+Backspace para reiniciar o X
obrigado versuri, funcionou com o dpkg-recondigure :D:D:D

Offline Versuri

  • Usuário Ubuntu
  • *
  • Mensagens: 912
  • Linux#436528 ● Ubuntu#9933 MacBook Pro SL 10.6.7
    • Ver perfil
Re: Como aumentar a resolução da tela???[RESOLVIDO]
« Resposta #3 Online: 07 de Setembro de 2007, 15:34 »
Que bom, altere o título do tópico e coloque (Resolvido)

Offline Br1000

  • Usuário Ubuntu
  • *
  • Mensagens: 44
    • Ver perfil
Re: Como aumentar a resolução da tela???[RESOLVIDO]
« Resposta #4 Online: 07 de Setembro de 2007, 19:48 »
Versuri
Grande solução.  :D
Estava procurando como alterar a resolução do meu UBUNTU 7.04 LiveCD e depois de muita pesquisa achei a sua solução que resolveu o meu problema pois só conseguia 800x600 e agora tenho também 1024x768 (mesmo rodando direto do CD) que é onde queria chegar.
Com este testemunho espero ajudar outros usuários, com o mesmo problema.
Parabéns