qual é a diferença entre esses 3 arquivos. xorg.conf, xorg.conf.failsafe e xorg.conf.nvidia-xconfig-original

4

Como eles diferem. Quais são suas funcionalidades? Eu sou novo no Ubuntu e estou usando o Ubuntu 12.04LTS.

Aqui estão os seus conteúdos.

xorg.conf

 # nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 304.88  (buildmeister@swio-display-x86-rhel47-14)  Wed Mar 27 15:36:45 PDT 2013

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

xorg.conf.failsafe

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "vesa"
EndSection

Section "Monitor"
    Identifier  "Configured Monitor"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
EndSection
  • por que o xorg.conf.nvidia-xconfig-original está vazio?
  • por que xorg.conf.failsafe lista vesa como driver?
por chanHXC 28.08.2013 / 06:13

2 respostas

2

xorg.conf é o que está sendo usado, se disponível. Não é mais necessário, e é por isso que o original estava vazio; normalmente, nem está presente, mas certos scripts de instalação, como a nvidia, criarão cópias de segurança ao fazer uma alteração.

Assim, a cópia à prova de falhas é aquela que funcionará, mas com resolução e funcionalidade reduzidas. Pode ter sido criado por um instalador antigo, pois não acho que a nvidia crie isso. Mas eu não tenho mais drivers nvidia, então eu poderia estar enganado. Se você executar o script nvidia mais de uma vez, acabará com mais backups.

Se houver algum problema com o vídeo, como nenhuma interface gráfica, você pode usar um terminal para acessar o diretório e renomear os arquivos para alterar o comportamento. Em teoria, você pode renomear xorg.conf para xorg.conf.1, ou qualquer outra coisa que você queira, e então copiar a versão à prova de falhas para xorg.conf.

Há algumas boas informações no askubuntu, como isto:

    
por Marty Fried 28.08.2013 / 06:56
2

man xorg.conf fornecerá muitas informações nesse sentido:

NAME
   xorg.conf, xorg.conf.d - configuration files for Xorg X server

INTRODUCTION
   Xorg  supports  several  mechanisms for supplying/obtaining configuration
   and run-time parameters: command line options, environment variables, the
   xorg.conf  and xorg.conf.d configuration files, auto-detection, and fall‐
   back defaults. When the same information is supplied  in  more  than  one
   way,  the highest precedence mechanism is used. The list of mechanisms is
   ordered from highest precedence to lowest. Note that not  all  parameters
   can  be  supplied via all methods. The available command line options and
   environment variables (and some defaults) are described in the Xserver(1)
   and  Xorg(1) manual pages. Most configuration file parameters, with their
   defaults, are described below. Driver and module  specific  configuration
   parameters are described in the relevant driver or module manual page.

xorg.conf.failsafe file é para o caso em que você bagunçou algo em sua máquina e precisa inicializar no modo à prova de falhas. Por esse motivo, o uso do driver de vídeo VESA genérico. Novamente, para mais informações, você pode chamar man vesa :

DESCRIPTION
       vesa  is  an Xorg driver for generic VESA video cards.  It can drive most
       VESA-compatible video cards, but only makes use  of  the  basic  standard
       VESA  core  that is common to these cards.  The driver supports depths 8,
       15 16 and 24.

E, finalmente, para xorg.conf.nvidia-xconfig-original file, você encontrará informações suficientes nas man pages. man nvidia-xconfig :

   --restore-original-backup
          Restore  a  backup of the X configuration that was made before any
          changes were made by nvidia-xconfig, if such a  backup  is  avail‐
          able. This type of backup is made by nvidia-xconfig before it mod‐
          ifies an X configuration file that it has not previously  touched;
          this  is  assumed  to be an X configuration file that predates the
          involvement of the NVIDIA X driver. As an example,  nvidia-xconfig
          will  copy  an  X  configuration  file  at  /etc/X11/xorg.conf  to
          /etc/X11/xorg.conf.nvidia-xconfig-original the first time it makes
          changes to that file.
    
por Radu Rădeanu 28.08.2013 / 07:04