Difference between revisions of "Nvidia driver installation"
(→Install using package manager) |
(→Install using ports) |
||
Line 9: | Line 9: | ||
Download the GhostBSD 11.1 kernel source code for [ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/11.1-RELEASE/src.txz i386] or [ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/11.1-RELEASE/src.txz x86_64]. | Download the GhostBSD 11.1 kernel source code for [ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/11.1-RELEASE/src.txz i386] or [ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/11.1-RELEASE/src.txz x86_64]. | ||
− | Download the GhostBSD | + | Download the GhostBSD 19.09 kernel source code for [ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/12.0-RELEASE/src.txz i386] or [ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/12.0-RELEASE/src.txz x86_64]. |
Revision as of 02:55, 2 October 2019
To play games or use 3D CAD software you need to install Nvidia driver.
Install using ports
Download the GhostBSD 10.3 kernel source code for i386 or x86_64.
Download the GhostBSD 11.0 kernel source code for i386 or x86_64.
Download the GhostBSD 11.1 kernel source code for i386 or x86_64.
Download the GhostBSD 19.09 kernel source code for i386 or x86_64.
Unpack it in the directory /usr/src.
Update you ports tree:
-
portsnap fetch update
Get inside needed driver (ex. nvidia-drivers-340):
-
cd /usr/ports/x11/nvidia-drivers-340
Compile it
-
make install clean
Install nvidia-xconfig utility and create xorg.conf file with it
-
cd /usr/ports/x11/nvidia-xconfig
-
make install clean
-
nvidia-xconfig
Install using package manager
First you should search for available drivers packages:
-
pkg search nvidia
you will get something like this:
nvidia-driver-390.87_3 NVidia graphics card binary drivers for hardware OpenGL rendering nvidia-driver-304-304.137_4 NVidia graphics card binary drivers for hardware OpenGL rendering nvidia-driver-340-340.107_4 NVidia graphics card binary drivers for hardware OpenGL rendering nvidia-settings-430.14 Display Control Panel for X NVidia driver nvidia-texture-tools-2.0.8.1_13 Texture Tools with support for DirectX 10 texture formats nvidia-xconfig-430.14 Tool to manipulate X configuration files for the NVidia driver nvidia_gpu_prometheus_exporter-g20181028 NVIDIA GPU Prometheus exporter
Now choose driver and install it:
-
pkg install nvidia-driver-340-340.107_4
If you want to install the latest nvidia driver just enter:
-
pkg install nvidia-driver
this will install driver version 390.87_3 but there is a slightly different step needed to set it up for GhostBSD. See next section below.
Also we need to install two additional packages:
-
pkg install nvidia-settings
-
pkg install nvidia-xconfig
Setting up GhostBSD to use nvidia
If you use and AGP nvidia card run the next command.
-
echo 'hint.agp.0.disabled="1"' >> /boot/device.hints
Note:
|
Make X configuration file with nvidia-xconfig utility:
-
nvidia-xconfig
You can reboot your system now:
-
reboot