How To Install libjs-s5 on Debian 10
Introduction
In this tutorial we learn how to install libjs-s5
on Debian 10.
What is libjs-s5
libjs-s5 is:
S5 is a slide show format based entirely on XHTML, CSS, and JavaScript. With one file, you can run a complete slide show and have a printer-friendly version as well. The markup used for the slides is very simple, highly semantic, and completely accessible. Anyone with even a smidgen of familiarity with HTML or XHTML can look at the markup and figure out how to adapt it to their particular needs. Anyone familiar with CSS can create their own slide show theme. It’s totally simple, and it’s totally standards-driven.
This package contains the JavaScript, CSS, and image files needed to create an S5 template.
There are three methods to install libjs-s5
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libjs-s5 Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libjs-s5
using apt-get
by running the following command:
sudo apt-get -y install libjs-s5
Install libjs-s5 Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libjs-s5
using apt
by running the following command:
sudo apt -y install libjs-s5
Install libjs-s5 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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libjs-s5
using aptitude
by running the following command:
sudo aptitude -y install libjs-s5
How To Uninstall libjs-s5 on Debian 10
To uninstall only the libjs-s5
package we can use the following command:
sudo apt-get remove libjs-s5
Uninstall libjs-s5 And Its Dependencies
To uninstall libjs-s5
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libjs-s5
Remove libjs-s5 Configurations and Data
To remove libjs-s5
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libjs-s5
Remove libjs-s5 configuration, data, and all of its dependencies
We can use the following command to remove libjs-s5
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libjs-s5
Dependencies
libjs-s5 have the following dependencies:
References
Summary
In this tutorial we learn how to install libjs-s5
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.