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
installing nvidia driver
Re: installing nvidia driver
Here http://wiki.ghostbsd.org/index.php?titl ... stallation this should help you.
- galasrinnion
- Posts: 40
- Joined: Tue Oct 28, 2014 12:45 pm
Re: installing nvidia driver
If you read my previous post, I read that and tried it several times, with no luck.ericbsd wrote:Here http://wiki.ghostbsd.org/index.php?titl ... stallation this should help you.
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 ?
- galasrinnion
- Posts: 40
- Joined: Tue Oct 28, 2014 12:45 pm
Re: installing nvidia driver
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 ?
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
if your card is and agp you need that:
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.
Code: Select all
echo 'hint.agp.0.disabled="1"' >> /boot/device.hints
Also linux is already setup, if you have grey screen this might be because of something not been setup properly.
- galasrinnion
- Posts: 40
- Joined: Tue Oct 28, 2014 12:45 pm
Re: installing nvidia driver
My card is PCI-express. I hope eliminating a line of agp code works.