web-dev-qa-db-ja.com

Apache 2をubuntu 14.04にインストールする際の問題:dpkg:-パッケージjavascript-commonの処理エラー(--configure):

アンインストール後にApache 2を再インストールしようとしました。ただし、コマンドを使用してインストールする場合は

Sudo apt-get install Apache2

エラーが発生しています

rahul@rahulpc:~$ Sudo apt-get install Apache2
[Sudo] password for rahul: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Apache2 is already the newest version.
The following packages were automatically installed and are no longer required:
  libblas3 liblinear-tools liblinear1
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 474 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up javascript-common (11) ...
dpkg: error processing package javascript-common (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 javascript-common
E: Sub-process /usr/bin/dpkg returned an error code (1)

apache 2のアンインストール中にいくつかの重要なディレクトリを削除したと思います。誰でも私がファイルを回復し、Apache 2をインストールするのを手伝ってください。

2
Rahul Satal

Javascript commonを削除して再インストールします。

Sudo apt-get purge javascript-common 

Sudo apt-get install javascript-common

次に、パッケージをインストールします。

ソース: http://ubuntuforums.org/showthread.php?t=2232128

1

私の問題は、javascript-common(Dedianを使用)が構成されていないことでした。私の解決策は、javascript-commonをインストールする前にそれを削除し、Apache2をインストールすることでした。 javascript-commonは、設定する前にいくつかの設定ファイルが終了していることを期待しているようです。

Sudo touch /etc/Apache2/conf-available/javascript-common.conf

Sudo apt-get install Apache2

Javascript-common_11_all.debパッケージを手動でダウンロードし、インストールします

dpkg -i  javascript-common_11_all.deb --force-all

幸運を

0
user476275

アンインストールし、dpkgを再構成します

apt-get --purge remove javascript-common

Sudo dpkg --configure -a

必要な場合は、再度インストールしてください

Sudo apt-get update

Sudo apt-get install javascript-common

0
taybinakh