linux Eddy安装错误:子进程被代码100删除

kcwpcxri  于 4个月前  发布在  Linux
关注(0)|答案(2)|浏览(63)

在Pop.OS上使用Eddy安装任何.deb包时,我遇到以下错误消息,导致安装过程提前终止:
第一个月
我该如何解决这个问题?
我尝试安装其他.deb软件包,以确定问题是否仅限于最初安装的.deb软件包。然而,该问题在所有安装中都持续存在。

bvk5enib

bvk5enib1#

我在更新Visual Studio Code时遇到了同样的问题,并通过运行以下命令解决了这个问题:

sudo apt clean
sudo apt update
sudo dpkg --configure -a
sudo apt install -f
sudo apt full-upgrade
sudo apt autoremove --purge

字符串
如本教程所示:https://support.system76.com/articles/package-manager-pop/

5ktev3wc

5ktev3wc2#

我在安装R-Studio时也遇到了同样的问题。我按照Maximo的回答中的说明进行操作,但还是遇到了同样的错误。当我尝试通过终端安装R-Studio时,遇到了libssl的依赖性错误,请参阅:https://community.rstudio.com/t/dependency-error-when-installing-rstudio-on-ubuntu-22-04-with-libssl/135397。我使用以下代码解决了这个错误:

sudo nano /etc/apt/sources.list

字符串
然后我将以下几行添加到文件中:

deb http://security.ubuntu.com/ubuntu focal-security main


deb http://archive.ubuntu.com/ubuntu focal main
Ctrl + o以保存,然后按Enter键。
然后我安装了以下软件包。

sudo apt-get install libssl1.1
wget https://www.openssl.org/source/old/1.0.2`/openssl-1.0.2u.tar.gz`


提取源代码:

tar -xvf openssl-1.0.2u.tar.gz


最后运行安装:

cd openssl-1.0.2u
./config
make
sudo make install


和它的工作.

相关问题