Problem with my graphic card

Asked by Fariborz Nassermostofi

Hi folks,

i am using ubuntu 15.04. with my new pc the graphic card is not recognized and
i get only the resolution of 1024x768 but should be 1360x768. The graphic card was also not
recognized in 14.10 either.

The output of lspci is:
00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)
00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller (rev 06)
00:14.0 USB controller: Intel Corporation 9 Series Chipset Family USB xHCI Controller
00:16.0 Communication controller: Intel Corporation 9 Series Chipset Family ME Interface #1
00:1a.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #2
00:1b.0 Audio device: Intel Corporation 9 Series Chipset Family HD Audio Controller
00:1c.0 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 1 (rev d0)
00:1c.2 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 3 (rev d0)
00:1c.3 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d0)
00:1d.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #1
00:1f.0 ISA bridge: Intel Corporation 9 Series Chipset Family Z97 LPC Controller
00:1f.2 SATA controller: Intel Corporation 9 Series Chipset Family SATA Controller [AHCI Mode]
00:1f.3 SMBus: Intel Corporation 9 Series Chipset Family SMBus Controller
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 11)
04:00.0 PCI bridge: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge (rev 04)

The display part of output of LSHW is:

       *-display
             description: VGA compatible controller
             product: Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller
             vendor: Intel Corporation
             physical id: 2
             bus info: pci@0000:00:02.0
             version: 06
             width: 64 bits
             clock: 33MHz
             capabilities: vga_controller bus_master cap_list rom
             configuration: driver=i915 latency=0
             resources: irq:29 memory:f7800000-f7bfffff memory:e0000000-efffffff ioport:f000(size=64)

could anyone help me please to find a way to install a proper driver for my graphic card.

thx in advance
Fariborz Nassemostofi

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Fariborz Nassermostofi
Solved:
Last query:
Last reply:
Revision history for this message
michael (yellupcm-gmail) said :
#1
Revision history for this message
Fariborz Nassermostofi (fariborz) said :
#2

hi,

i have followed the instructions on the page:

added the repository using:
sudo add-apt-repository ppa:oibaf/graphics-drivers

updated the repository using
sudo apt-get update

added this part
=== Using alternative drivers ===
To use experimental ilo (intel) gallium driver add this in /etc/X11/xorg.conf:
Section "Device"
 Identifier "Device0"
 Driver "Intel"
 Option "DRI" "ilo"
EndSection

rebooted the system.
i have still the problem that the recognized resolution is: 1024x768

Revision history for this message
Manfred Hampl (m-hampl) said :
#3

From your lshw output:

The display part of output of LSHW is:

product: Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller
configuration: driver=i915

For me that looks as if the correct driver is in use.

Maybe you have the problem that your monitor does not correctly announce the resolutions that it can display.

What is the output of

xrandr --query

(recommended reading: https://wiki.ubuntu.com/X/Config/Resolution )

Revision history for this message
Fariborz Nassermostofi (fariborz) said :
#4

Hi

this is the output of the xrandr --query

Screen 0: minimum 8 x 8, current 1024 x 768, maximum 32767 x 32767
HDMI1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
VGA1 connected primary 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768 60.0*
   800x600 60.3 56.2
   848x480 60.0
   640x480 59.9
VIRTUAL1 disconnected (normal left inverted right x axis y axis)

by the way i also had changed the monitor and used another monitor, which has no problem with resolutions
on another system with the following graphic card
Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller (rev 09)
The result was the same. wa were restricted to 1024x768 resolution

Revision history for this message
Manfred Hampl (m-hampl) said :
#5

The following commands should tell the system about a 1360x768-60Hz resolution and activate it on the VGA1 output

xrandr --newmode 1360x768_60.00 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync
xrandr --addmode VGA1 1360x768_60.00
xrandr --output VGA1 --mode 1360x768_60.00

You might try that.

source: https://answers.launchpad.net/ubuntu/+question/263559

Revision history for this message
Fariborz Nassermostofi (fariborz) said :
#6

Hi,

This did solve my problem on that specific system.
Thx again