[other] 刚刚把/etc/php/删掉了怎么恢复
Tofloor
poster avatar
冷静ya
deepin
2024-11-10 01:00
Author

配置服务器时,想重装php,手贱把配置文件夹删掉了,以为安装时会恢复默认,结果哭了,求助
php7.4 deepin23更新的最新的

Reply Favorite View the author
All Replies
neko
deepin
Ecological co-builder
2024-11-10 07:40
#1

sudo apt reinstall php7.4-fpm

Reply View the author
冷静ya
deepin
2024-11-10 13:55
#2
neko

sudo apt reinstall php7.4-fpm

我试过了不行呀

Reply View the author
neko
deepin
Ecological co-builder
2024-11-10 16:36
#3
冷静ya

我试过了不行呀

确定是用的这个包名吗,这个包名才有配置文件

Reply View the author
deepinuser17
deepin
2024-11-11 06:26
#4

试试先卸载所有的php4软件包。 再重新安装。

查看所有安装的php7.4软件包, 并记录下来:

dpkg -l | grep php7.4

卸载所有的php7.4软件包:

dpkg -l | grep php7.4 | awk '{ print $2 }' | xargs apt -y remove

然后重新安装所有卸载的php7.4包。

php的设置文件应当是来自php7.4 或php7.4-common包。 但也可能来自其它的php7.4包。

Reply View the author