-
Notifications
You must be signed in to change notification settings - Fork 0
Home
rhiskey edited this page Mar 4, 2023
·
1 revision
Welcome to the VR-in-Linux-Ubuntu-manual wiki!
How to run VR projects (Unity) in Ubuntu
First things first:
$ sudo apt-get install libusb-dev libudev-dev libxinerama-dev libxrandr-dev
$ sudo apt-get install adb
Run all commands with sudo (important). Change ${YOUR_USER_NAME}
to your linux account name (admin)
$ sudo useradd -aG plugdev ${YOUR_USER_NAME}
$ sudo nano /etc/udev/rules.d/50-oculus.rules
## 5etc/udev/rules.d/50-oculus.rules
SUBSYSTEM="usb", ATTR{idVendor}=="2833", ATTR{idProduct}=="0186", MODE="0660" group="plugdev", symlink+="ocuquest%n"
$ sudo udevadm control --reload-rules
$ sudo adb kill-server
$ sudo adb start-server
$ sudo adb devices
Successfull output should be like this:
List of devices attached
1WWWAAAFFFF device
Optional: install Steam VR via deb package https://store.steampowered.com/about/ or terminal:
$ sudo apt update
$ sudo apt install steam
Optional: install SideQuest https://github.com/SideQuestVR/SideQuest/releases It can link your HMD via WIFI - very helpful feature
$ wget https://github.com/SideQuestVR/SideQuest/releases/download/v0.10.33/SideQuest-0.10.33.tar.xz
$ tar -xvf SideQuest-0.10.33.tar.xz
$ cd SideQuest-0.10.33
$ ./sidequest
Useful links:
- Monado (OpenXR free open-source alternative): https://gitlab.freedesktop.org/monado/monado
- ALVR: https://github.com/alvr-org/alvr