How To Install php-apcu-all-dev on Debian 12
Introduction
In this tutorial we learn how to install php-apcu-all-dev
on Debian 12.
What is php-apcu-all-dev
php-apcu-all-dev is:
The APCu is userland caching: APC (Alternative PHP Cache) stripped of opcode caching after the deployment of Zend OpCache in PHP 5.5 as the primary solution to opcode caching in future versions of PHP.
The APCu is a fast solution for userland caching (and dumping) of PHP variables locally, it is not distributed like MemcacheD, but they can be used together for optimal caching.
This is empty package that depends on all PHP versions.
There are three methods to install php-apcu-all-dev
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install php-apcu-all-dev Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install php-apcu-all-dev
using apt-get
by running the following command:
sudo apt-get -y install php-apcu-all-dev
Install php-apcu-all-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install php-apcu-all-dev
using apt
by running the following command:
sudo apt -y install php-apcu-all-dev
Install php-apcu-all-dev 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 php-apcu-all-dev
using aptitude
by running the following command:
sudo aptitude -y install php-apcu-all-dev
How To Uninstall php-apcu-all-dev on Debian 12
To uninstall only the php-apcu-all-dev
package we can use the following command:
sudo apt-get remove php-apcu-all-dev
Uninstall php-apcu-all-dev And Its Dependencies
To uninstall php-apcu-all-dev
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove php-apcu-all-dev
Remove php-apcu-all-dev Configurations and Data
To remove php-apcu-all-dev
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge php-apcu-all-dev
Remove php-apcu-all-dev configuration, data, and all of its dependencies
We can use the following command to remove php-apcu-all-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge php-apcu-all-dev
Dependencies
php-apcu-all-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install php-apcu-all-dev
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.