@bigpup
It seems (in some cases) the installation of nvidia drivers >= 530 may fail due to the non-portable usage of tr
in the nvidia conftest.sh script. Specifically, the Puppy busybox tr command does not support the non-portable tr command line in conftest.sh -- and the compilation of the nvidia driver fails.
https://github.com/NVIDIA/open-gpu-kern ... s/pull/609
I tried the following in BW64 10.0.7:
Code: Select all
apt update && apt install libgtk3-perl
apt install nvidia-driver
This downloaded nvidia 535.183.01 source files to /var/lib/dkms/nvidia-current/535.183.01/build
The subsequent auto-compilation proceeded for several minutes then failed with conftest
errors (shown in make.log).
Then I edited /var/lib/dkms/nvidia-current/535.183.01/build/conftest.sh
(as follows):
Go to line 67 and replace the non-portable tr command with the comparable awk command.
Specifically, replace line 67
Code: Select all
file_define=NV_`echo $file | tr '/.\-a-z' '___A-Z'`_PRESENT
with
Code: Select all
file_define=NV_`echo $file | awk '{ gsub(/\.|\/|-/, "_", $1); print toupper($0) }'`_PRESENT
Then in a terminal:
Code: Select all
cd /var/lib/dkms/nvidia-current/535.183.01/build
make
At this point, the nvidia 535.183.01 drivers compile without error.
My laptops have intel video so I can't test the generated output, but maybe you could test the above guidelines.