LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Manjaro
User Name
Password
Manjaro This forum is for the discussion of Manjaro Linux. Note: This forum does not have any official participation.

Notices


Reply
  Search this Thread
Old 03-26-2019, 03:41 PM   #1
JustSomeGeek
LQ Newbie
 
Registered: Nov 2018
Posts: 24

Rep: Reputation: Disabled
Legacy NVidia (GF Go 7300) driver installation?


I've slapped Manjaro x64 Cinnamon on one of our old laptops, which runs fine, apart from the sluggish graphics/video. Even the mouse pointer in Kodi is stuttering badly.

(It had Mint on before that, but wasn't updated for a long time, so i didn't have this issue when it was installed with that.)

If i've understood it correctly, I need to install the NVidia 304xx driver, but I can only do this if I downgrade XOrg to v1.19?

Any major downsides to this?
 
Old 03-26-2019, 11:09 PM   #2
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Maybe you don't need proprietary software. Is KMS DDX usage being blocked by a boot configuration carryover from the installation process?
Code:
cat /proc/cmdline
Which DDX is currently in use? (run in xterm or equivalent for complete output)
Code:
inxi -Gxx
Please wrap these commands' output in code tags. ([ # ] icon above the input window)
 
Old 03-27-2019, 10:43 AM   #3
JustSomeGeek
LQ Newbie
 
Registered: Nov 2018
Posts: 24

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by mrmazda View Post
Maybe you don't need proprietary software. Is KMS DDX usage being blocked by a boot configuration carryover from the installation process?
Code:
cat /proc/cmdline
Which DDX is currently in use? (run in xterm or equivalent for complete output)
Code:
inxi -Gxx
Please wrap these commands' output in code tags. ([ # ] icon above the input window)



cat /proc/cmdline
Code:
BOOT_IMAGE=/vmlinuz-5.0-x86_64 root=UUID=379a6204-fdfd-46a5-bc8a-9774abb64be7 rw quiet rd.udev.log-priority=3
inxi -Gxx
Code:
Graphics:  Device-1: NVIDIA G72M [Quadro NVS 110M/GeForce Go 7300] vendor: Toshiba America Info Systems
           driver: nouveau v: kernel bus ID: 01:00.0 chip ID: 10de:01d7
           Display: tty server: X.org 1.20.4 driver: nouveau unloaded: modesetting alternate: fbdev,nv,vesa
           tty: 117x27
           Message: Advanced graphics data unavailable in console. Try -G --display
inxi -G --display
Code:
Graphics:  Device-1: NVIDIA G72M [Quadro NVS 110M/GeForce Go 7300] driver: nouveau v: kernel
           Display: tty server: X.org 1.20.4 driver: nouveau unloaded: modesetting tty: 117x27
           Message: No advanced graphics data found on this system.

Will look up what a KMS DDX is now. Thanks!
 
Old 03-27-2019, 11:17 AM   #4
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Two kinds of nouveau drivers exist: 1-kernel (provides modesetting service, nicknamed KMS); 2-X. DDX is the X driver (which utilizes KMS). DDX is the driver inxi lists following the server version.

Your NVidia GPU is currently utilizing the Nouveau DDX. Before trying to install the legacy NVidia driver, give the Modesetting DDX a try by uninstalling the package that provides the Nouveau DDX. The X server package includes the Modesetting DDX, which should be automagically be utilized in the absence of availability of the Nouveau DDX.
 
Old 03-27-2019, 11:22 AM   #5
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Quote:
Originally Posted by JustSomeGeek View Post
Message: Advanced graphics data unavailable in console. Try -G --display
This is suggesting to run inxi in an X session (e.g. Xterm) instead of a vtty. It cannot determine the upper layers of graphics drivers X uses when X is not running.
 
Old 03-27-2019, 12:39 PM   #6
JustSomeGeek
LQ Newbie
 
Registered: Nov 2018
Posts: 24

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by mrmazda View Post
Two kinds of nouveau drivers exist: 1-kernel (provides modesetting service, nicknamed KMS); 2-X. DDX is the X driver (which utilizes KMS). DDX is the driver inxi lists following the server version.

Your NVidia GPU is currently utilizing the Nouveau DDX. Before trying to install the legacy NVidia driver, give the Modesetting DDX a try by uninstalling the package that provides the Nouveau DDX. The X server package includes the Modesetting DDX, which should be automagically be utilized in the absence of availability of the Nouveau DDX.
OK, did that and confirmed using inxi Gxx on the laptop, but still seems like really awful performance. eg mouse pointer in Kodi is very stuttery, playback of a 720p video in VLC drops a lot of frames etc. The desktop pointer is fine and all seems responsive enough. But it's really not usable as it is, let alone once I start putting a few games on it.

Any other tweaks to try before I try the NVidia drivers route?
 
Old 03-27-2019, 01:35 PM   #7
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Quote:
Originally Posted by JustSomeGeek View Post
Any other tweaks to try before I try the NVidia drivers route?
I'm not a Manjaro user, so have no specific suggestions to make without more info. How old is that "old laptop"? It might be the proprietary driver is your only hope. Post
Code:
inxi -b
and perhaps someone will have other suggestion(s) to make.

Last edited by mrmazda; 03-27-2019 at 01:42 PM.
 
Old 03-27-2019, 01:55 PM   #8
JustSomeGeek
LQ Newbie
 
