Linux软件安装失败问题,source.list用了bionic,实际上我的Linux是focal版本

使用apt-get出现问题,错误信息大概如下
xgzhang@amax:/$ sudo apt install libx11-dev
正在读取软件包列表... 完成
正在分析软件包的依赖关系树
正在读取状态信息... 完成
有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是
因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件
包尚未被创建或是它们已被从新到(Incoming)目录移出。
下列信息可能会对解决问题有所帮助:
下列软件包有未满足的依赖关系:
 libx11-dev : 依赖: libx11-6 (= 2:1.6.4-3ubuntu0.4) 但是 2:1.6.9-2ubuntu1 正要被安装
              依赖: libxau-dev (>= 1:1.0.0-1) 但是它将不会被安装
              依赖: libxdmcp-dev (>= 1:1.0.0-1) 但是它将不会被安装
              依赖: libxcb1-dev 但是它将不会被安装
              推荐: libx11-doc 但是它将不会被安装
E: 无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关系。
-------------------------------  解决过程和办法  --------------------------------------
1. 用 apt-get install -f 无法修复.
2. 利用 lsb_release -c 查看Linux版本,我靠是focal, 奶奶的我更新apt-install的source.list
    文件一不小心更新成aliyun的bionic版本了
3. 更新source.list文件,替代为:
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse

3. sudo apt update
    sudo apt upgrade
4. 再次安装,一切顺利!

你可能感兴趣的:(linux,ubuntu,java,mysql,python)