Разрешения парного монитора не будут придерживаться после неизвестной начальной загрузки

У меня было снижение напряжения вчера вечером, которое вызвало мой ЦП к перезагрузке. Когда это возвратилось, мои парные мониторы имели неправильное разрешение. Теперь я должен установить их вручную после запуска.

Мой основной монитор является Asus и распознан как Ancor Communications Inc. 24''. Мой дополнительный монитор является ViewSonic и распознан как Неизвестный. Я проверил мой ~/.config/monitors.xml файл и получает следование:

<monitors version="1">
  <configuration>
      <clone>no</clone>
      <output name="VGA-0">
          <vendor>VSC</vendor>
          <product>0x3919</product>
          <serial>0x01010101</serial>
          <width>1280</width>
          <height>1024</height>
          <rate>60</rate>
          <x>1920</x>
          <y>56</y>
          <rotation>normal</rotation>
          <reflect_x>no</reflect_x>
          <reflect_y>no</reflect_y>
          <primary>no</primary>
      </output>
      <output name="HDMI-0">
      </output>
      <output name="DVI-0">
          <vendor>ACI</vendor>
          <product>0x2494</product>
          <serial>0x01010101</serial>
          <width>1920</width>
          <height>1080</height>
          <rate>60</rate>
          <x>0</x>
          <y>0</y>
          <rotation>normal</rotation>
          <reflect_x>no</reflect_x>
          <reflect_y>no</reflect_y>
          <primary>yes</primary>
      </output>
  </configuration>
  <configuration>
      <clone>no</clone>
      <output name="VGA-0">
          <vendor>???</vendor>
          <product>0x0000</product>
          <serial>0x00000000</serial>
          <width>1280</width>
          <height>1024</height>
          <rate>75</rate>
          <x>1920</x>
          <y>27</y>
          <rotation>normal</rotation>
          <reflect_x>no</reflect_x>
          <reflect_y>no</reflect_y>
          <primary>no</primary>
      </output>
      <output name="HDMI-0">
      </output>
      <output name="DVI-0">
          <vendor>ACI</vendor>
          <product>0x2494</product>
          <serial>0x01010101</serial>
          <width>1920</width>
          <height>1080</height>
          <rate>60</rate>
          <x>0</x>
          <y>0</y>
          <rotation>normal</rotation>
          <reflect_x>no</reflect_x>
          <reflect_y>no</reflect_y>
          <primary>yes</primary>
      </output>
  </configuration>
</monitors>

Я заметил <vendor>???</vendor> и дубликат разделяет так удаленный оба, оставляя первое <configuration>...</configuration>. Это не помогло.

Наконец, я должен работать xrandr --addmode VGA-0 1280x1024 прежде чем я смогу установить свой secondard montior на корректное разрешение.

Информация о ЦП

OS: ubuntu 12.04 LTS
Processor: AMD Athlon(tm) II X3 440 Processor × 3
video card is: Gallium 0.4 on AMD RV730
OS type: 64-bit

Какие-либо идеи, что продолжается?

** Я добавил тот же monitors.xml (без дубликатов) к моему /etc/gnome-settings-daemon/xrandr/ каталог, но не перезапустил. Я отредактирую это сообщение после.

Править

Так добавление /etc/gnome-settings-daemon/xrandr/monitors.xmlwith the above information yielded an error saying it could not apply those settings. I noticed themonitors.xmlfile in was edited with the duplicatetags and with???' как я описал выше.

Я действительно работал xrandr --addmode VGA-0 1280x1024 как обычно, и оба монитора были исправлены впоследствии. Обычно я должен вручную установить корректные разрешения.

1
задан 8 August 2014 в 20:53

1 ответ

Хорошо я выяснил свою проблему и полагал, что отправлю то, что я сделал в случае, если кто-либо еще сталкивается с чем-то подобным.

В конце, я отредактировал мой xorg.config файл, добавил .xprofile файл и удалил мой .config/monitors.xml файл.

xorg.config

Section "Monitor"
        Identifier      "aticonfig-Monitor[0]-0"
        Option          "VendorName" "ATI Proprietary Driver"
        Option          "ModelName" "Generic Autodetecting Monitor"
        Option          "DPMS" "true"
        Option          "PreferredMode" "1920x1080"
        Option          "Primary" "true"
EndSection

Section "Monitor"
        Identifier      "VGA0"
        Option          "RightOf" "aticonfig-Monitor[0]-0"
        Option          "PreferredMode" "1280x1024"
EndSection

Section "Screen"
        Identifier "aticonfig-Screen[0]-0"
        Device     "aticonfig-Device[0]-0"
        DefaultDepth    24
        SubSection "Display"
                Viewport  0 0
                Depth     24
        EndSubSection
EndSection

Section "Module"
        Load    "glx"
EndSection

Section "ServerLayout"
        Identifier     "aticonfig Layout"
        Screen         "aticonfig-Screen[0]-0"
EndSection

Section "Device"
        Identifier  "aticonfig-Device[0]-0"
        Driver      "fglrx"
        BusID       "PCI:1:0:0"
        Option      "Monitor-DVI-0" "aticonfig-Monitor[0]-0"
        Option      "Monitor-VGA-0" "VGA0"
EndSection
<час>
.xprofile

xrandr --addmode VGA-0 1280x1024
<час>

А новый файл monitors.xml был автоматически сгенерирован на запуске и все еще содержит??? для неизвестного монитора (VGA 0), но это больше не содержит дубликаты.

Все кажется прекрасным теперь

1
ответ дан 11 November 2019 в 12:38

Другие вопросы по тегам:

Похожие вопросы: