我有电脑引擎Apu。我想通过PXE将Linux安装到Apu。我正在尝试在ubuntu14.04LTS上安装这个程序。我正在使用Ubuntu14.04LTS
#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发布于 2014-06-14 11:49:26
yum包管理器来自RedHat及其衍生产品。它从存储此类包的存储库中安装rpm包。Debian (扩展而言,Ubuntu)存储库有.deb包。Debian/Ubuntu世界中的yum相当于apt-get。我不知道为什么您最终会在您的Ubuntu系统上安装yum,但这不是您想要使用的工具。
你想要的是:
sudo apt-get install tftp tftpd syslinux apache2 dhcpcd在任何情况下,这是我最好的猜测,因为你并没有真正解释你想要安装什么。Ubuntu中没有tftp-server包,所以我猜您需要tftpd,它是一个支持TFTP协议的服务器。同样,Ubuntu中没有httpd,但我猜您希望安装apache2 but服务器和dhcp客户机(dhcpd)。
https://askubuntu.com/questions/483162
复制相似问题