How To Install qcvm on Fedora 36

In this tutorial we learn how to install qcvm in Fedora 36. qcvm is Standalone QuakeC VM binary executor

Introduction

In this tutorial we learn how to install qcvm on Fedora 36.

What is qcvm

Executor for QuakeC VM binary files created using a QC compiler such as gmqcc or fteqcc. It provides a small set of built-in functions, and by default executes the main function if there is one. Some options useful for debugging are available as well.

We can use yum or dnf to install qcvm on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install qcvm.

Install qcvm on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install qcvm using dnf by running the following command:

sudo dnf -y install qcvm

Install qcvm on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install qcvm using yum by running the following command:

sudo yum -y install qcvm

How To Uninstall qcvm on Fedora 36

To uninstall only the qcvm package we can use the following command:

sudo dnf remove qcvm

qcvm Package Contents on Fedora 36

/usr/bin/qcvm
/usr/lib/.build-id
/usr/lib/.build-id/b0
/usr/lib/.build-id/b0/b54f933721c2665c9db08053f1d90a197e8796
/usr/share/doc/qcvm
/usr/share/doc/qcvm/AUTHORS
/usr/share/doc/qcvm/CHANGES
/usr/share/doc/qcvm/README
/usr/share/doc/qcvm/TODO
/usr/share/licenses/qcvm
/usr/share/licenses/qcvm/LICENSE
/usr/share/man/man1/qcvm.1.gz

References

Summary

In this tutorial we learn how to install qcvm on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).