Advertisement
opencard

Рябит, не выводится изображение после загрузки linux mint

Feb 10th, 2024
1,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.56 KB | Fixit | 0 0
  1. su -
  2. X :1 -configure
  3. cp /root/xorg.conf.new /etc/X11/xorg.conf
  4.  
  5.  
  6. # Редактируем файл, дописываем или раскомментируем строку
  7. # в секции Device
  8. nano /etc/X11/xorg.conf
  9. # на Option "NoAccel" "True"
  10.  
  11. Полный конфиг у меня такой:
  12. Section "ServerLayout"
  13.     Identifier     "X.org Configured"
  14.     Screen      0  "Screen0" 0 0
  15.     Screen      1  "Screen1" RightOf "Screen0"
  16.     InputDevice    "Mouse0" "CorePointer"
  17.     InputDevice    "Keyboard0" "CoreKeyboard"
  18. EndSection
  19.  
  20. Section "Files"
  21.     ModulePath   "/usr/lib/xorg/modules"
  22.     FontPath     "/usr/share/fonts/X11/misc"
  23.     FontPath     "/usr/share/fonts/X11/cyrillic"
  24.     FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  25.     FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  26.     FontPath     "/usr/share/fonts/X11/Type1"
  27.     FontPath     "/usr/share/fonts/X11/100dpi"
  28.     FontPath     "/usr/share/fonts/X11/75dpi"
  29.     FontPath     "built-ins"
  30. EndSection
  31.  
  32. Section "Module"
  33.     Load  "glx"
  34. EndSection
  35.  
  36. Section "InputDevice"
  37.     Identifier  "Keyboard0"
  38.     Driver      "kbd"
  39. EndSection
  40.  
  41. Section "InputDevice"
  42.     Identifier  "Mouse0"
  43.     Driver      "mouse"
  44.     Option      "Protocol" "auto"
  45.     Option      "Device" "/dev/input/mice"
  46.     Option      "ZAxisMapping" "4 5 6 7"
  47. EndSection
  48.  
  49. Section "Monitor"
  50.     Identifier   "Monitor0"
  51.     VendorName   "Monitor Vendor"
  52.     ModelName    "Monitor Model"
  53. EndSection
  54.  
  55. Section "Monitor"
  56.     Identifier   "Monitor1"
  57.     VendorName   "Monitor Vendor"
  58.     ModelName    "Monitor Model"
  59. EndSection
  60.  
  61. Section "Device"
  62.         ### Available Driver options are:-
  63.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  64.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  65.         ### <percent>: "<f>%"
  66.         ### [arg]: arg optional
  67.         Option     "NoAccel" "True"
  68.         #Option     "SWcursor"              # [<bool>]
  69.         #Option     "EnablePageFlip"        # [<bool>]
  70.         #Option     "SubPixelOrder"         # [<str>]
  71.         #Option     "ZaphodHeads"           # <str>
  72.         #Option     "AccelMethod"           # <str>
  73.         #Option     "DRI3"                  # [<bool>]
  74.         #Option     "DRI"                   # <i>
  75.         #Option     "ShadowPrimary"         # [<bool>]
  76.         #Option     "TearFree"              # [<bool>]
  77.         #Option     "DeleteUnusedDP12Displays"  # [<bool>]
  78.         #Option     "VariableRefresh"       # [<bool>]
  79.         #Option     "AsyncFlipSecondaries"  # [<bool>]
  80.     Identifier  "Card0"
  81.     Driver      "amdgpu"
  82.     BusID       "PCI:0:1:0"
  83. EndSection
  84.  
  85. Section "Device"
  86.         ### Available Driver options are:-
  87.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  88.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  89.         ### <percent>: "<f>%"
  90.         ### [arg]: arg optional
  91.         #Option     "Accel"                 # [<bool>]
  92.         #Option     "SWcursor"              # [<bool>]
  93.         #Option     "EnablePageFlip"        # [<bool>]
  94.         #Option     "SubPixelOrder"         # [<str>]
  95.         #Option     "ZaphodHeads"           # <str>
  96.         #Option     "AccelMethod"           # <str>
  97.         #Option     "DRI3"                  # [<bool>]
  98.         #Option     "DRI"                   # <i>
  99.         #Option     "ShadowPrimary"         # [<bool>]
  100.         #Option     "TearFree"              # [<bool>]
  101.         #Option     "DeleteUnusedDP12Displays"  # [<bool>]
  102.         #Option     "VariableRefresh"       # [<bool>]
  103.         #Option     "AsyncFlipSecondaries"  # [<bool>]
  104.     Identifier  "Card1"
  105.     Driver      "amdgpu"
  106.     BusID       "PCI:0:1:1"
  107. EndSection
  108.  
  109. Section "Screen"
  110.     Identifier "Screen0"
  111.     Device     "Card0"
  112.     Monitor    "Monitor0"
  113.     SubSection "Display"
  114.         Viewport   0 0
  115.         Depth     1
  116.     EndSubSection
  117.     SubSection "Display"
  118.         Viewport   0 0
  119.         Depth     4
  120.     EndSubSection
  121.     SubSection "Display"
  122.         Viewport   0 0
  123.         Depth     8
  124.     EndSubSection
  125.     SubSection "Display"
  126.         Viewport   0 0
  127.         Depth     15
  128.     EndSubSection
  129.     SubSection "Display"
  130.         Viewport   0 0
  131.         Depth     16
  132.     EndSubSection
  133.     SubSection "Display"
  134.         Viewport   0 0
  135.         Depth     24
  136.     EndSubSection
  137. EndSection
  138.  
  139. Section "Screen"
  140.     Identifier "Screen1"
  141.     Device     "Card1"
  142.     Monitor    "Monitor1"
  143.     SubSection "Display"
  144.         Viewport   0 0
  145.         Depth     1
  146.     EndSubSection
  147.     SubSection "Display"
  148.         Viewport   0 0
  149.         Depth     4
  150.     EndSubSection
  151.     SubSection "Display"
  152.         Viewport   0 0
  153.         Depth     8
  154.     EndSubSection
  155.     SubSection "Display"
  156.         Viewport   0 0
  157.         Depth     15
  158.     EndSubSection
  159.     SubSection "Display"
  160.         Viewport   0 0
  161.         Depth     16
  162.     EndSubSection
  163.     SubSection "Display"
  164.         Viewport   0 0
  165.         Depth     24
  166.     EndSubSection
  167. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement