没有 repos

没有 repos

我有 PC Engines Apu。我想通过 PXE 将 Linux 安装到 Apu。我正尝试在 ubuntu 14.04 LTS 上安装它。我正在使用 Ubuntu 14.04 LTS

#yum install tftp-server syslinux httpd dhcpd

There are no enabled repos.
 Run "Yum repolist all" to see the repos you have.
 You can enable repos with yum-config-manager --enable <repo>

#yum repolist all
repolist: 0

答案1

软件包管理器yum来自 RedHat 及其衍生产品。它从存储此类软件包的存储库安装 rpm 软件包。Debian(以及 Ubuntu)存储库则有 .deb 软件包。Debian yum/Ubuntu 世界中的等价物是apt-get。我不知道为什么你最终yum在你的 Ubuntu 系统上安装了 但它不是你想要使用的工具。

你想要的是:

sudo apt-get install tftp tftpd syslinux apache2 dhcpcd

无论如何,这是我最好的猜测,因为你实际上并没有解释你试图安装什么。Ubuntutftp-server中没有软件包,所以我猜你想要的tftpd是支持 TFTP 协议的服务器。同样,Ubuntu 中也没有,httpd但我猜你想安装apache2Web 服务器和dhcp客户端(dhcpd)。

相关内容