Problèmes et questions concernant le noyau et le support matériel.
Répondre

Lenovo IdeaPad V110-15IAP

#1Messageil y a 6 ans

Bonjour,

Je voulais savoir si quelqu'un à eu mon soucis sur du Apollo Lake N3350.
Mon soucis est que je n'est pas le driver graphique qui n'est pas bien chargé sur manjaro xfce 17.0.4.
Voici ma config :

inxi -F
Resuming in non X mode: xrandr not found. For package install advice run: inxi --recommends
System:    Host: pc-pc Kernel: 4.12.11-1-MANJARO x86_64 (64 bit) Desktop: N/A
           Distro: Manjaro Linux
Machine:   Device: laptop System: LENOVO product: 80TG v: Lenovo V110-15IAP
           Mobo: LENOVO model: Lenovo V110-15IAP v: SDK0J40700 WIN
           UEFI: LENOVO v: 1MCN40WW date: 05/17/2017
Battery    BAT0: charge: 22.0 Wh 93.4% condition: 23.6/24.0 Wh (98%)
CPU:       Dual core Intel Celeron N3350 (-MCP-) cache: 1024 KB
           clock speeds: max: 2400 MHz 1: 2035 MHz 2: 2298 MHz
Graphics:  Card: Intel Device 5a85
           Display Server: N/A drivers: intel (unloaded: modesetting)
           tty size: 80x24
Audio:     Card Intel Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster
           driver: snd_hda_intel
           Sound: Advanced Linux Sound Architecture v: k4.12.11-1-MANJARO
Network:   Card-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
           driver: r8168
           IF: enp1s0 state: down mac: 54:ee:75:d2:db:e8
           Card-2: Intel Dual Band Wireless-AC 3165 Plus Bluetooth
           driver: iwlwifi
           IF: wlp2s0 state: up mac: 7c:67:a2:de:0f:03
Drives:    HDD Total Size: 120.0GB (13.8% used)
           ID-1: /dev/sda model: KINGSTON_SUV400S size: 120.0GB
Partition: ID-1: / size: 102G used: 8.3G (9%) fs: ext4 dev: /dev/sda2
           ID-2: swap-1 size: 8.14GB used: 0.00GB (0%) fs: swap dev: /dev/sda3
Sensors:   System Temperatures: cpu: 36.0C mobo: 36.0C
           Fan Speeds (in rpm): cpu: N/A
Info:      Processes: 155 Uptime: 1:47 Memory: 1320.6/3529.3MB Init: systemd
           Client: Shell (bash) inxi: 2.3.27

Donc si vous avez une idée pour charger le driver correctement et supprimer le tearing ce serait super.

Cordialement
Dernière modification par liberodarkil y a 6 ans, modifié au total 1 fois.

Lenovo IdeaPad V110-15IAP

#2Messageil y a 6 ans

bonjour.

tu as passé la commande suggerée dans inxi ?

a savoir

For package install advice run: inxi --recommends

Lenovo IdeaPad V110-15IAP

#3Messageil y a 6 ans

bien sur mais cela na rien à voir c'est surtout que j'ai aucun fichier de configuration intel pour le driver actuellement.

Lenovo IdeaPad V110-15IAP

#4Messageil y a 6 ans

J'ai donc trouvé le soucis :

Voici les opérations à effectuer :

Pour inxi sur les version 17.0.x de manjaro :

sudo pacman -S xorg-xrandr 
sudo pacman -S  xorg-xdpyinfo


Puis on peut refaire inxi -F :D

Ensuite pour le tearing :

sudo nano /etc/X11/xorg.conf.d/20-intel.conf


Puis coller (DRI2) :

Section "Device"
        Identifier  "Intel Graphics"
        Driver      "intel"
        Option      "DRI" "2"             # DRI3 is now default
        Option      "TearFree" "true"
        #Option      "AccelMethod"  "sna" # default
        #Option      "AccelMethod"  "uxa" # fallback
      EndSection


ou

Puis coller (DRI3) :

Section "Device"
        Identifier  "Intel Graphics"
        Driver      "intel"
        Option      "DRI" "3"             # DRI3 is now default
        Option      "TearFree" "true"
        Option      "AccelMethod"  "sna" # default
        Option      "AccelMethod"  "uxa" # fallback
      EndSection



Puis redémarrer lancer la commadne :

cat /var/log/Xorg.0.log | grep DRI

Pour voir si c'est bien activé.

DRI2 est recommandé si vous avez des soucis avec votre driver intel mieux vaut DRI3 pour les configurations récente.

Attention manjaro ne met plus en place le fichier

20-intel.conf

Ce qui je trouve est vraiment dommage.
Sachez aussi que faire une réinstallation du driver et voir les détails dans mhwd permet de connaitre votre configuration.
Mais il faudra créer votre fichier vous même.

Cordialement
Répondre