Debian Stretchにsyslinuxパッケージをインストールする方法は?

Debian Stretchにsyslinuxパッケージをインストールする方法は?

Raspbian Stretchをインストールし、次のコマンドを実行しました。

sudo apt-get update
sudo apt-get upgrade

インストールしようとすると、syslinux次のメッセージが表示されます。

$ sudo apt-get install syslinux -y
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package syslinux is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'syslinux' has no installation candidate

syslinux実行しようとすると、mkwinpeimg次のエラーが発生するためです。

$ mkwinpeimg --windows-dir=/mnt/windows7 win7pe.img
ERROR: To make a bootable disk image of Windows PE, we need the "syslinux"
program, but it doesn't seem to be installed.  Please install the "syslinux"
package to continue, or try using the --iso option to make an ISO image instead
of a disk image.

私は何が間違っていましたか?

ベストアンサー1

syslinuxをインストールできます

sudo apt-get install syslinux-common -y

syslinuxで利用可能な他のパッケージが何であるかを知りたい場合は、数回書き込んでsudo apt-get install syslinuxクリックするか、を入力して検索できます。TABsudo apt search syslinux

おすすめ記事