ubuntu dpkg:-使用apt-get命令时处理包javascript-common(--configure):-时出错

tjjdgumg  于 2023-04-29  发布在  Java
关注(0)|答案(3)|浏览(148)

我试图在卸载后重新安装我的apache 2。但是在使用命令- sudo apt-get install apache 2安装它时
我得到错误-
安装apache 2时出错

rahul@rahulpc:~$ sudo apt-get clean && sudo apt-get autoclean
[sudo] password for rahul: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
rahul@rahulpc:~$ sudo apt-get --reinstall install apache2
Reading package lists... Done
Building dependency tree       
Reading state information... Done
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, 1 reinstalled, 0 to remove and 474 not upgraded.
1 not fully installed or removed.
Need to get 87.4 kB of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 http://in.archive.ubuntu.com/ubuntu/ trusty-updates/main apache2 amd64 2.4.7-1ubuntu4.4 [87.4 kB]
Fetched 87.4 kB in 3s (28.0 kB/s)  
(Reading database ... 172062 files and directories currently installed.)
Preparing to unpack .../apache2_2.4.7-1ubuntu4.4_amd64.deb ...
Unpacking apache2 (2.4.7-1ubuntu4.4) over (2.4.7-1ubuntu4.4) ...
Processing triggers for ureadahead (0.100.0-16) ...
ureadahead will be reprofiled on next reboot
Processing triggers for ufw (0.34~rc-0ubuntu2) ...
Processing triggers for man-db (2.6.7.1-1) ...
Setting up javascript-common (11) ...
dpkg: error processing package javascript-common (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up apache2 (2.4.7-1ubuntu4.4) ...
/etc/init.d/apache2: 64: .: Can't open /etc/apache2/envvars
/etc/init.d/apache2: 76: .: Can't open /etc/apache2/envvars
ERROR: APACHE_PID_FILE needs to be defined in /etc/apache2/envvars
invoke-rc.d: initscript apache2, action "restart" failed.
Errors were encountered while processing:
 javascript-common
E: Sub-process /usr/bin/dpkg returned an error code (1)

当我运行命令-
sudo apt-get升级
我得到同样的错误,我想我已经删除了一些重要的目录,而卸载apache 2 .任何人请帮助我恢复文件和安装apache 2.

hwamh0ep

hwamh0ep1#

最后我通过运行命令解决了错误-

sudo apt-get clean && sudo apt-get autoclean
sudo apt-get purge apache2
sudo apt-get install apache2
7hiiyaii

7hiiyaii2#

不需要重新安装apache2(使用purge删除所有配置)。只要做:

sudo apt-get purge javascript-common 
sudo apt-get install javascript-common
6psbrbz9

6psbrbz93#

如果这个预览命令不能解决问题,我建议你运行comand〈sudo apt-get remove --purge〉,然后运行。其他选项不能解决我的javascript-common问题

相关问题