You are not logged in.

#1 2022-05-02 09:25:22

damienmarsic
Member
Registered: 2021-07-02
Posts: 21

[SOLVED] Nvidia GT730 no longer works

I have a GT730. I had been using the nvidia-390xx driver for a long time without problem, except that from time to time I had to remove it and reinstall it. Today it's no longer working. I removed and reinstalled several times, and I can still not get into graphics mode. I tried the nouveau driver (which used to work imperfectly), it does not work either. I also tried the regular nvidia driver (which never worked) with no success either. I finally downloaded the appropriate driver directly from the nvidia web site, and wwhen trying to install I get the following message:

ERROR: An error occurred while performing the step: "Building kernel modules". See /var/log/nvidia-installer.log for details.

The log file shows multiple times:

fatal error: stddef.h: No such file or directory

Last edited by damienmarsic (2022-05-02 15:05:17)

Offline

#2 2022-05-02 12:26:28

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,245

Re: [SOLVED] Nvidia GT730 no longer works

I finally downloaded the appropriate driver directly from the nvidia web site

Don't.

Today it's no longer working. I removed and reinstalled several times, and I can still not get into graphics mode.

Instead upload the journal for such boot (where you'd expect the 390xx driver to work but it doesn't)

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Also check "dkms status" and compare the running kernel version (uname -a)

Offline

#3 2022-05-02 12:45:03

yoshi3
Member
Registered: 2021-10-08
Posts: 23

Re: [SOLVED] Nvidia GT730 no longer works

damienmarsic wrote:

I have a GT730. I had been using the nvidia-390xx driver for a long time without problem, except that from time to time I had to remove it and reinstall it. Today it's no longer working. I removed and reinstalled several times, and I can still not get into graphics mode. I tried the nouveau driver (which used to work imperfectly), it does not work either. I also tried the regular nvidia driver (which never worked) with no success either. I finally downloaded the appropriate driver directly from the nvidia web site, and wwhen trying to install I get the following message:

ERROR: An error occurred while performing the step: "Building kernel modules". See /var/log/nvidia-installer.log for details.

The log file shows multiple times:

fatal error: stddef.h: No such file or directory


maybe 470xxx will help (which is especially for the GT730) ?

https://aur.archlinux.org/packages/nvidia-470xx-dkms

Offline

#4 2022-05-02 12:49:08

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,300

Re: [SOLVED] Nvidia GT730 no longer works

Depends on which GT730 there are multiple variations of that  and there is one that is not Kepler and only supported by 390xx

Offline

#5 2022-05-02 13:57:49

damienmarsic
Member
Registered: 2021-07-02
Posts: 21

Re: [SOLVED] Nvidia GT730 no longer works

Instead upload the journal for such boot (where you'd expect the 390xx driver to work but it doesn't)

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Also check "dkms status" and compare the running kernel version (uname -a)

The first command does not work (blank screen doing nothing) unless I remove the part after -b. The error messages about nvidia are:

(EE) NVIDIA: Failed to initialize the NVIDIA kernel module.
(EE) No devices detected.
Fatal server error:
(EE) no screens found(EE)

The command dkms status does not generate anything.

uname -a: Linux archlinux 5.17.5-arch1-1

Offline

#6 2022-05-02 14:02:16

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,300

Re: [SOLVED] Nvidia GT730 no longer works

how long did you wait for the journalctl command to complete? Are you using some non-default shell? Can you reach 0x0.st with e.g. a ping? If you can't access snippet sharing sites, can you copy on paste the journalctl -b output (use xclip or disable the pager with --no-pager) here?

FWIW if dkms status does not give you output, are you literally reinstalling the nvidia-390xx package manually everytime? You can alleviate that by just installing nvidia-390xx-dkms which will take care of rebuilds whenever the kernel updates.

Post the output of

pacman -Qs 'nvidia|linux.*headers'

as well.

Last edited by V1del (2022-05-02 14:06:57)

Offline

#7 2022-05-02 14:05:24

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,245

Re: [SOLVED] Nvidia GT730 no longer works

(EE) NVIDIA: Failed to initialize the NVIDIA kernel module.

suggest that the dkms status will tell you that there's no module for the 5.17.5 kernel?

Offline

#8 2022-05-02 14:10:16

damienmarsic
Member
Registered: 2021-07-02
Posts: 21

Re: [SOLVED] Nvidia GT730 no longer works

sudo journalctl -b | curl -F 'file=@-' 0x0.st
Process 19 stopped
* thread #1: tid = 19, 0x00007f2b6e0688b0, name = 'fhost'
    frame #0:
Process 19 stopped
* thread #8: tid = 19, 0x00007f2b21752670 fhost`get(path='/0AVh.txt') + 27 at fhost.c:139, name = 'fhost/responder', stop reason = invalid address (fault address: 0x30)
    frame #0: 0x00007f2b21752670 fhost`get(path='/0AVh.txt') + 27 at fhost.c:139
   136   get(SrvContext *ctx, const char *path)
   137   {
   138       StoredObj *obj = ctx->store->query(shurl_debase(path));
-> 139       switch (obj->type) {
   140           case ObjTypeFile:
   141               ctx->serve_file_id(obj->id);
   142               break;
(lldb) q

Offline

#9 2022-05-02 14:21:35

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,245

Re: [SOLVED] Nvidia GT730 no longer works

https://github.com/m-ab-s/media-autobui … ssues/1429
My best guess is that the journal is toolong™ and you're hitting some quota.

Try "sudo dmesg | curl -F 'file=@-' 0x0.st" but it's already very likely that you failed to build an kernel module, so elaborate on how you approach this and maybe whether there was some error in that process which you have ignored.

Offline

#10 2022-05-02 14:29:52

damienmarsic
Member
Registered: 2021-07-02
Posts: 21

Re: [SOLVED] Nvidia GT730 no longer works

yoshi3 wrote:

maybe 470xxx will help (which is especially for the GT730) ?

https://aur.archlinux.org/packages/nvidia-470xx-dkms

Thanks! That worked, surprisingly, as my GT730 is F, not K, and according to nvidia requires the 390xx driver.

Offline

#11 2022-05-02 14:34:17

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,300

Re: [SOLVED] Nvidia GT730 no longer works

470xx will normally plainly refuse to run on older than K. So either you are mistaken about that F not K or you have a very weird franken setup now.

Offline

#12 2022-05-02 15:27:49

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,245

Re: [SOLVED] Nvidia GT730 no longer works

=> "lspci -k" & "dmesg", please.

Offline

Board footer

Powered by FluxBB