diff options
author | Brad Davis <[email protected]> | 2013-07-03 09:16:03 -0700 |
---|---|---|
committer | Brad Davis <[email protected]> | 2013-07-03 09:16:03 -0700 |
commit | d46694c91c2bec4eb1e282c0c0101e6dab26e082 (patch) | |
tree | eb5fba71edf1aedc0d6af9406881004289433b20 /ConfigurePermissionsAndPackages.sh | |
parent | 7fa8be4bc565adc9911c95c814480cc48bf2d13c (diff) |
SDK 0.2.3
Diffstat (limited to 'ConfigurePermissionsAndPackages.sh')
-rwxr-xr-x | ConfigurePermissionsAndPackages.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ConfigurePermissionsAndPackages.sh b/ConfigurePermissionsAndPackages.sh new file mode 100755 index 0000000..37f7587 --- /dev/null +++ b/ConfigurePermissionsAndPackages.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +############################################################################# +# +# Filename : ConfigurePermissionsAndPackages.sh +# Content : Linux file for installing prerequisite libraries and the +# permissions file for the USB HID device +# Created : 2013 +# Authors : Simon Hallam and Brant Lewis +# Copyright : Copyright 2013 OculusVR, Inc. All Rights Reserved +# Instruction : Ensure that the install.sh has execute permissions. +# Navigate to a command shell, enter: +# +# ./install.sh +# +# Enter the administrator password for sudo access. +# +############################################################################# + +echo "Installing OculusVR Rift udev rules file..." +sudo cp ./LibOVR/90-oculus.rules /lib/udev/rules.d +echo "Installing libudev..." +sudo apt-get install libudev-dev +echo "Installing libext..." +sudo apt-get install libext-dev +echo "Installing mesa-common..." +sudo apt-get install mesa-common-dev +echo "Installing freeglut3..." +sudo apt-get install freeglut3-dev +echo "Installing Xinerama..." +sudo apt-get install libxinerama-dev +echo "Installation complete" + |