Last active
August 29, 2015 14:14
-
-
Save miyagui/179721d7ce72d022b7b5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lsblk to see the USB sdx | |
# dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx && sync | |
Open a CLI and do: | |
sudo nvidia-xconfig | |
Then: | |
sudo nvidia-settings | |
Set your screen resolution and refresh rate in the Xserver settings (I set mine to 1920x1200 @60hz) and save it to xorg.conf | |
Then do: | |
sudo nano /etc/X11/xorg.conf | |
Edit the device section thusly: | |
Section "Device" | |
Identifier "Device0" | |
Driver "nvidia" | |
VendorName "NVIDIA Corporation" | |
BoardName "GeForce GTX 650" | |
Option "RegistryDwords" "PerfLevelSrc=0x2222" | |
Option "TripleBuffer" "True" | |
EndSection | |
This sets the card to performance mode and enables triple buffering. | |
In nvidia-settings/OpenGL set: | |
Sync to Vblank | |
Allow Flipping | |
Use Conformant Texture Clamping | |
Save your configuration and restart the X-server. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment