Screen resolution error

Cannot change screen resolution. Only 640x480, 800x600 and 1024x768 are available. Vidcontrol returns an empty list of available permissions. I rebuilt the kernel with parameters, installed drivers, set the resolution separately, the result was unsuccessful.
 
Did you add your user to the video group?

Please post the contents of /etc/rc.conf


No, didn't do that.
Code:
clear_tmp_enable="YES"
syslogd_flags="-ss"
sendmail_enable="NONE"
hostname="freebsd"
ifconfig_em0="DHCP"
sshd_enable="YES"
moused_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
zfs_enable="YES"
hald_enable="YES"
dbus_enable="YES"
moused_enable="YES"
linux_enable="YES"
samba_server_enable="NO"
vesa_load="YES"
gdm_enable="YES"
nvidia_load="YES"
 
Last edited by a moderator:
Run pw groupmod video -m <your username> as root.

See

Don't forget to relog your user for the changes to take effect.
 
Remove these. Hald is not used anymore and vesa may prevent your Nvidia driver from loading.

Also, loading the driver should be like this:
kld_list="nvidia-modeset"
Executed the command, everything remained the same. But thanks, now I have no problems with the graphical shell)
 
What graphics card does the machine have? Installing and loading the NVidia driver does very little if you don't have an NVidia card.

Remove all these from rc.conf, they're either wrong or just useless.

Code:
moused_enable="YES"
hald_enable="YES"

moused_enable="YES"

vesa_load="YES"
gdm_enable="YES"
nvidia_load="YES"
You'll want to remove gdm_enable for now too. Configure and test your graphics driver first using startx, once everything is working correctly you can enable GDM again.
 
What graphics card does the machine have? Installing and loading the NVidia driver does very little if you don't have an NVidia card.

Remove all these from rc.conf, they're either wrong or just useless.

Code:
moused_enable="YES"
hald_enable="YES"

moused_enable="YES"

vesa_load="YES"
gdm_enable="YES"
nvidia_load="YES"
You'll want to remove gdm_enable for now too. Configure and test your graphics driver first using startx, once everything is working correctly you can enable GDM again.
Thanks for the help))
 
Back
Top