How To Install boinc-screensaver on Ubuntu 20.04

In this tutorial we learn how to install boinc-screensaver on Ubuntu 20.04. boinc-screensaver is screen saver auto-controlling volunteer computing

Introduction

In this tutorial we learn how to install boinc-screensaver on Ubuntu 20.04.

What is boinc-screensaver

boinc-screensaver is:

The Berkeley Open Infrastructure for Network Computing (BOINC) is a software platform for distributed computing: several initiatives of various scientific disciplines all compete for the idle time of desktop computers. The developers’ web site at the University of Berkeley serves as a common portal to the otherwise independently run projects.

The BOINC client is configurable by the command line or the BOINC manager’s GUI to compute with any range between 0% and 100% of available resources, and to change that ratio to a higher after some user determined duration of inactivity. There is now quite a number of individuals who prefer to have everything presented with their accustomed principle for setting and choosing a screen saver. Upon inactivity, the BOINC client is started, and stopped again when the user is back. To save the screen, it then shows the graphical progress indication as optionally shown also by the manager.

This package is excellent to further promote BOINC, recalling the effect SETI@Home once had in the Cambridge, UK, CB2 Cybercafe. Just, when using it together with the regular BOINC client setup, it is suggested not to have all CPUs used to avoid multiple processes running on the same core.

There are three methods to install boinc-screensaver on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install boinc-screensaver Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install boinc-screensaver using apt-get by running the following command:

sudo apt-get -y install boinc-screensaver

Install boinc-screensaver Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install boinc-screensaver using apt by running the following command:

sudo apt -y install boinc-screensaver

Install boinc-screensaver Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install boinc-screensaver using aptitude by running the following command:

sudo aptitude -y install boinc-screensaver

How To Uninstall boinc-screensaver on Ubuntu 20.04

To uninstall only the boinc-screensaver package we can use the following command:

sudo apt-get remove boinc-screensaver

Uninstall boinc-screensaver And Its Dependencies

To uninstall boinc-screensaver and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove boinc-screensaver

Remove boinc-screensaver Configurations and Data

To remove boinc-screensaver configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge boinc-screensaver

Remove boinc-screensaver configuration, data, and all of its dependencies

We can use the following command to remove boinc-screensaver configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge boinc-screensaver

References

Summary

In this tutorial we learn how to install boinc-screensaver package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.