Como acrescentar opção de resolução (1024x768)?

Iniciado por Madrigal, 26 de Fevereiro de 2007, 16:47

tópico anterior - próximo tópico

Madrigal

Já vi alguns tópicos com o assunto, mas não consegui resolver ainda:

Estas informações estão atrás do monitor:
Monitor AOC
Modelo: 5En
Monitor 15" a cores
Monitor color 15'
1024x768 NE.28
100~240 Vac / 50~60 Hz/1.5A

Já tentei o seguinte:

1) Acrescentei no /etc/X11/xorg.conf as linhas:

Citar
SubSection "Display"
      Depth      28
      Modes      "1024x768" "800x600" "640x480"
   EndSubSection

O resultado foi desastroso, perdi o modo gráfico e tive que recuperar a cópia de segurança: sudo cp /etc/X11/xorg.conf.backup /etc/X11/xorg.conf


2) Usei o comando: sudo dpkg-reconfigure xserver-xorg

Foi mais desastroso ainda! E novamente recuperei a cópia de segurança.

Há mais algo que eu possa fazer?  :'(



   



samuelbh

O problema está na linha Depth. Mude o valor de 28 para 24.
Assinatura removida pela Equipe do Fórum

Madrigal

Citação de: samuelbh online 26 de Fevereiro de 2007, 16:58
O problema está na linha Depth. Mude o valor de 28 para 24.

Valeu, mas tentei, troquei pra 24 e deu no mesmo fiasco.  :-[

samuelbh

Coloca o conteúdo completo do seu arquivo xorg.conf. Acho que o problema deve estar na frequência (o máximo que esse monitor aguenta, nessa resolução, acho que é 60 Hz).
Assinatura removida pela Equipe do Fórum

Madrigal

Citação de: samuelbh online 27 de Fevereiro de 2007, 16:32
Coloca o conteúdo completo do seu arquivo xorg.conf.

Aqui vai, valeu pelo apoio  ;) :

# /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 /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/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/X11/fonts/misc"
   FontPath   "/usr/share/X11/fonts/cyrillic"
   FontPath   "/usr/share/X11/fonts/100dpi/:unscaled"
   FontPath   "/usr/share/X11/fonts/75dpi/:unscaled"
   FontPath   "/usr/share/X11/fonts/Type1"
   FontPath   "/usr/share/X11/fonts/100dpi"
   FontPath   "/usr/share/X11/fonts/75dpi"
   FontPath   "/usr/share/fonts/X11/misc"
   # 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   "type1"
   Load   "vbe"
EndSection

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

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

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

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

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

Section "Device"
   Identifier   "NVIDIA Corporation NV34 [GeForce FX 5200]"
   Driver      "nv"
   BusID      "PCI:2:0:0"
EndSection

Section "Monitor"
   Identifier   "AOC Spectrum"
   Option      "DPMS"
EndSection

Section "Screen"
   Identifier   "Default Screen"
   Device      "NVIDIA Corporation NV34 [GeForce FX 5200]"
   Monitor      "AOC Spectrum"
   DefaultDepth   24
   SubSection "Display"
      Depth      1
      Modes      "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      4
      Modes      "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      8
      Modes      "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      15
      Modes      "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      16
      Modes      "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth      24
      Modes      "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

biohazard

tenta deixar assim essa sua parte do xorg.conf

        SubSection "Display"
                Depth           24
                Modes           "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
                Option          "metamodes" "1024x768_60 +0+0; 800x600_85 +0+0"
        EndSubSection


e essa também adiconando as linhas de horizontal e vertical

Section "Monitor"
        Identifier      "T730SH"
        Option          "DPMS"
        HorizSync       30-60
        VertRefresh     50-160
EndSection



Arch Linux Overlord
Kernel 2.6.25-ARCH

Madrigal

Citação de: biohazard online 28 de Fevereiro de 2007, 15:11
tenta deixar assim essa sua parte do xorg.conf

Só um detalhe, eu devo apenas acrescentar ou apagar o que já tem lá?

samuelbh

Substitui apenas as seções especificadas pelo biohazard pelas opções que ele colocou.
Assinatura removida pela Equipe do Fórum

Madrigal

Ainda não teve jeito...

