You are not logged in.

#1 2016-03-17 17:47

ThisGuy1996
Member
Registered: 2016-02-02
Posts: 176

Updating drivers

I know I post a lot, but I'm new to Linux and need help. How do I update drivers, such as display and video drivers?

Offline

#2 2016-03-17 19:40

Dai_trying
Member
From: UK
Registered: 2015-12-14
Posts: 2,989

Re: Updating drivers

Are you having issues with your display? I only ask as I don't usually have to "update drivers" kernel updates normally give wider compatibility, but more often than not you will not need to worry about drivers.

Offline

#3 2016-03-17 20:40

ThisGuy1996
Member
Registered: 2016-02-02
Posts: 176

Re: Updating drivers

It displays fine, but with no 3d support.

Offline

#4 2016-03-17 23:11

ThisGuy1996
Member
Registered: 2016-02-02
Posts: 176

Re: Updating drivers

If it helps, I have a Lenovo Thinkpad t60.3d games work just fine, they’re just super laggy.

Last edited by ThisGuy1996 (2016-03-17 23:12)

Offline

#5 2016-03-17 23:21

Dai_trying
Member
From: UK
Registered: 2015-12-14
Posts: 2,989

Re: Updating drivers

Would need to know which graphics you have, it should be one of these according to the spec sheet:-

    Intel Graphics Media Accelerator 950 (Intel 945GM)- integrated graphics chipet
    64MB ATI Mobility RADEON X1300 - discrete graphics chipset
    128MB ATI Mobility RADEON X1400 - discrete graphics chipset
    256MB ATI Mobility FireGL V5200 - discrete graphics chipset
    256MB ATI Mobility FireGL V5250 - discrete graphics chipset

Offline

#6 2016-03-18 04:46

ThisGuy1996
Member
Registered: 2016-02-02
Posts: 176

Re: Updating drivers

@Dai_trying How would I find out what graphics I have?

Offline

#7 2016-03-18 10:14

Dai_trying
Member
From: UK
Registered: 2015-12-14
Posts: 2,989

Re: Updating drivers

You could start by typing an a console

lspci

That will give you some output, and you will be looking for a line something like this

VGA compatible controller: Intel Corporation 4 Series Chipset Integrated Graphics Controller (rev 03)

Obviously it won't match exactly but it's the line that begins VGA

Offline

#8 2016-03-18 11:48

Rademes
Member
From: Latvia
Registered: 2015-12-13
Posts: 636

Re: Updating drivers

crosscourt wrote:

You can use an app thats in the repository called hardinfo if you want to quickly see all your hardware.

Installed hardinfo, clicked on "Sensors", It loaded my CPU to 100% and stayed in such state for about 5 minutes until I killed its process. Maybe it was because of running Psensor, but I removed hardinfo.
Update: Or maybe because I am using DrWeb Antivirus.

Last edited by Rademes (2016-03-18 11:49)


Before asking for help please read this topic: https://www.q4os.org/forum/viewtopic.php?id=3502   If you have problems with WiFi network, try to install the Network Manager using Q4OS Software Centre.

Offline

#9 2016-03-18 12:07

Dai_trying
Member
From: UK
Registered: 2015-12-14
Posts: 2,989

Re: Updating drivers

Personally I like the command line tool lshw, it gives a great deal of hardware information and can output to either screen, html, json or xml and be used in a variety of ways. But I'm a fan of cli big_smile

Offline

#10 2016-03-18 15:21

ThisGuy1996
Member
Registered: 2016-02-02
Posts: 176

Re: Updating drivers

Okay I typed in "lspci". I got:

VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)

Offline

#11 2016-03-18 15:33

Dai_trying
Member
From: UK
Registered: 2015-12-14
Posts: 2,989

Re: Updating drivers

That looks like bad news then I'm afraid

crosscourt wrote:

None of those graphics choices are great performers and even if 3d is enabled performance isnt going to be very good, particularly with the Intel IGP 950.

Offline

#12 2016-03-18 15:50

ThisGuy1996
Member
Registered: 2016-02-02
Posts: 176

Re: Updating drivers

What can I do?

Offline

#13 2016-03-18 16:10

Dai_trying
Member
From: UK
Registered: 2015-12-14
Posts: 2,989

Re: Updating drivers

I found this thread http://www.linuxquestions.org/questions … 175490051/  It's more related to linux mint but as it's all debian based it might work for you, read it through first before trying (3 pages) and if you need more help post back and we will try and walk you through it.

Offline

#14 2016-03-18 17:02

ThisGuy1996
Member
Registered: 2016-02-02
Posts: 176

Re: Updating drivers

As much as I want too, I don't have the experience to buy and install new hardware

Offline

#15 2016-03-18 18:30

bobby
Member
From: Nevada, USA
Registered: 2015-12-24
Posts: 459
Website

Re: Updating drivers

UPDATE: See No. 21 below.

@cc

It appears (at least on x64) that a library is not correctly linked for hardinfo to run properly.  It failed when I tried to generate an html report on my x64 intel laptop with this error

sh: 1: /lib/libc.so.6: not found

does a symlink need to be created ?

Last edited by bobby (2016-03-18 18:45)


No Longer Using Q4OS

Offline

#16 2016-03-18 18:42

bobby
Member
From: Nevada, USA
Registered: 2015-12-24
Posts: 459
Website

Re: Updating drivers

I created this symlink for libc.so.6 on Q4OS x64 and hardinfo still not generating html report, just hangs

sudo ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib/libc.so.6

Could be this darn emachines laptop (problem child from time to time), Anyone else have this issue ? on x64 computer ?


No Longer Using Q4OS

Offline

#17 2016-03-18 18:53

bobby
Member
From: Nevada, USA
Registered: 2015-12-24
Posts: 459
Website

Re: Updating drivers

hardinfo crashes on the Benchmark tests (not all - not sure which one)

This command creates a symlink to fix the not found error for libc.so.6 but, I it may not be related to benchmark crash when generating a html report

sudo ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib/libc.so.6

Last edited by bobby (2016-03-18 18:54)


No Longer Using Q4OS

Offline

#18 2016-03-18 20:51

Dai_trying
Member
From: UK
Registered: 2015-12-14
Posts: 2,989

Re: Updating drivers

@ThisGuy1996
Have you checked if 3d rendering is enabled? type into a console

glxinfo | grep OpenGL

If that command fails you will need to

sudo apt-get install mesa-utils

which is just a few utilities for checking 3d info. But my quess at this time would be the newer games are just too much for the thinkpad...

Last edited by Dai_trying (2016-03-18 20:51)

Offline

Board footer

Powered by FluxBB