Could not find package "libapache2-mod-proxy-html" Ubuntu 16.04

I want to install the libapache2-mod-proxy-html package, but when I want to install it, it gives me an error. To check which packages are available, I clicked the tabs in the first command below.

devadmin@Dev-LinuxVM :/$ aptitude install -y libapache2-mod-proxy- 

libapache2-mod-proxy-msrpc libapache2-mod-proxy-uwsgi-dbg libapache2-mod-proxy-uwsgi

 devadmin@Dev-LinuxVM :/$ aptitude install -y libapache2-mod-proxy-html 

Could not find a package whose name or description matches "libapache2-mod-proxy-html", Could not find a package whose name or description matches "libapache2-mod-proxy-html", Packages will not be installed, updated or uninstalled. 0 packages updated, 0 newly installed, 0 removed and 0 not updated. Need to get 0 B archives. After unpacking, 0 B will be used.

I am using Ubuntu 16.04.1 LTS (xenial)

+5
source share
1 answer

libapache2-mod-proxy-html was a transition package for apache2-bin .

Since the translation is complete, it should already be included in the apache2-bin Xenial package. In fact, you can find the mod_proxy_html.so file in the apache2-bin (Xenial) file list .

I guess the team

 a2enmod proxy_html 

should solve the problem.

As a final note: you should probably ask a question on askubuntu .

+8
source

Source: https://habr.com/ru/post/1258827/


All Articles