package has no installation candidate最新解决办法

实验室刚买了台服务器,刚装完系统(ubuntu server 20.10),配置ssh账号的时候,安装openssh-server时出现了两个错误

  1. The list of sources could not be read.
  2. package has no installation candidate

执行sudo apt install openssh-server时,出错:
package openssh-server has no installtion candidate
当然下载其他包的时候也会出现类似的问题。出错为:
package “packagename” has no installion candidate

出错原因:

最开始出现的问题为:The list of sources could not be read.因为不知道问题出现在哪,网上的一部分文章说是因为/etc/apt/sources.list中部分指令出错,我不知道哪条指令出错了,就全注释了(我真是个天才!!!错误示范,请勿模仿),网上还有建议删掉的。嘶~
我全注释了,但是,但是,哎没错了 ,但众所周知,错误不会消失,只会转移。这时候,错误就变成了另外一个,就最开始提到的:package openssh-server has no installtion candidate。
这时候出错原因有两个:

  1. 没有更新apt的下载源
  2. 文件/etc/apt/sources.list 出现错误

这个服务器的问题肯定是第二个了,毕竟把人家都掏空了…

1.没有更新apt的下载源

这个问题比较简单,网上也有很多这样问题的解决办法:

# apt-get update
# apt-get upgrade
# apt-get install 

主要更新软件包和软件源
如果执行完此条指令还不行的话,可能是软件源文件/etc/apt/sources.list出错了

2. 文件/etc/apt/sources.list 出错

本台服务器系统为ubuntu server 20.10,软件源配置文件/etc/apt/sources.list中默认是国外的源,这个时候执行需要网上链接下载软件包的时候,肯定无法找到软件源,因此需要替换为国内源。如果不是国外源还出错的话,可以备份之后,把源改成以下国内源的其中一个就行。
另外需要注意的是,ubuntu20.10也就是下面的源是20.10 groovy的。ubuntu18.04是另外一个源,bionic,如果是18.04可以参考这个文章更换软件源:Ubuntu18.04更换软件源
如果系统是20.10可以根据以下方式更换软件源:
首先进行备份一下:

sudo  cp   /etc/apt/sources.list   /etc/apt/sources.list.bak

进行修改:

sudo vim /etc/apt/sources.list

将sources.list中的所有内容删除,添加以下内容(其中一个就行):

阿里源
官网配置

deb http://mirrors.aliyun.com/ubuntu/ groovy main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ groovy main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ groovy-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ groovy-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ groovy-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ groovy-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ groovy-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ groovy-backports main restricted universe multiverse

# 预发布软件源,不建议启用
#deb http://mirrors.aliyun.com/ubuntu/ groovy-proposed main restricted universe multiverse
#deb-src http://mirrors.aliyun.com/ubuntu/ groovy-proposed main restricted universe multiverse

或清华源
官网配置

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ groovy-proposed main restricted universe multiverse

或Ubuntu官方源

deb http://cn.archive.ubuntu.com/ubuntu/ groovy main universe restricted multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ groovy main universe restricted multiverse #Added by software-properties
deb http://security.ubuntu.com/ubuntu/ groovy-security main universe restricted multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ groovy-security main universe restricted multiverse #Added by software-properties
deb http://cn.archive.ubuntu.com/ubuntu/ groovy-updates main universe restricted multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ groovy-updates main universe restricted multiverse #Added by software-properties

添加完内容后,再执行sudo apt install openssh-server时,还是出错,这是因为没有更新软件包及软件源,执行第一步的指令就可以了。

# apt-get update
# apt-get upgrade
# apt-get install 

然后就没错了。呜呜呜!

参考:Ubuntu 20.10 groovy 更换国内源

你可能感兴趣的:(电脑有病也得治,LINUX学习笔记,ubuntu,linux,apt)