Posted about 11 years ago. Visible to the public. Linked content.
Using QEMU to quickly test an ISO or bootable USB drive
When you want to quickly boot from a drive or image in a virtual machine you do not need to setup up a VirtualBox machine. Often QEMU does the job well enough.
Install it:
Copysudo apt-get install qemu
To boot an ISO:
Copyqemu-system-x86_64 -cdrom filename.iso
If you prepared a USB pen drive and want to test it, run it like this (/dev/sdx
being your device name; you may need to sudo
to access it):
Copyqemu-system-x86_64 -hda /dev/sdx
Be aware that not everything runs smoothly in QEMU -- you might need to set up a VirtualBox for complex scenarios.
On older Ubuntus, you could still say qemu
where it's now qemu-system-x86_64
or qemu-system-i386
.
Does your version of Ruby on Rails still receive security updates?
Rails LTS provides security patches for unsupported versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2).