Configure Xorg on Acer Aspire 7530g

Hello, so I'm just new on FreeBSD and I would like to configure Xorg on my machine since I don't know how to do it. I have a Nvidia Geforce 9400m hybrid SLI 256mb and a AMD Athlon X2. I tried on Linux to configure nvidia-340 but I came back with no luck, so I hope there is a way to make it work on FreeBSD.
 
i would like to configure xorg on my machine since i don't know how to do it.
Handbook: 5.4. Xorg Configuration

You will need to use x11/nvidia-driver-340 for the Geforce 9400 card. Install that driver and add kld_list="nvidia-modeset" to /etc/rc.conf. Then create an /usr/local/etc/X11/xorg.conf.d/drivers-nvidia.conf:
Code:
Section "Device"
        Identifier "Card0"
        Driver     "nvidia"
EndSection
 
Back
Top