@don570
I found that you have to copy autoconf.h:
Code: Select all
cp -a /usr/src/linux/include/generated/autoconf.h /usr/src/linux/include/linux/
Also requires prefix "CC=gcc"
I got compile errors, which seem to be warnings getting treated as errors. However, downloaded 525.125.06 and that compiled and installed ok. Got it from here:
http://download.nvidia.com/XFree86/Linux-x86_64/
I played around, to see if can install into /opt, here are my notes:
Code: Select all
cp -a /usr/src/linux/include/generated/autoconf.h /usr/src/linux/include/linux/
CC=gcc ./NVIDIA-Linux-x86_64-525.125.06.run --force-selinux=no --run-nvidia-xconfig --expert --opengl-prefix=/opt --utility-prefix=/opt --documentation-prefix=/opt --no-nvidia-modprobe --kernel-name=5.15.135 --no-rpms --no-x-check --no-nouveau-check --no-dkms --no-unified-memory --no-peermem --concurrency-level=1 --skip-depmod --no-systemd --no-questions --ui=none --no-check-for-alternate-installs --no-install-libglvnd --no-kernel-module-source --compat32-libdir=lib32 --compat32-prefix=/opt --no-distro-scripts --glvnd-egl-config-path=/opt/share/glvnd/egl_vendor.d --x-sysconfig-path=/opt/share/X11/xorg.conf.d
#hmmm...
#rm -f /mnt/.easy_rw/mainrw/usr/lib/libGL.so.1
#aufs not configured to change in a layer, so do it like this...
cp -a -f --remove-destination /mnt/.easy_ro/easy_sfs/usr/lib/libGL.so.1 /usr/lib/
ln -s /opt/share/glvnd/egl_vendor.d /usr/share/glvnd/egl_vendor.d
ln -s /opt/share/X11/xorg.conf.d /usr/share/X11/xorg.conf.d
ln -s /opt/lib/libOpenGL.so.0 /opt/lib/libGL.so.1
export PATH="/opt/bin:${PATH}"
export LD_LIBRARY_PATH="/opt/lib"
depmod
You can see exactly what is installed by looking in /mnt/.easy_rw/mainrw, and shutdown without saving to get rid of it.