Vou tentar encontrar a maneira certa rodando um outro Live CD, se não me engano, uma vez que rodei o BigLinux apareceu a resolução certa, mas perdi o CD. Tenho que baixar outra iso.  :(

k7br

#9
Salve!
Só uma curiosidade  ???
mesmo instalando  o driver  da Nvidia não resolve?

Madrigal

#10
Citação de: k7br online 28 de Fevereiro de 2007, 18:10
Salve!
Só uma curiosidade  ???
mesmo instalando  o driver  da Nvidia não resolve?

Bem, eu instalei nas opções padrões, sou totalmente leigo em hardware, não sei te resonder isso.  :-\

Ah, decepção, rodei o LiveCD do bigLinux e o Xorg também não mostrou a opção de de 1024x768.  :'(

Madrigal

Citação de: k7br online 28 de Fevereiro de 2007, 18:10
mesmo instalando  o driver  da Nvidia não resolve?

Olha só, eu coloquei o cd do B0ig Linux pra rodar de novo, dessa vez escolhendo o Nvidia já que vc citou, e deu certo com ele, apareceu um monte de opções.

Então instalei o NVidia pelo Automatix, e coloquei a configuração do xorg do Big no xorg do Ubuntu, mas ainda não foi dessa vez!

Como pode funcionar no Big e no Ubuntu não?!  ???

Coloco abaixo o Xorg do big, alguém ainda me dá uma luz!?

Citar
Section "ServerLayout"
   Identifier     "XFree86 Configured"
   Screen      0  "Screen0" 0 0
   InputDevice    "Keyboard0" "CoreKeyboard"
   InputDevice    "PS/2 Mouse" "CorePointer"
InputDevice    "Serial Mouse" "CorePointer"
# USB Mouse not detected
# ALPS TouchPad not detected
# Synaptics TouchPad not detected
EndSection

Section "ServerFlags"
   Option "AllowMouseOpenFail"  "true"
   
EndSection

Section "Files"
#   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/X11R6/lib/X11/fonts/misc:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/misc"
   FontPath     "/usr/X11R6/lib/X11/fonts/75dpi:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/75dpi"
   FontPath     "/usr/X11R6/lib/X11/fonts/100dpi:unscaled"
   FontPath     "/usr/X11R6/lib/X11/fonts/100dpi"
   FontPath     "/usr/X11R6/lib/X11/fonts/Speedo"
   FontPath     "/usr/X11R6/lib/X11/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
   FontPath     "/usr/X11R6/lib/X11/fonts/cyrillic"
#   FontPath     "/usr/X11R6/lib/X11/fonts/latin2/75dpi"
#   FontPath     "/usr/X11R6/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
   FontPath     "/usr/X11R6/lib/X11/fonts/Type1"
   FontPath     "/usr/share/fonts/ttf/western"
   FontPath     "/usr/share/fonts/ttf/decoratives"
   FontPath     "/usr/share/fonts/truetype"
   FontPath     "/usr/share/fonts/truetype/openoffice"
   FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
   FontPath     "/usr/share/fonts/latex-ttf-fonts"
   FontPath     "/usr/X11R6/lib/X11/fonts/defoma/CID"
   FontPath     "/usr/X11R6/lib/X11/fonts/defoma/TrueType"
EndSection

Section "Module"
#       Load  "ddc"  # ddc probing of monitor
#Load  "GLcore"
   Load  "dbe"
#Load  "dri"
   Load  "extmod"
Load  "glx"
#        Load  "bitmap" # bitmap-fonts
#   Load  "speedo"
#   Load  "type1"
#   Load  "freetype"
   Load  "xtrap"
# TouchPad not detected
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "keyboard"
        Option      "CoreKeyboard"
   Option "XkbRules" "xorg"
   Option "XkbModel" "abnt2"
   Option "XkbLayout" "br"
   Option "XkbVariant" "abnt2"
EndSection

#MOUSE SERIAL SEM RODINHA
Section "InputDevice"
   Identifier  "Serial Mouse"#bigmouse1
   Driver  "mouse"
   Option  "Protocol"   "Microsoft"
   Option  "Device"   "/dev/ttyS0"
   Option  "Emulate3Buttons"  "true"
   Option  "Emulate3Timeout"  "70"
   Option  "SendCoreEvents"   "true"
EndSection

#MOUSE SERIAL COM RODINHA
Section "InputDevice"
   Identifier  "Serial Mouse2"#bigmouse2
   Driver      "mouse"
   Option      "Protocol" "IntelliMouse"
   Option      "Device" "/dev/ttyS0"
   Option      "Emulate3Buttons" "true"
   Option      "Emulate3Timeout" "70"
   Option       "SendCoreEvents"  "true"
        Option      "ZAxisMapping"          "4 5"
        Option      "Buttons"               "5"
EndSection

#MOUSE PS/2 AT� 3 BOT�ES E UMA RODINHA
Section "InputDevice"
Identifier  "PS/2 Mouse"#bigmouse3
   Driver      "mouse"
   Option      "Protocol" "auto"
Option          "ZAxisMapping"          "4 5"
   Option      "Device" "/dev/psaux"
   Option      "Emulate3Buttons" "true"
   Option      "Emulate3Timeout" "70"
   Option       "SendCoreEvents"  "true"
EndSection


#MOUSE PS/2 COM 5 BOT�ES E UMA RODINHA
Section "InputDevice"
Identifier  "PS/2 Mouse2"#bigmouse4
   Driver "mouse"
   Option "Protocol" "ExplorerPS/2"
   Option "ZAxisMapping" "4 5"
   Option "Buttons" "7"
   Option "Device" "/dev/input/mice"
EndSection


#MOUSE PS/2 COM 5 BOT�ES E UMA RODINHA MODO 2
Section "InputDevice"
Identifier  "PS/2 Mouse3"#bigmouse5
   Driver "mouse"
   Option "Protocol" "ExplorerPS/2"
   Option "ZAxisMapping" "6 7"
   Option "Buttons" "7"
   Option "Device" "/dev/input/mice"
EndSection

#MOUSE PS/2 COM 5 BOT�ES E DUAS RODINHAS
Section "InputDevice"
Identifier  "PS/2 Mouse4"#bigmouse6
   Driver "mouse"
   Option "Protocol" "ExplorerPS/2"
   Option "ZAxisMapping" "6 7 8 9"
   Option "Buttons" "9"
   Option "Device" "/dev/input/mice"
EndSection


#MOUSE USB AT� 3 BOT�ES E UMA RODINHA
Section "InputDevice"
        Identifier      "USB Mouse"#bigmouse7
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
   Option      "SendCoreEvents"   "true"
        Option          "Protocol"              "IMPS/2"
        Option          "ZAxisMapping"          "4 5"
        Option          "Buttons"               "5"
EndSection

#MOUSE USB 5 BOT�ES E UMA RODINHA
Section "InputDevice"
        Identifier      "USB Mouse2"#bigmouse8
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
   Option      "SendCoreEvents"   "true"
        Option          "Protocol"              "IMPS/2"
   Option "ZAxisMapping" "4 5"
   Option "Buttons" "7"
EndSection

#MOUSE USB 5 BOT�ES E UMA RODINHA MODO 2
Section "InputDevice"
        Identifier      "USB Mouse3"#bigmouse9
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
   Option      "SendCoreEvents"   "true"
        Option          "Protocol"              "IMPS/2"
   Option "ZAxisMapping" "6 7"
   Option "Buttons" "7"
EndSection

#MOUSE USB 5 BOT�ES E DUAS RODINHAS
Section "InputDevice"
        Identifier      "USB Mouse4"#bigmouse0
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
   Option      "SendCoreEvents"   "true"
        Option          "Protocol"              "IMPS/2"
   Option "ZAxisMapping" "6 7 8 9"
   Option "Buttons" "9"
EndSection


Section "InputDevice"
        Identifier      "ALPS TouchPad"
        Driver          "synaptics"
        Option          "Device"                "/dev/psaux"
        Option          "Protocol"              "auto-dev"
        Option          "LeftEdge"              "120"
        Option          "RightEdge"             "830"
        Option          "TopEdge"               "120"
        Option          "BottomEdge"            "650"
        Option          "FingerLow"             "14"
        Option          "FingerHigh"            "15"
        Option          "MaxTapTime"            "180"
        Option          "MaxTapMove"            "110"
        Option          "EmulateMidButtonTime"  "75"
        Option          "VertScrollDelta"       "20"
        Option          "HorizScrollDelta"      "20"
        Option          "MinSpeed"              "0.2"
        Option          "MaxSpeed"              "0.5"
        Option          "AccelFactor"           "0.01"
        Option          "EdgeMotionMinSpeed"    "15"
        Option          "EdgeMotionMaxSpeed"    "15"
        Option          "UpDownScrolling"       "1"
        Option          "CircularScrolling"     "1"
        Option          "CircScrollDelta"       "0.1"
        Option          "CircScrollTrigger"     "2"
EndSection

Section "InputDevice"
        Identifier      "Synaptics TouchPad"
        Driver          "synaptics"
        Option          "Device"                "/dev/psaux"
        Option          "Protocol"              "auto-dev"
        Option          "LeftEdge"              "1700"
        Option          "RightEdge"             "5300"
        Option          "TopEdge"               "1700"
        Option          "BottomEdge"            "4200"
        Option          "FingerLow"             "25"
        Option          "FingerHigh"            "30"
        Option          "MaxTapTime"            "180"
        Option          "MaxTapMove"            "220"
        Option          "VertScrollDelta"       "100"
        Option          "MinSpeed"              "0.06"
        Option          "MaxSpeed"              "0.12"
        Option          "AccelFactor"           "0.0010"
        Option          "SHMConfig"             "on"
        Option          "Repeater"              "/dev/ps2mouse"
EndSection

# Auto-generated by KNOPPIX mkxf86config

Section "Monitor"
   Identifier   "Monitor0"
   Option   "DPMS"   "true"
   VendorName   "AOC"
   ModelName   "AOCd556"
   HorizSync 30 - 54 # DDC-probed
   VertRefresh 50 - 120 # DDC-probed
EndSection

Section "Device"
   ### Available Driver options are:-
# sw_cursor is needed for some ati and radeon cards
        #Option     "sw_cursor"
        #Option     "hw_cursor"
        #Option     "NoAccel"
        #Option     "ShowCache"
        #Option     "ShadowFB"
        #Option     "UseFBDev"
        #Option     "Rotate"
        #Option     "VideoOverlay" "on"
        #Option     "OpenGLOverlay" "off"
        #Option     "KernelModuleParm" "agplock=0"
        #Option     "UseInternalAGPGART" "no"
   Identifier  "Card0"
# The following line is auto-generated by KNOPPIX mkxf86config
   Driver      "nvidia"
   VendorName  "All"
   BoardName   "All"
Option "IgnoreDisplayDevices" "TV"
#BusID       "PCI:1:0:0"
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Card0"
   Monitor    "Monitor0"
   DefaultColorDepth 24
   SubSection "Display"
      Depth     1
      Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     4
      Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     8
      Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     15
      Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     16
      Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     24
      Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
   EndSubSection
   SubSection "Display"
      Depth     32
      Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
   EndSubSection
EndSection

Section "DRI"
   Mode 0666
EndSection

solanoalves

Este é o meu xorg.conf usando uma GEFORCE6500. Creio que esteja igual ao da sala que é uma FX5200 só mudando o nome né..



Obs: Desde o começo da seção monitor até o fim do arquivo sem aquele DRI bla bla bla

Citar
Section "Monitor"
    Identifier     "AOC Spectrum"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "NVIDIA Corporation NV40 [GeForce 6200?]"
    Driver         "nvidia"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "NVIDIA Corporation NV40 [GeForce 6200?]"
    Monitor        "AOC Spectrum"
    DefaultDepth    24
    SubSection     "Display"
        Depth       1
        Modes      "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       4
        Modes      "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       8
        Modes      "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       15
        Modes      "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       16
        Modes      "800x600" "640x480"
    EndSubSection
    SubSection     "Display"
        Depth       24
        Modes      "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

k7br

#13
Se eu fosse você deixaria o xorg original e começaria do zero
http://ubuntuforum-pt.org/index.php?topic=15359.0
ou esse https://help.ubuntu.com/ubuntu/desktopguide/pt/hardware.html
qualquer dúvida estamos aí  ;)

Boa sorte!

Madrigal

Citação de: solanoalves online 01 de Março de 2007, 18:55
Este é o meu xorg.conf usando uma GEFORCE6500. Creio que esteja igual ao da sala que é uma FX5200 só mudando o nome né..

Obrigado, mas ainda não foi dessa vez...  :'(

Quanto ao último colega, eu tendo um tempinho vou dar uma estudada nestas páginas...

Se continuar assim vou acabar sendo obrigado a trocar de distribuição...  :(