本部分主要介绍:解决 E:无法定位软件包
错误,提供两种方法解决。一种为无图像界面;另一种为有图形界面的
E:无法定位软件包:产生原因
-
产生
E:无法定位软件包
安全提示原因有很多。如网络链接问题、apt 源过期等……。-
问题如下
shen@shen-Ubuntu:~$ sudo apt install tree 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 E: 无法定位软件包 tree
一般提示方法有执行
sudo apt-get update
更新源列表,但是往往此命令执行等待时间长,或者直接报错等问题(源服务器不在中国大陆,网络链接有问题)。实际解决此错误的根本在于
/etc/apt/sources.list
文件,也就是源列表,将源服务器更改为中国大陆的服务器,便可解决以上问题。
-
解决 Ubuntu 无法定位软件包:E:无法定位软件包
-
解决问题方法一
-
备份
/etc/apt/sources.list
文件- 执行命令
sudo cp /etc/apt/sources.list /etc/apt/sources.list.old
- 执行命令
-
打开
/etc/apt/sources.list
文件,删除文件原有内容,再复制粘贴 阿里的源 (网易、清华都可以)打开文件
sudo vim /etc/apt/sources.list
-
复制阿里源(Ubuntu18.04 配置如下)
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
-
重新获取软件包列表
sudo apt-get update
-
在执行安装命令
sudo apt-get install tree
-
-
解决问题方法二
-
步骤 1
-
步骤 2
-
步骤 3
-
步骤 4
-
重新获取软件包列表 ,执行
sudo apt-get update
命令shen@shen-Ubuntu:~$ sudo apt-get update [sudo] shen 的密码: 命中:1 http://mirrors.aliyun.com/ubuntu bionic InRelease 命中:2 http://mirrors.aliyun.com/ubuntu bionic-updates InRelease 命中:3 http://mirrors.aliyun.com/ubuntu bionic-backports InRelease 命中:4 http://mirrors.aliyun.com/ubuntu bionic-security InRelease 命中:5 http://archive.canonical.com/ubuntu bionic InRelease 正在读取软件包列表... 完成
-