在 Xubuntu 20.04 上安装 Skype 时出错

在 Xubuntu 20.04 上安装 Skype 时出错

我在 Xubuntu 20.04 上下载并安装了 Skype 我使用这个命令

sudo apt install -f ./skypeforlinux-64.deb 

但出现此错误:

sudo apt install -f ./skypeforlinux-64.deb 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'skypeforlinux' instead of './skypeforlinux-64.deb'
The following additional packages will be installed:
  libatomic1
The following NEW packages will be installed:
  libatomic1 skypeforlinux
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/88,0 MB of archives.
After this operation, 298 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Media change: please insert the disc labeled
 'Xubuntu 20.04.2.0 LTS _Focal Fossa_ - Release amd64 (20210209.1)'
in the drive '/cdrom/' and press [Enter]

我尝试从 ISO 文件安装 libatomic1,但没有成功。在这种情况下我该怎么办?

答案1

这只是 apt 存储库列表问题。在文件 xxx 中,它以以下行开头:

deb cdrom:[Xubuntu 20.04.2.0 LTS _Focal Fossa_ - Release amd64 (20210209.1)]/ focal main multiverse restricted universe

我添加了一个#来注释它:

# deb cdrom:[Xubuntu 20.04.2.0 LTS _Focal Fossa_ - Release amd64 (20210209.1)]/ focal main multiverse restricted universe

然后它可以从在线存储库获取文件并运行。

相关内容