Page 1 of 1

installing nvidia driver

Posted: Thu Apr 07, 2016 5:44 pm
by galasrinnion
Yo to all,
I would like to know the way to install the nvidia driver on 10.1. The catch is this : I did not install a bootloader, as I boot GhostBSD from another bootloader, GRUB 2, on another linux distro ? So how will this affect things. I have read the Ghost wiki on nvidia driver installation, and have tried that to no avail. So I believe the difficulty lies in the above bootloader arrangement. Time to Chime ;)

Re: installing nvidia driver

Posted: Fri Apr 08, 2016 5:31 am
by ericbsd

Re: installing nvidia driver

Posted: Fri Apr 08, 2016 3:03 pm
by galasrinnion
ericbsd wrote:Here http://wiki.ghostbsd.org/index.php?titl ... stallation this should help you.
If you read my previous post, I read that and tried it several times, with no luck.
Where it notes in the wiki that you need to add some commands if using grub or bsd bootloader
what if anything needs to be added considering my HD and OS arrangement ?

Re: installing nvidia driver

Posted: Thu Apr 14, 2016 4:54 pm
by galasrinnion
Note:

If you are using GRUB boot loader then you must load driver with rc.conf:
echo 'kld_list="nvidia"' >> /etc/rc.conf
If you are using BSD loader you may use loader.conf:
echo 'nvidia_load="YES"' >> /boot/loader.conf

I have tried both seperately and what happens is it brings me to the login page with the grey background only ! no username or other usual icons are present. So...do you need to skip these added commands : Using this commands add needed lines to corresponding files (pay attention at Note!):

echo 'linux_load="YES"' >> /boot/loader.conf
echo 'linux_enable="YES"' >> /etc/rc.conf
echo 'hint.agp.0.disabled="1"' >> /boot/device.hints; ....when using the above ones ?

Re: installing nvidia driver

Posted: Sat Apr 16, 2016 6:41 am
by ericbsd
if your card is and agp you need that:

Code: Select all

echo 'hint.agp.0.disabled="1"' >> /boot/device.hints
as root user su but if it is PCI do not put that.

Also linux is already setup, if you have grey screen this might be because of something not been setup properly.

Re: installing nvidia driver

Posted: Sun Apr 17, 2016 4:56 pm
by galasrinnion
My card is PCI-express. I hope eliminating a line of agp code works.