Registered: Nov 2018
Posts: 24

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by mrmazda View Post
I'm not a Manjaro user, so have no specific suggestions to make without more info. How old is that "old laptop"? It might be the proprietary driver is your only hope. Post
Code:
inxi -b
and perhaps someone will have other suggestion(s) to make.
inxi -b
Code:
System:    Host: LAP-A100 Kernel: 5.0.3-1-MANJARO x86_64 bits: 64 Console: tty 1 Distro: Manjaro Linux
Machine:   Type: Other-vm? System: TOSHIBA product: Satellite A100 v: PSAARE-05P02JAV serial: <root required>
           Mobo: Intel model: CAPELL VALLEY(NAPA) CRB serial: <root required> BIOS: Phoenix v: 6.00
           date: 07/12/2007
Battery:   ID-1: BAT0 charge: 982.3 Wh condition: 982.2/982.2 Wh (100%)
CPU:       Dual Core: Intel Core2 T5200 type: MCP speed: 920 MHz min/max: 800/1600 MHz
Graphics:  Device-1: NVIDIA G72M [Quadro NVS 110M/GeForce Go 7300] driver: nouveau v: kernel
           Display: tty server: X.org 1.20.4 driver: modesetting tty: 117x27
           Message: Advanced graphics data unavailable in console. Try -G --display
Network:   Device-1: Intel PRO/Wireless 3945ABG [Golan] Network driver: iwl3945
           Device-2: Intel PRO/100 VE Network driver: e100
Drives:    Local Storage: total: 186.31 GiB used: 7.53 GiB (4.0%)
Info:      Processes: 183 Uptime: 1h 29m Memory: 1.94 GiB used: 1.39 GiB (71.4%) Init: systemd Shell: bash
           inxi: 3.0.32

She's getting on a bit now. Probably at least 11 years old. But I hate waste, and we've had many good old school LAN parties, so i'm not willing to give up on her yet :-)
 
Old 03-27-2019, 02:19 PM   #9
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
When you run inxi in console instead of X it can't provide all the desired info. I neglected to have you add the m switch. Please using code tags paste output from
Code:
inxi -bm
run from within X.
 
Old 03-28-2019, 02:57 AM   #10
JustSomeGeek
LQ Newbie
 
Registered: Nov 2018
Posts: 24

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by mrmazda View Post
When you run inxi in console instead of X it can't provide all the desired info. I neglected to have you add the m switch. Please using code tags paste output from
Code:
inxi -bm
run from within X.

Code:
System:
  Host: LAP-A100 Kernel: 5.0.3-1-MANJARO x86_64 bits: 64 
  Desktop: Cinnamon 4.0.9 Distro: Manjaro Linux 
Machine:
  Type: Other-vm? System: TOSHIBA product: Satellite A100 v: PSAARE-05P02JAV 
  serial:  
  Mobo: Intel model: CAPELL VALLEY(NAPA) CRB serial: N/A BIOS: Phoenix 
  v: 6.00 date: 07/12/2007 
Battery:
  ID-1: BAT0 charge: 982.3 Wh condition: 982.2/982.2 Wh (100%) 
Memory:
  RAM: total: 1.94 GiB used: 1.15 GiB (59.3%) 
  Array-1: capacity: 2 GiB slots: 2 EC: None 
  Device-1: M1 size: 1 GiB speed: 533 MT/s 
  Device-2: M2 size: 1 GiB speed: 533 MT/s 
CPU:
  Dual Core: Intel Core2 T5200 type: MCP speed: 931 MHz 
  min/max: 800/1600 MHz 
Graphics:
  Device-1: NVIDIA G72M [Quadro NVS 110M/GeForce Go 7300] driver: nouveau 
  v: kernel 
  Display: server: X.Org 1.20.4 driver: modesetting 
  resolution: 1280x800~60Hz 
  OpenGL: renderer: NV46 v: 2.1 Mesa 18.3.4 
Network:
  Device-1: Intel PRO/Wireless 3945ABG [Golan] Network driver: iwl3945 
  Device-2: Intel PRO/100 VE Network driver: e100 
Drives:
  Local Storage: total: 186.31 GiB used: 7.67 GiB (4.1%) 
Info:
  Processes: 157 Uptime: 9m Shell: bash inxi: 3.0.32

Last edited by JustSomeGeek; 03-28-2019 at 03:02 AM.
 
Old 03-28-2019, 12:09 PM   #11
JustSomeGeek
LQ Newbie
 
Registered: Nov 2018
Posts: 24

Original Poster
Rep: Reputation: Disabled
I've marked this as solved now. Purely because there seem to be other issues that have cropped up now with the system hanging and becoming unresponsive in use, so i'll be trying other things first, as it may not be the graphics alone that are at fault. But many thanks for all the info, especially on the modesetting!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Installed newest NVIDIA driver (for Ge 7300) and my screen resolution is wrong savagehobo Linux - Newbie 5 03-18-2008 11:25 PM
Monitor resolution problem + nVidia 7300 LE graphics cars ayesha kalra Linux - Hardware 1 05-26-2007 10:01 PM
Swiching from Nvidia chipset to Nvidia 7300 GE PCIe echat Linux - Hardware 0 02-16-2007 11:12 AM
how do I optimize my geforce 7300 nvidia card? sleekmason Linux - General 2 12-02-2006 03:16 PM
Installed Easy Ubuntu but have problems w/ Nvidia PCI-E 7300 GS and No sound. Edizzle Ubuntu 2 07-12-2006 05:11 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Manjaro

All times are GMT -5. The time now is 08:51 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration