Problema de vídeo da Intel

0

Eu sou novo no Ubuntu e tenho 14.04 Tentei configurar a resolução da tela em mais de 800x600, mas provavelmente cometi um erro. Eu esperava ter 1366x768 ou 1920 x 1080 com a Samsung S27E390H, mas agora tenho 1024x768 e pacotes errados instalados.

1)

sudo apt-get install xserver-xorg-video-intel
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 xserver-xorg-video-intel : Depends: xorg-video-abi-15
                            Depends: xserver-xorg-core (>= 2:1.14.99.902)
                            Depends: xserver-xorg-video-glamoregl but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

2)

xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 480, current 1024 x 768, maximum 1024 x 768
default connected primary 1024x768+0+0 0mm x 0mm
   1024x768       61.0* 
   800x600        61.0  
   640x480        60.0  
  1366x768 (0x229)   85.2MHz
        h: width  1368 start 1440 end 1576 total 1784 skew    0 clock   47.8KHz
        v: height  768 start  771 end  781 total  798           clock   59.9Hz

3)

    lspci -vnn
    00:00.0 Host bridge [0600]: Intel Corporation Sky Lake Host Bridge/DRAM Registers [8086:190f] (rev 07)
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Flags: bus master, fast devsel, latency 0
        Capabilities: <access denied>

    00:02.0 VGA compatible controller [0300]: Intel Corporation Sky Lake Integrated Graphics [8086:1912] (rev 06) (prog-if 00 [VGA controller])
        Subsystem: ASUSTeK Computer Inc. Device [1043:8694]
        Flags: bus master, fast devsel, latency 0, IRQ 11
        Memory at f6000000 (64-bit, non-prefetchable) [size=16M]
        Memory at e0000000 (64-bit, prefetchable) [size=256M]
        I/O ports at f000 [size=64]
        Expansion ROM at <unassigned> [disabled]
        Capabilities: <access denied>
...............

Alguém poderia me ajudar, por favor, desinstale errado e instale corretamente? )

4)

cvt 1920 1080 60
# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

xrandr --newmode "1920x1080_60.00" 173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
xrandr: Failed to get size of gamma for output default

xrandr --addmode VGA-1 1920x1080_60.00
xrandr: Failed to get size of gamma for output default
xrandr: cannot find output "VGA-1"
    
por YrPa 24.03.2016 / 11:37

2 respostas

1

Você pode usar xrandr para definir a resolução necessária caso não o faça com xorg:

cvt 1920 1080 60
xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync   #those numbers may vary depending on your screen
xrandr --addmode VGA-1 1920x1080_60.00
xrandr --output VGA-1 --mode 1920x1080_60.00

Para fazer alterações peristantes, você pode adicionar uma linha de modelo ao arquivo xorg ou criar um script bash que será executado no início do sistema.

#!/bin/bash
cvt 1920 1080 60
xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
xrandr --addmode VGA-0 1920x1080_60.00
xrandr --output VGA-0 --mode 1920x1080_60.00

espero que isso ajude

Quanto às dependências não atendidas, você pode tentar desinstalar o driver primeiro, instalando as dependências e depois instalando o driver depois dele.

    
por Arthur Stepanyuk 24.03.2016 / 12:03
1

Eu tive um problema semelhante ao experimentar o Ubuntu 16.04LTS no meu laptop Acer Aspire 5630 com gráficos integrados Intel Mobile 940GM / GMS 943 / 940GML. Eu só consegui atingir a resolução de 1024x768 e o xrandr não detectou gama ou qualquer resolução superior. Depois de tentar muitas sugestões da Internet, simplesmente instalei o pacote xserver-xorg-video-intel e pude então usar a resolução nativa de 1280x800. Ele também curou um problema de inicialização, pois anteriormente eu só podia inicializar usando o modo de recuperação e retomar a inicialização, algumas vezes tendo que reiniciar a inicialização duas vezes.

    
por eianbro 26.04.2016 / 14:50