Oculus Rift
The Oculus Rift is a virtual reality head-mounted display developed by Oculus[dead link 2023-05-07 ⓘ]. This article covers setup for the official Oculus Rift SDK on Linux, which supports DK1 and DK2 only (but not CV1). If you want to use your Oculus Rift CV1 on Linux, you need to use OpenHMD instead.
Installation
Hardware
The Oculus Rift device connects via HDMI as a secondary display to your graphics card, as well as by USB in order to perform as a sensor. The oculus-udevAUR[broken link: package not found] package will setup proper udev rules.
You also need to be in the input
and video
groups to have full permission, plugdev
is no longer necessary (as the mode is set to 0666).
Video Mode
For the Rift to function optimally, only certain video modes work very well. In addition, if you have a cloned video mode in which your ordinary monitor runs at a lower refresh rate, then often games will lock themselves to the lower refresh rate.
The Rift itself needs to be the primary monitor, or synchronization will not work properly.
Manually, using xrandr
Say our primary monitor is DVI-I-2, and DVI-I-3 is the Rift, and that 1152x864 is the highest mode that supports 75Hz. To use this:
xrandr --output DVI-I-3 --primary --rotate left --mode 1080x1920 --rate 75 --auto --output DVI-I-2 --mode 1152x864 --rate 75 --auto --same-as DVI-I-3 --scale-from 1920x1080
Although the Rift SDK reccomends not rotating the secondary display, not doing so seems to cause issues with a number of programs. This command will set the primary monitor to have a scaled version of the entire display. If you prefer panning, change --scale-from
to --panning
.
xrandr --output DVI-I-3 --primary --rotate left --mode 1080x1920 --rate 60 --auto --output DVI-I-2 --mode 1920x1080 --rate 60 --auto --same-as DVI-I-3 --scale-from 1920x1080
The above video modes can have some havoc on your display if you simply use xrandr --auto, as it will still try to scale something. Use this to return to one monitor:
xrandr --output DVI-I-2 --primary --auto --rotate normal --panning 1920x1080 --scale 1x1 --output DVI-I-3 --off
Working applications
See Virtual reality#Supported software.
Troubleshooting
Kernel log spamming by DK2 camera
If you are receiving an enormous amount of messages in the kernel log that look like this:
xhci_hcd 0000:04:00.0: WARN Successful completion on short TX: needs XHCI_TRUST_TX_LENGTH quirk?
this is because the Oculus DK2 Camera has some issues on USB 3.0/Hybrid 2.0/3.0 ports. Try plugging it into a USB 2.0 port.
Camera misbehaving after suspend/resume
If you try to suspend/resume and then use the Rift, the camera will have issues giving positional tracking data, and any VR program you run will have issues with positional tracking. If you try to kill the `ovrd` process, it will simply lock up and become defunct until the parent process (your window manager) is killed. A temporary workaround is to simply unplug and replug the DK2 camera after resuming, which seems to resolve the issue.
Inaccurate latency readings for legacy applications
For some reason, it seems that using ovrd > 0.5.0
with applications compiled against 0.4.4 and below gives a latency reading of many millions of milliseconds (most likely a signed/unsigned change). This means timewarp is always clamped at maximum, and gives a 'swimming' view when using legacy applications. There is not an ideal fix for this yet, although it is possible to install an old version of the SDK and use that instead.
Oculus DK1 not showing as monitor or showing disconnected when running xrandr
Latest NVIDIA Drivers have added an AllowHMD option to specify if a screen should use a HMD device (like the Oculus DK1) as a standard monitor. NVIDIA has set this to NO by default, which causes the DK1 to show as disconnected, causing a lot of confusion. It can be fixed by running:
nvidia-xconfig --allow-hmd=yes
or by manually adding Option "AllowHMD" "yes"
to the Screen section of your /etc/X11/xorg.conf.
Taken from https://forums.oculus.com/developer/discussion/34407/gnu-linux-plans#Comment_566814.