How To Install workspace on Fedora 34

workspace is A tool to create scratch directories by users with an expiration date

Introduction

In this tutorial we learn how to install workspace on Fedora 34.

What is workspace

A workspace is a directory, with an associated expiration date, created on behalf of a user, to prevent disks from uncontrolled filling. The project provides user and admin tools to manage those directories.

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

Install workspace 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 workspace using dnf by running the following command:

sudo dnf -y install workspace

Install workspace 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 workspace using yum by running the following command:

sudo yum -y install workspace

How To Uninstall workspace on Fedora 34

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

sudo dnf remove workspace

workspace Package Contents on Fedora 34

/usr/bin/ws_allocate
/usr/bin/ws_extend
/usr/bin/ws_find
/usr/bin/ws_list
/usr/bin/ws_register
/usr/bin/ws_release
/usr/bin/ws_restore
/usr/bin/ws_send_ical
/usr/lib/.build-id
/usr/lib/.build-id/20
/usr/lib/.build-id/20/6c9675119fef613b4c9f899b416b59e71fca68
/usr/lib/.build-id/76
/usr/lib/.build-id/76/699cd7b270c1f3164452cbaa0f4bd3b144d601
/usr/lib/.build-id/e4
/usr/lib/.build-id/e4/0b0a758c6a9f9d4ac57eb2aa60b781bea9464f
/usr/sbin/ws_expirer
/usr/sbin/ws_prepare
/usr/sbin/ws_restore
/usr/sbin/ws_validate_config
/usr/share/doc/workspace
/usr/share/doc/workspace/README.md
/usr/share/doc/workspace/admin-guide.md
/usr/share/doc/workspace/user-guide.md
/usr/share/doc/workspace/ws.conf
/usr/share/doc/workspace/ws.conf_full_sample
/usr/share/licenses/workspace
/usr/share/licenses/workspace/LICENSE
/usr/share/man/man1/ws_allocate.1.gz
/usr/share/man/man1/ws_extend.1.gz
/usr/share/man/man1/ws_find.1.gz
/usr/share/man/man1/ws_list.1.gz
/usr/share/man/man1/ws_register.1.gz
/usr/share/man/man1/ws_release.1.gz
/usr/share/man/man1/ws_restore.1.gz
/usr/share/man/man1/ws_send_ical.1.gz

References

Summary

In this tutorial we learn how to install workspace on Fedora 34 using yum and dnf.