
Introduction
In this tutorial we learn how to install apache2-suexec-custom on Ubuntu 20.04.
What is apache2-suexec-custom
apache2-suexec-custom is:
Provides a customizable version of the suexec helper program for mod_suexec.
This is not the version from upstream, but can be configured with a
configuration file.
If you do not need non-standard document root or userdir settings, it is
recommended that you use the standard suexec helper program from the
apache2-suexec-pristine package instead.
Package: apache2-suexec-custom
Architecture: amd64
Version: 2.4.41-4ubuntu3.3
Priority: extra
Section: universe/web
Source: apache2
Origin: Ubuntu
Maintainer: Ubuntu Developers [email protected]
Original-Maintainer: Debian Apache Maintainers [email protected]
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 146
Provides: apache2-suexec
Depends: apache2-bin, libc6 (>= 2.8)
Filename: pool/universe/a/apache2/apache2-suexec-custom_2.4.41-4ubuntu3.3_amd64.deb
Size: 15628
MD5sum: 992caf1e784ed4e56d3990feff858137
SHA1: 2997ffa1aa9af96a9bee1d4d635cd2e229b764be
SHA256: 9d3b147aa147e73b658cdbb72e1d5fd3bd91690404a1e9d711875687d6eb4d6d
SHA512: 232d7cdacdb86929ccb0730cfe3193b1eb7079191ac5cfde7ab231cabbae0190012e0e9523bbd155c6e9ba1af31a0132eec53c637effb1f0a365ad488ca75347
Homepage: https://httpd.apache.org/
Description-en: Apache HTTP Server configurable suexec program for mod_suexec
Provides a customizable version of the suexec helper program for mod_suexec.
This is not the version from upstream, but can be configured with a
configuration file.
If you do not need non-standard document root or userdir settings, it is
recommended that you use the standard suexec helper program from the
apache2-suexec-pristine package instead.
Package: apache2-suexec-custom
Architecture: amd64
Version: 2.4.41-4ubuntu3
Priority: extra
Section: universe/web
Source: apache2
Origin: Ubuntu
Maintainer: Ubuntu Developers [email protected]
Original-Maintainer: Debian Apache Maintainers [email protected]
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 145
Provides: apache2-suexec
Depends: apache2-bin, libc6 (>= 2.8)
Filename: pool/universe/a/apache2/apache2-suexec-custom_2.4.41-4ubuntu3_amd64.deb
Size: 15620
MD5sum: c789c56d8930cbc9a74a3ee8416fe44f
SHA1: bc0da86cc4ef2d0e41516e6ada816dbcae50ca32
SHA256: ab49a16d308cfd9a5b0c6a4b5a3c612cb2a22428002b35e38ce0d9f36e1aad4c
Homepage: https://httpd.apache.org/
Description-en: Apache HTTP Server configurable suexec program for mod_suexec
Provides a customizable version of the suexec helper program for mod_suexec.
This is not the version from upstream, but can be configured with a
configuration file.
If you do not need non-standard document root or userdir settings, it is
recommended that you use the standard suexec helper program from the
apache2-suexec-pristine package instead.
There are three methods to install apache2-suexec-custom 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 apache2-suexec-custom Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install apache2-suexec-custom using apt-get by running the following command:
sudo apt-get -y install apache2-suexec-custom
Install apache2-suexec-custom Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install apache2-suexec-custom using apt by running the following command:
sudo apt -y install apache2-suexec-custom
Install apache2-suexec-custom 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 apache2-suexec-custom using aptitude by running the following command:
sudo aptitude -y install apache2-suexec-custom
How To Uninstall apache2-suexec-custom on Ubuntu 20.04
To uninstall only the apache2-suexec-custom package we can use the following command:
sudo apt-get remove apache2-suexec-custom
Uninstall apache2-suexec-custom And Its Dependencies
To uninstall apache2-suexec-custom and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove apache2-suexec-custom
Remove apache2-suexec-custom Configurations and Data
To remove apache2-suexec-custom configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge apache2-suexec-custom
Remove apache2-suexec-custom configuration, data, and all of its dependencies
We can use the following command to remove apache2-suexec-custom configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge apache2-suexec-custom
References
Summary
In this tutorial we learn how to install apache2-suexec-custom package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.
