Difference between revisions of "Nvidia driver installation"

From GhostBSD Wiki
Jump to: navigation, search
(Howto: install Nvidia driver on GhostBSD 10.1)
(pre and list not campatible? let use pre anyway)
Line 3: Line 3:
 
To have an ability to play games or use 3D CAD software you need to install Nvidia driver.
 
To have an ability to play games or use 3D CAD software you need to install Nvidia driver.
  
# Download kernel source code: i386 [ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/10.1-RELEASE/src.txz here] x86_64 [ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/10.1-RELEASE/src.txz here]
+
Download kernel source code: i386 [ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/10.1-RELEASE/src.txz here] x86_64 [ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/10.1-RELEASE/src.txz here]
# Unpack it in '''/usr/src''' directory
+
 
# Update you ports tree: # portsnap fetch update
+
Unpack it in '''/usr/src''' directory
# Get inside needed driver: # cd /usr/ports/x11/nvidia-drivers-304
+
 
# Compile it # make config && make install clean
+
Update you ports tree:  
# Using this commands add needed lines to corresponding files:
+
<pre>
## # echo 'linux_load="YES"' >> /boot/loader.conf
+
# portsnap fetch update
## # echo 'kld_list="nvidia"' >> /etc/rc.conf '''(!) this line is important'''
+
</pre>
## # echo 'linux_enable="YES"' >> /etc/rc.conf
+
Get inside needed driver:
## # echo 'hint.agp.0.disabled="1"' >> /boot/device.hints
+
<pre>
# Install nvidia-xconfig utility and create xorg.conf file with it
+
# cd /usr/ports/x11/nvidia-drivers-304
## # cd /usr/ports/x11/nvidia-xconfig
+
</pre>
## # make install clean
+
Compile it  
## # nvidia-xconfig
+
<pre>
# #reboot
+
# make config
 +
# make install clean
 +
</pre>
 +
Using this commands add needed lines to corresponding files(pay attention at second line!):
 +
<pre>
 +
# echo 'linux_load="YES"' >> /boot/loader.conf
 +
# echo 'kld_list="nvidia"' >> /etc/rc.conf
 +
# echo 'linux_enable="YES"' >> /etc/rc.conf
 +
# echo 'hint.agp.0.disabled="1"' >> /boot/device.hints
 +
</pre>
 +
Install nvidia-xconfig utility and create xorg.conf file with it
 +
<pre>
 +
# cd /usr/ports/x11/nvidia-xconfig
 +
# make install clean
 +
# nvidia-xconfig
 +
</pre>
 +
You can reboot your system now:
 +
<pre>
 +
#reboot
 +
</pre>

Revision as of 11:11, 18 September 2015

Howto: install Nvidia driver on GhostBSD 10.1

To have an ability to play games or use 3D CAD software you need to install Nvidia driver.

Download kernel source code: i386 here x86_64 here

Unpack it in /usr/src directory

Update you ports tree:

# portsnap fetch update

Get inside needed driver:

# cd /usr/ports/x11/nvidia-drivers-304

Compile it

# make config
# make install clean

Using this commands add needed lines to corresponding files(pay attention at second line!):

 
# echo 'linux_load="YES"' >> /boot/loader.conf
# echo 'kld_list="nvidia"' >> /etc/rc.conf
# echo 'linux_enable="YES"' >> /etc/rc.conf
# echo 'hint.agp.0.disabled="1"' >> /boot/device.hints

Install nvidia-xconfig utility and create xorg.conf file with it

# cd /usr/ports/x11/nvidia-xconfig
# make install clean
# nvidia-xconfig

You can reboot your system now:

#reboot