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
답변2
이것syslinux
amd64
패키지는 및 에서만 사용할 수 있습니다 i386
.
이 패키지는 다음 명령을 wimtools
제공합니다 mkwinpeimg
.
sudo apt install wimtools