I just created an USB drive and would like to check if it’s correctly bootable without rebooting my actual computer. How should I do?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Under Linux, you have to know which device path got the drive with for example with
dmesg | tailafter insertion, let’s assume it’s/dev/sdb.Qemu
sudo qemu -hda /dev/sdborsudo qemu-system-x86_64 -hda /dev/sdbfor 64 bits.VirtualBox
then add ~/usb.vmdk as a disk in a VM and boot on it
Don’t hesitate to add other ways to do.