How To Install zope2.13-sandbox on Ubuntu 18.04

In this tutorial we learn how to install zope2.13-sandbox on Ubuntu 18.04. zope2.13-sandbox is sandbox instance for the zope2.13 web application server

Introduction

In this tutorial we learn how to install zope2.13-sandbox on Ubuntu 18.04.

What is zope2.13-sandbox

zope2.13-sandbox is:

This package creates a “sandbox” instance, getting all Zope products and packages available which are installed as Debian packages.

The sandbox is usable for development and testing. For production please setup your own Zope 2.13 instance using dzhandle utility.

There are three methods to install zope2.13-sandbox on Ubuntu 18.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 zope2.13-sandbox Using apt-get

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

sudo apt-get update

After updating apt database, We can install zope2.13-sandbox using apt-get by running the following command:

sudo apt-get -y install zope2.13-sandbox

Install zope2.13-sandbox Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install zope2.13-sandbox using apt by running the following command:

sudo apt -y install zope2.13-sandbox

Install zope2.13-sandbox 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 zope2.13-sandbox using aptitude by running the following command:

sudo aptitude -y install zope2.13-sandbox

How To Uninstall zope2.13-sandbox on Ubuntu 18.04

To uninstall only the zope2.13-sandbox package we can use the following command:

sudo apt-get remove zope2.13-sandbox

Uninstall zope2.13-sandbox And Its Dependencies

To uninstall zope2.13-sandbox and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove zope2.13-sandbox

Remove zope2.13-sandbox Configurations and Data

To remove zope2.13-sandbox configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge zope2.13-sandbox

Remove zope2.13-sandbox configuration, data, and all of its dependencies

We can use the following command to remove zope2.13-sandbox configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge zope2.13-sandbox

References

Summary

In this tutorial we learn how to install zope2.13-sandbox package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.