LINUX.ORG.RU

Как лучше создавать загрузочную флешку ubuntu?

 


0

2

Пробовал unetbootin(сижу на ubuntu 20.04 и записываю тоже ubuntu 20.04 на флешку), флешка банально не загружается с биоса, сейчас попробую через dd записать. У кого есть опыт пожалуйста подскажите как лучше всего записывать флешку?

dd if=/home/путь_к_iso of=/dev/флешка bs=4096 && sync

sergio1204 ★★★
()

unetbootin попробуй еще раз, у меня тоже такое было.

XoFfiCEr ★★☆☆
()

https://docs.fedoraproject.org/en-US/quick-docs/creating-and-using-a-live-ins... — там вполне годный рецепт, подходит для всех Linux с гибридными образами, в том числе Ubuntu:

Identify the name of the USB drive partition. If using this method on Windows, with the port linked above, the dd --list command should provide you with the correct name.

Unmount all mounted partition from that device. This is very important, otherwise the written image might get corrupted. You can umount all mounted partitions from the device with umount /dev/sdX*, where X is the appropriate letter, e.g. umount /dev/sdc*.

Write the ISO file to the device:

# dd if=/path/to/image.iso of=/dev/sdX bs=8M status=progress oflag=direct

Wait until the command completes.
	If you see dd: invalid status flag: 'progress', your dd version doesn’t support the status=progress option and you’ll need to remove it. In this case, you won’t see writing progress.

Что за устройства, прозе смотреть

lsblk

Vsevolod-linuxoid ★★★★★
()
Последнее исправление: Vsevolod-linuxoid (всего исправлений: 2)

От рута (именно от рута, через sudo не заработает)

cat image.iso > /dev/sdX

У меня лично этот способ пишет намного быстрее dd.

puffy ★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.