- Edited
Could you please provide detailed information on the linux distribution you are using?
I am currently using Linux Mint 18.1 Cinnamon (64-bit)
That was my fault, it does not do resizing any more.
Getting nvidia drivers to load is a bit of a PITA in linux. In fact, if nouveau is enabled in the kernel, nvidia drivers won't load! You have to disable the nouveau driver by the boot manager (grub) with nvidia drivers installed.
It's strange your terminal isn't opening.. There is a tool called inxi that can show what drivers are enabled.
For example,
$ inxi -G
Graphics: Card: NVIDIA GM107 [GeForce GTX 750 Ti]
Display Server: X.Org 1.18.3 drivers: nvidia (unloaded: fbdev,vesa,nouveau)
Resolution: 1920x1080@60.00hz
GLX Renderer: GeForce GTX 750 Ti/PCIe/SSE2 GLX Version: 4.5.0 NVIDIA 375.26
For disabling the driver, you need to place the below in your /etc/default/grub file and run update-grub (and update-initramfs -k all -c after for good measure)
GRUB_CMDLINE_LINUX_DEFAULT="nouveau.blacklist=1"
Unfortunately, this all doesn't work very well on a live boot since to load graphics drivers, you need to reboot and rebooting erases changes on a live boot!
KM I'm just adding the current "xorg.conf" way of disabling dithering for NVIDIA cards:
That is interesting.