How To Install openxr on Fedora 34
Introduction
In this tutorial we learn how to install openxr
on Fedora 34.
What is openxr
OpenXR is an API specification for writing portable, cross-platform, virtual reality (VR) and augmented reality (AR) software.
We can use yum
or dnf
to install openxr
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install openxr.
Install openxr on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install openxr
using dnf
by running the following command:
sudo dnf -y install openxr
Install openxr on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install openxr
using yum
by running the following command:
sudo yum -y install openxr
How To Uninstall openxr on Fedora 34
To uninstall only the openxr
package we can use the following command:
sudo dnf remove openxr
openxr Package Contents on Fedora 34
/usr/bin/hello_xr
/usr/bin/openxr_runtime_list
/usr/lib/.build-id
/usr/lib/.build-id/0b
/usr/lib/.build-id/0b/8c7d06ba03c15bb5bd943c6dce062b5bce077c
/usr/lib/.build-id/7e
/usr/lib/.build-id/7e/a19b980fd9f75a0a1f9626f34fc4a4731d9f63
/usr/share/doc/openxr
/usr/share/doc/openxr/BUILDING.md
/usr/share/doc/openxr/CHANGELOG.SDK.md
/usr/share/doc/openxr/LICENSE
/usr/share/doc/openxr/README.md
/usr/share/licenses/openxr
/usr/share/licenses/openxr/LICENSE
/usr/share/man/man1/hello_xr.1.gz
/usr/share/man/man1/openxr_runtime_list.1.gz
/usr/share/openxr
/usr/share/openxr/1
/usr/share/openxr/1/api_layers
/usr/share/openxr/1/api_layers/explicit.d
/usr/share/openxr/1/api_layers/explicit.d/XrApiLayer_api_dump.json
/usr/share/openxr/1/api_layers/explicit.d/XrApiLayer_core_validation.json
/usr/bin/hello_xr
/usr/bin/openxr_runtime_list
/usr/lib/.build-id
/usr/lib/.build-id/3c
/usr/lib/.build-id/3c/091a017bbb40fa09e97e0a30375e27d2171531
/usr/lib/.build-id/b2
/usr/lib/.build-id/b2/bed333ee8399f7896f26d7a9bb61136d1a4b3d
/usr/share/doc/openxr
/usr/share/doc/openxr/CHANGELOG.SDK.md
/usr/share/doc/openxr/LICENSE
/usr/share/doc/openxr/README.md
/usr/share/licenses/openxr
/usr/share/licenses/openxr/LICENSE
/usr/share/man/man1/hello_xr.1.gz
/usr/share/man/man1/openxr_runtime_list.1.gz
/usr/share/openxr
/usr/share/openxr/1
/usr/share/openxr/1/api_layers
/usr/share/openxr/1/api_layers/explicit.d
/usr/share/openxr/1/api_layers/explicit.d/XrApiLayer_api_dump.json
/usr/share/openxr/1/api_layers/explicit.d/XrApiLayer_core_validation.json
References
Summary
In this tutorial we learn how to install openxr
on Fedora 34 using yum and dnf.