IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Applications et environnements graphiques Discussion :

Problème écran noir IMac late 2009 - Ubuntu 22.04 LTS


Sujet :

Applications et environnements graphiques

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2023
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Service public

    Informations forums :
    Inscription : Mars 2023
    Messages : 2
    Points : 1
    Points
    1
    Par défaut Problème écran noir IMac late 2009 - Ubuntu 22.04 LTS
    Bonjour à tous,
    J'ai relancé mon vieil Imac dont l'OS n'est plus suivi. J'y ai installé Ubuntu 22.04 LTS sur un SSD partitionné. Pas de soucis lors de l'installation grâce à nomodeset. Un fois booté sur le ssd je n'ai évidemment plus d'affichage; Les touches de modification du volume fonctionnant, j'ai donc pluggé un écran portable ASUS au display port et je vois que je suis sur l'extension d'écran. J'ai donc modifié l'écran principal en faveur de l'ASUS mais malgré diverses manipulation je suis un peu perdu étant nouveau sur Linux. La seule chose qui change quand je connecte l’écran externe sur le DisplayPort est qu’il comporte des lignes grises aléatoire au lieu d’être noir. Je suis passé de Wayland vers X11 pas de soucis mais pour le reste je pense que je vais devoir me fier à votre expertise. Merci d'avance.

    Le GRUB:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
     
     
    # /boot/grub/grub.cfg.
    # For full documentation of the options in this file, see:
    #   info -f grub -n 'Simple configuration'
     
    GRUB_DEFAULT=0
    GRUB_TIMEOUT_STYLE=hidden
    GRUB_TIMEOUT=0
    GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
    GRUB_CMDLINE_LINUX=""
     
    # Uncomment to enable BadRAM filtering, modify to suit your needs
    # This works with Linux (no patch required) and with any kernel that obtains
    # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
    #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
     
    # Uncomment to disable graphical terminal (grub-pc only)
    #GRUB_TERMINAL=console
     
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    #GRUB_GFXMODE=640x480
     
    # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
    #GRUB_DISABLE_LINUX_UUID=true
     
    # Uncomment to disable generation of recovery mode menu entries
    #GRUB_DISABLE_RECOVERY="true"
     
    # Uncomment to get a beep at grub start
    #GRUB_INIT_TUNE="480 440 1"
    Le log Xorg:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
     [  2042.762] 
    X.Org X Server 1.21.1.4
    X Protocol Version 11, Revision 0
    [  2042.762] Current Operating System: Linux CentralStation 5.19.0-42-generic #43~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Apr 21 16:51:08 UTC 2 x86_64
    [  2042.762] Kernel command line: ro root=UUID=296a4091-78f4-40e4-a04b-638cddbfb7fa initrd=boot\initrd.img-5.19.0-42-generic
    [  2042.762] xorg-server 2:21.1.4-2ubuntu1.7~22.04.1 (For technical support please see http://www.ubuntu.com/support) 
    [  2042.762] Current version of pixman: 0.40.0
    [  2042.762] 	Before reporting problems, check http://wiki.x.org
    	to make sure that you have the latest version.
    [  2042.762] Markers: (--) probed, (**) from config file, (==) default setting,
    	(++) from command line, (!!) notice, (II) informational,
    	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [  2042.762] (==) Log file: "/var/log/Xorg.0.log", Time: Wed May 31 20:19:47 2023
    [  2042.762] (II) Loader magic: 0x5618d4eaa020
    [  2042.762] (II) Module ABI versions:
    [  2042.762] 	X.Org ANSI C Emulation: 0.4
    [  2042.762] 	X.Org Video Driver: 25.2
    [  2042.762] 	X.Org XInput driver : 24.4
    [  2042.762] 	X.Org Server Extension : 10.0
    [  2042.763] (--) using VT number 1
     
    [  2042.763] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
    [  2042.764] (II) xfree86: Adding drm device (/dev/dri/card0)
    [  2042.764] (II) Platform probe for /sys/devices/pci0000:00/0000:00:03.0/0000:01:00.0/drm/card0
    [  2042.773] (--) PCI:*(1@0:0:0) 1002:944a:106b:00b5 rev 0, Mem @ 0xc0000000/268435456, 0xd0620000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    [  2042.773] List of video drivers:
    [  2042.773] 	amdgpu
    [  2042.773] 	ati
    [  2042.773] 	intel
    [  2042.773] 	nouveau
    [  2042.773] 	qxl
    [  2042.773] 	radeon
    [  2042.773] 	vmware
    [  2042.773] 	modesetting
    [  2042.773] 	fbdev
    [  2042.773] 	vesa
    [  2042.773] (II) LoadModule: "amdgpu"
    [  2042.774] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
    [  2042.776] (II) Module amdgpu: vendor="X.Org Foundation"
    [  2042.776] 	compiled for 1.21.1.3, module version = 22.0.0
    [  2042.776] 	Module class: X.Org Video Driver
    [  2042.776] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.776] (II) LoadModule: "ati"
    [  2042.776] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [  2042.776] (II) Module ati: vendor="X.Org Foundation"
    [  2042.776] 	compiled for 1.21.1.3, module version = 19.1.0
    [  2042.776] 	Module class: X.Org Video Driver
    [  2042.776] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.776] (II) LoadModule: "intel"
    [  2042.777] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [  2042.781] (II) Module intel: vendor="X.Org Foundation"
    [  2042.781] 	compiled for 1.21.1.3, module version = 2.99.917
    [  2042.781] 	Module class: X.Org Video Driver
    [  2042.781] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.781] (II) LoadModule: "nouveau"
    [  2042.781] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [  2042.783] (II) Module nouveau: vendor="X.Org Foundation"
    [  2042.783] 	compiled for 1.21.1.3, module version = 1.0.17
    [  2042.783] 	Module class: X.Org Video Driver
    [  2042.783] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.783] (II) LoadModule: "qxl"
    [  2042.783] (II) Loading /usr/lib/xorg/modules/drivers/qxl_drv.so
    [  2042.785] (II) Module qxl: vendor="X.Org Foundation"
    [  2042.785] 	compiled for 1.21.1.3, module version = 0.1.5
    [  2042.785] 	Module class: X.Org Video Driver
    [  2042.785] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.785] (II) LoadModule: "radeon"
    [  2042.785] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [  2042.785] (II) Module radeon: vendor="X.Org Foundation"
    [  2042.785] 	compiled for 1.21.1.3, module version = 19.1.0
    [  2042.785] 	Module class: X.Org Video Driver
    [  2042.785] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.785] (II) LoadModule: "vmware"
    [  2042.785] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
    [  2042.815] (II) Module vmware: vendor="X.Org Foundation"
    [  2042.815] 	compiled for 1.21.1.3, module version = 13.3.0
    [  2042.816] 	Module class: X.Org Video Driver
    [  2042.816] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.816] (II) LoadModule: "modesetting"
    [  2042.816] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [  2042.816] (II) Module modesetting: vendor="X.Org Foundation"
    [  2042.816] 	compiled for 1.21.1.4, module version = 1.21.1
    [  2042.816] 	Module class: X.Org Video Driver
    [  2042.816] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.816] (II) LoadModule: "fbdev"
    [  2042.816] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [  2042.816] (II) Module fbdev: vendor="X.Org Foundation"
    [  2042.816] 	compiled for 1.21.1.3, module version = 0.5.0
    [  2042.816] 	Module class: X.Org Video Driver
    [  2042.816] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.816] (II) LoadModule: "vesa"
    [  2042.816] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [  2042.817] (II) Module vesa: vendor="X.Org Foundation"
    [  2042.817] 	compiled for 1.21.1.3, module version = 2.5.0
    [  2042.817] 	Module class: X.Org Video Driver
    [  2042.817] 	ABI class: X.Org Video Driver, version 25.2
    [  2042.817] (II) AMDGPU: Driver for AMD Radeon:
    	All GPUs supported by the amdgpu kernel driver
    [  2042.817] (II) RADEON: Driver for ATI/AMD Radeon chipsets:
    	ATI Radeon Mobility X600 (M24), ATI FireMV 2400,
    	ATI Radeon Mobility X300 (M24), ATI FireGL M24 GL,
    	ATI Radeon X600 (RV380), ATI FireGL V3200 (RV380),
    	ATI Radeon IGP320 (A3), ATI Radeon IGP330/340/350 (A4),
    	ATI Radeon 9500, ATI Radeon 9600TX, ATI FireGL Z1, ATI Radeon 9800SE,
    	ATI Radeon 9800, ATI FireGL X2, ATI Radeon 9600, ATI Radeon 9600SE,
    	ATI Radeon 9600XT, ATI FireGL T2, ATI Radeon 9650, ATI FireGL RV360,
    	ATI Radeon 7000 IGP (A4+), ATI Radeon 8500 AIW,
    	ATI Radeon IGP320M (U1), ATI Radeon IGP330M/340M/350M (U2),
    	ATI Radeon Mobility 7000 IGP, ATI Radeon 9000/PRO, ATI Radeon 9000,
    	ATI Radeon X800 (R420), ATI Radeon X800PRO (R420),
    	ATI Radeon X800SE (R420), ATI FireGL X3 (R420),
    	ATI Radeon Mobility 9800 (M18), ATI Radeon X800 SE (R420),
    	ATI Radeon X800XT (R420), ATI Radeon X800 VE (R420),
    	ATI Radeon X850 (R480), ATI Radeon X850 XT (R480),
    	ATI Radeon X850 SE (R480), ATI Radeon X850 PRO (R480),
    	ATI Radeon X850 XT PE (R480), ATI Radeon Mobility M7,
    	ATI Mobility FireGL 7800 M7, ATI Radeon Mobility M6,
    	ATI FireGL Mobility 9000 (M9), ATI Radeon Mobility 9000 (M9),
    	ATI Radeon 9700 Pro, ATI Radeon 9700/9500Pro, ATI FireGL X1,
    	ATI Radeon 9800PRO, ATI Radeon 9800XT,
    	ATI Radeon Mobility 9600/9700 (M10/M11),
    	ATI Radeon Mobility 9600 (M10), ATI Radeon Mobility 9600 (M11),
    	ATI FireGL Mobility T2 (M10), ATI FireGL Mobility T2e (M11),
    	ATI Radeon, ATI FireGL 8700/8800, ATI Radeon 8500, ATI Radeon 9100,
    	ATI Radeon 7500, ATI Radeon VE/7000, ATI ES1000,
    	ATI Radeon Mobility X300 (M22), ATI Radeon Mobility X600 SE (M24C),
    	ATI FireGL M22 GL, ATI Radeon X800 (R423), ATI Radeon X800PRO (R423),
    	ATI Radeon X800LE (R423), ATI Radeon X800SE (R423),
    	ATI Radeon X800 XTP (R430), ATI Radeon X800 XL (R430),
    	ATI Radeon X800 SE (R430), ATI Radeon X800 (R430),
    	ATI FireGL V7100 (R423), ATI FireGL V5100 (R423),
    	ATI FireGL unknown (R423), ATI Mobility FireGL V5000 (M26),
    	ATI Mobility Radeon X700 XL (M26), ATI Mobility Radeon X700 (M26),
    	ATI Radeon X550XTX, ATI Radeon 9100 IGP (A5),
    	ATI Radeon Mobility 9100 IGP (U3), ATI Radeon XPRESS 200,
    	ATI Radeon XPRESS 200M, ATI Radeon 9250, ATI Radeon 9200,
    	ATI Radeon 9200SE, ATI FireMV 2200, ATI Radeon X300 (RV370),
    	ATI Radeon X600 (RV370), ATI Radeon X550 (RV370),
    	ATI FireGL V3100 (RV370), ATI FireMV 2200 PCIE (RV370),
    	ATI Radeon Mobility 9200 (M9+), ATI Mobility Radeon X800 XT (M28),
    	ATI Mobility FireGL V5100 (M28), ATI Mobility Radeon X800 (M28),
    	ATI Radeon X850, ATI unknown Radeon / FireGL (R480),
    	ATI Radeon X800XT (R423), ATI FireGL V5000 (RV410),
    	ATI Radeon X700 XT (RV410), ATI Radeon X700 PRO (RV410),
    	ATI Radeon X700 SE (RV410), ATI Radeon X700 (RV410),
    	ATI Radeon X1800, ATI Mobility Radeon X1800 XT,
    	ATI Mobility Radeon X1800, ATI Mobility FireGL V7200,
    	ATI FireGL V7200, ATI FireGL V5300, ATI Mobility FireGL V7100,
    	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    	ATI Mobility Radeon X1400, ATI Radeon X1550 64-bit,
    	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI FireGL V3300,
    	ATI FireGL V3350, ATI Mobility Radeon X1450,
    	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    	ATI FireMV 2250, ATI Radeon X1650, ATI Mobility FireGL V5200,
    	ATI Mobility Radeon X1600, ATI Radeon X1300 XT/X1600 Pro,
    	ATI FireGL V3400, ATI Mobility FireGL V5250,
    	ATI Mobility Radeon X1700, ATI Mobility Radeon X1700 XT,
    	ATI FireGL V5200, ATI Radeon X2300HD, ATI Mobility Radeon HD 2300,
    	ATI Radeon X1950, ATI Radeon X1900, ATI AMD Stream Processor,
    	ATI RV560, ATI Mobility Radeon X1900, ATI Radeon X1950 GT, ATI RV570,
    	ATI FireGL V7400, ATI Radeon 9100 PRO IGP,
    	ATI Radeon Mobility 9200 IGP, ATI Radeon X1200, ATI RS740,
    	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro,
    	ATI Radeon HD 2900 GT, ATI FireGL V8650, ATI FireGL V8600,
    	ATI FireGL V7600, ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    	ATI Radeon HD 4850 x2, ATI FirePro V8750 (FireGL),
    	ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850,
    	ATI Mobility RADEON HD 4850 X2, ATI FirePro RV770,
    	AMD FireStream 9270, AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    	ATI FirePro M7750, ATI M98, ATI Mobility Radeon HD 4650,
    	ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
    	ATI FirePro M5750, ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI RV610,
    	ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
    	ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI Radeon HD 2350,
    	ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400,
    	ATI RADEON E2400, ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    	ATI Mobility Radeon HD 3850 X2, ATI Mobility Radeon HD 3870,
    	ATI Mobility Radeon HD 3870 X2, ATI Radeon HD3870 X2,
    	ATI FireGL V7700, ATI Radeon HD3690, AMD Firestream 9170,
    	ATI Radeon HD 4550, ATI Radeon RV710, ATI Radeon HD 4350,
    	ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
    	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    	ATI FireGL V3600, ATI Radeon HD 2600 LE,
    	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    	ATI Radeon HD 3450, ATI Radeon HD 3430, ATI FirePro V3700,
    	ATI FireMV 2450, ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
    	ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
    	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    	ATI Radeon HD 3300 Graphics, ATI Radeon 3000 Graphics, SUMO, SUMO2,
    	ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    	AMD Radeon HD 6300 Series Graphics,
    	AMD Radeon HD 6200 Series Graphics, PALM, CYPRESS,
    	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    	AMD Firestream 9350, ATI Radeon HD 5800 Series,
    	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    	ATI Radeon HD 5670, ATI Radeon HD 5570, ATI Radeon HD 5500 Series,
    	REDWOOD, ATI Mobility Radeon Graphics, CEDAR, ATI FirePro 2270,
    	ATI Radeon HD 5450, CAYMAN, AMD Radeon HD 6900 Series,
    	AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    	AMD Radeon HD 6800 Series, AMD Radeon HD 6700 Series, TURKS, CAICOS,
    	ARUBA, TAHITI, PITCAIRN, VERDE, OLAND, HAINAN, BONAIRE, KABINI,
    	MULLINS, KAVERI, HAWAII
    [  2042.821] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [  2042.821] (II) FBDEV: driver for framebuffer: fbdev
    [  2042.821] (II) VESA: driver for VESA chipsets: vesa
    [  2042.857] (++) Using config file: "/root/xorg.conf.new"
    [  2042.857] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [  2042.858] (==) ServerLayout "X.org Configured"
    [  2042.858] (**) |-->Screen "Screen0" (0)
    [  2042.858] (**) |   |-->Monitor "Monitor0"
    [  2042.858] (**) |   |-->Device "Card0"
    [  2042.858] (**) |-->Screen "Screen1" (1)
    [  2042.858] (**) |   |-->Monitor "Monitor1"
    [  2042.859] (**) |   |-->Device "Card1"
    [  2042.859] (**) |-->Input Device "Mouse0"
    [  2042.859] (**) |-->Input Device "Keyboard0"
    [  2042.859] (==) Automatically adding devices
    [  2042.859] (==) Automatically enabling devices
    [  2042.859] (==) Automatically adding GPU devices
    [  2042.859] (==) Automatically binding GPU devices
    [  2042.859] (==) Max clients allowed: 256, resource mask: 0x1fffff
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
    [  2042.859] 	Entry deleted from font path.
    [  2042.859] (**) FontPath set to:
    	/usr/share/fonts/X11/misc,
    	/usr/share/fonts/X11/Type1,
    	built-ins,
    	/usr/share/fonts/X11/misc,
    	/usr/share/fonts/X11/Type1,
    	built-ins
    [  2042.859] (**) ModulePath set to "/usr/lib/xorg/modules"
    [  2042.859] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [  2042.859] (WW) Disabling Mouse0
    [  2042.859] (WW) Disabling Keyboard0
    [  2042.859] (II) AMDGPU(0): [KMS] Kernel modesetting enabled.
    [  2042.860] (EE) AMDGPU(0): amdgpu_device_initialize failed
    [  2042.860] (II) AMDGPU(1): [KMS] Kernel modesetting enabled.
    [  2042.860] (EE) AMDGPU(1): [drm] Failed to open DRM device for pci:0000:01:00.1: Invalid argument
    [  2042.860] 
    [  2042.861] 
    Xorg detected your mouse at device /dev/input/mice.
    Please check your config if the mouse is still not
    operational, as by default Xorg tries to autodetect
    the protocol.
    [  2042.861] 
    Xorg has configured a multihead system, please check your config.
    [  2042.861] 
    Your xorg.conf file is /root/xorg.conf.new
     
    [  2042.861] To test the server, run 'X -config /root/xorg.conf.new'
     
    [  2042.861] (EE) Server terminated with error (2). Closing log file.
    Le Xorg.conf:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
     Section "ServerLayout"
    	Identifier     "X.org Configured"
    	Screen      0  "Screen0" 0 0
    	Screen      1  "Screen1" RightOf "Screen0"
    	InputDevice    "Mouse0" "CorePointer"
    	InputDevice    "Keyboard0" "CoreKeyboard"
    EndSection
     
    Section "Files"
    	ModulePath   "/usr/lib/xorg/modules"
    	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"
    	FontPath     "built-ins"
    EndSection
     
    Section "Module"
    	Load  "glx"
    EndSection
     
    Section "InputDevice"
    	Identifier  "Keyboard0"
    	Driver      "kbd"
    EndSection
     
    Section "InputDevice"
    	Identifier  "Mouse0"
    	Driver      "mouse"
    	Option	    "Protocol" "auto"
    	Option	    "Device" "/dev/input/mice"
    	Option	    "ZAxisMapping" "4 5 6 7"
    EndSection
     
    Section "Monitor"
    	Identifier   "Monitor0"
    	VendorName   "Monitor Vendor"
    	ModelName    "Monitor Model"
    EndSection
     
    Section "Monitor"
    	Identifier   "Monitor1"
    	VendorName   "Monitor Vendor"
    	ModelName    "Monitor Model"
    EndSection
     
    Section "Device"
            ### Available Driver options are:-
            ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
            ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
            ### <percent>: "<f>%"
            ### [arg]: arg optional
            #Option     "Accel"              	# [<bool>]
            #Option     "SWcursor"           	# [<bool>]
            #Option     "EnablePageFlip"     	# [<bool>]
            #Option     "SubPixelOrder"      	# [<str>]
            #Option     "ZaphodHeads"        	# <str>
            #Option     "AccelMethod"        	# <str>
            #Option     "DRI3"               	# [<bool>]
            #Option     "DRI"                	# <i>
            #Option     "ShadowPrimary"      	# [<bool>]
            #Option     "TearFree"           	# [<bool>]
            #Option     "DeleteUnusedDP12Displays" 	# [<bool>]
            #Option     "VariableRefresh"    	# [<bool>]
            #Option     "AsyncFlipSecondaries" 	# [<bool>]
    	Identifier  "Card0"
    	Driver      "amdgpu"
    	BusID       "PCI:1:0:0"
    EndSection
     
    Section "Device"
            ### Available Driver options are:-
            ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
            ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
            ### <percent>: "<f>%"
            ### [arg]: arg optional
            #Option     "Accel"              	# [<bool>]
            #Option     "SWcursor"           	# [<bool>]
            #Option     "EnablePageFlip"     	# [<bool>]
            #Option     "SubPixelOrder"      	# [<str>]
            #Option     "ZaphodHeads"        	# <str>
            #Option     "AccelMethod"        	# <str>
            #Option     "DRI3"               	# [<bool>]
            #Option     "DRI"                	# <i>
            #Option     "ShadowPrimary"      	# [<bool>]
            #Option     "TearFree"           	# [<bool>]
            #Option     "DeleteUnusedDP12Displays" 	# [<bool>]
            #Option     "VariableRefresh"    	# [<bool>]
            #Option     "AsyncFlipSecondaries" 	# [<bool>]
    	Identifier  "Card1"
    	Driver      "radeon"
    	BusID       "PCI:1:0:1"
    EndSection
     
    Section "Screen"
    	Identifier "Screen0"
    	Device     "Card0"
    	Monitor    "Monitor0"
    	SubSection "Display"
    		Viewport   0 0
    		Depth     1
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     4
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     8
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     15
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     16
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     24
    	EndSubSection
    EndSection
     
    Section "Screen"
    	Identifier "Screen1"
    	Device     "Card1"
    	Monitor    "Monitor1"
    	SubSection "Display"
    		Viewport   0 0
    		Depth     1
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     4
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     8
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     15
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     16
    	EndSubSection
    	SubSection "Display"
    		Viewport   0 0
    		Depth     24
    	EndSubSection
    EndSection

  2. #2
    Responsable Systèmes


    Homme Profil pro
    Gestion de parcs informatique
    Inscrit en
    Août 2011
    Messages
    17 674
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Gestion de parcs informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Août 2011
    Messages : 17 674
    Points : 43 728
    Points
    43 728
    Par défaut
    et en mettant nomodeset dans grub ? Je pense que tu l'as fait pour booter sur l'iso mais l'as tu fait sur l'OS installé ?

  3. #3
    Nouveau Candidat au Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mars 2023
    Messages
    2
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Service public

    Informations forums :
    Inscription : Mars 2023
    Messages : 2
    Points : 1
    Points
    1
    Par défaut
    Bonjour ☺️ Je souhaiterais vraiment utiliser la carte graphique donc le nomodeset me bloquerait au niveau affichage.

  4. #4
    Responsable Systèmes


    Homme Profil pro
    Gestion de parcs informatique
    Inscrit en
    Août 2011
    Messages
    17 674
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Gestion de parcs informatique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Août 2011
    Messages : 17 674
    Points : 43 728
    Points
    43 728
    Par défaut
    ça ne t’empêchera pas d'utiliser ta carte graphique.

Discussions similaires

  1. Réponses: 1
    Dernier message: 27/12/2016, 21h53
  2. Probléme écran noir retro eclairé
    Par Alex1407 dans le forum Ordinateurs
    Réponses: 0
    Dernier message: 25/07/2014, 22h07
  3. [PC fixe] Problème écran noir
    Par Jcvag44800 dans le forum Ordinateurs
    Réponses: 5
    Dernier message: 10/07/2012, 14h29
  4. Ordinateur problème écran noir mais lumineux BIS
    Par derek corhs dans le forum Ordinateurs
    Réponses: 6
    Dernier message: 31/03/2010, 20h49
  5. Problème écran noir démarrage
    Par Padhac dans le forum Composants
    Réponses: 5
    Dernier message: 28/08/2009, 09h56

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo