Ubuntu 16.04 LTS 데스크탑에서 Ubuntu Customization Kit를 사용해 보았지만 ISO를 사용자 정의하기 위해 터미널에 들어갈 수 없었습니다. 그래서 큐빅으로 바꿨어요. Cubic은 터미널로 이동하여 오류 없이 ISO를 생성하므로 작동하는 것 같습니다. 그런 다음 Startup Disk Creator를 사용하여 iso에서 USB를 만들면 이 방법도 작동하는 것 같습니다. USB가 포맷되고 채워집니다. 안타깝게도 결과 USB 드라이브는 부팅할 수 없습니다.
저는 기본 ISO로 Mint 18.1 64비트(Ubuntu 16.04.1 및 16.10도 시도)를 사용하고 있습니다. Cubic의 터미널에서 실행한 명령은 다음과 같습니다.
add-apt-repository ppa:webupd8team/java;
add-apt-repository ppa:webupd8team/atom;
apt update;
apt install oracle-java9-installer atom python-pip python-wxgtk3.0 git keepassx libxss1 libappindicator1 libindicator7 -y;
apt install -f -y;
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb;
dpkg -i google-chrome-stable_current_amd64.deb;
rm google-chrome-stable_current_amd64.deb;
pip install --upgrade pip;
pip install setuptools;
pip install --user git+https://github.com/thetimelineproj/humblewx.git;
wget https://jenkins.rickardlindberg.me/job/timeline-linux-source/lastSuccessfulBuild/artifact/timeline-1.13.0-beta-5e499bb0d658-2017-01-08.zip;
unzip "timeline-1.13.0-beta-5e499bb0d658-2017-01-08.zip" -d /opt/;
rm "timeline-1.13.0-beta-5e499bb0d658-2017-01-08.zip"
USB 드라이브를 사용하여 노트북을 부팅하려고 하면 부팅 메뉴로 돌아갑니다. QEMU를 사용하여 iso를 부팅하려고 하면 부팅할 수 있는 것이 없다고 나옵니다.
이에 따르면: https://answers.launchpad.net/cubic/+question/387566
다음을 수행해야 합니다.
syslinux-utils를 설치하고 터미널에서 $ sudo isohybrid /path/to/custom_iso.iso를 실행해야 합니다.
그러나 이것은 나에게 효과가 없습니다. 내가 얻는 유일한 결과는 다음과 같습니다.
isohybrid: 경고: 1024개 이상의 실린더: 2215 isohybrid: 모든 BIOS가 이 장치를 부팅할 수 있는 것은 아닙니다.
어떻게 해결할 수 있나요?
답변1
좀 더 인내심을 가져야 할 것 같습니다. 달리기
sudo isohybrid /path/to/custom_iso.iso
수리하다. 오류 메시지가 표시되지만 iso가 수정되어 이제 부팅 가능합니다! :-)