Hello,
It is say: You can test your stick using QEMU. qemu -hda /dev/sdX -m 1024 -vga std I installed qemu (dnf install qemu). Then qemu -hda /dev/sdc -m 1024 -vga std
bash: qemu: command not found...
What I am doing wrong?
Thank.
=========================================================================== Patrick DUPRÉ | | email: pdupre@gmx.com Laboratoire interdisciplinaire Carnot de Bourgogne 9 Avenue Alain Savary, BP 47870, 21078 DIJON Cedex FRANCE Tel: +33 (0)380395988 ===========================================================================
On 2019-06-04 2:14 p.m., Patrick Dupre wrote:
Hello,
It is say: You can test your stick using QEMU. qemu -hda /dev/sdX -m 1024 -vga std I installed qemu (dnf install qemu). Then qemu -hda /dev/sdc -m 1024 -vga std
bash: qemu: command not found...
What I am doing wrong?
Thank.
Is qemu installed? Also, 'virsh' (libvirtd) makes using virtual machines pretty easy, too.
dnf install qemu Last metadata expiration check: 1:35:33 ago on Tue 04 Jun 2019 07:22:21 PM CEST. Package qemu-2:2.11.2-5.fc28.x86_64 is already installed, skipping. Dependencies resolved. Nothing to do. Complete!
=========================================================================== Patrick DUPRÉ | | email: pdupre@gmx.com Laboratoire interdisciplinaire Carnot de Bourgogne 9 Avenue Alain Savary, BP 47870, 21078 DIJON Cedex FRANCE Tel: +33 (0)380395988 ===========================================================================
Sent: Tuesday, June 04, 2019 at 8:29 PM From: "Digimer" lists@alteeve.ca To: "Community support for Fedora users" users@lists.fedoraproject.org, "Patrick Dupre" pdupre@gmx.com Subject: Re: qemu
On 2019-06-04 2:14 p.m., Patrick Dupre wrote:
Hello,
It is say: You can test your stick using QEMU. qemu -hda /dev/sdX -m 1024 -vga std I installed qemu (dnf install qemu). Then qemu -hda /dev/sdc -m 1024 -vga std
bash: qemu: command not found...
What I am doing wrong?
Thank.
Is qemu installed? Also, 'virsh' (libvirtd) makes using virtual machines pretty easy, too.
-- Digimer Papers and Projects: https://alteeve.com/w/ "I am, somehow, less interested in the weight and convolutions of Einstein’s brain than in the near certainty that people of equal talent have lived and died in cotton fields and sweatshops." - Stephen Jay Gould
On Tue, Jun 4, 2019 at 7:14 PM Patrick Dupre pdupre@gmx.com wrote:
It is say: You can test your stick using QEMU. qemu -hda /dev/sdX -m 1024 -vga std
I installed qemu (dnf install qemu). Then qemu -hda /dev/sdc -m 1024 -vga std
bash: qemu: command not found...
qemu-system-x86_64 (for x86_64)
On 6/4/19 1:06 PM, Tom H wrote:
On Tue, Jun 4, 2019 at 7:14 PM Patrick Dupre pdupre@gmx.com wrote:
It is say: You can test your stick using QEMU. qemu -hda /dev/sdX -m 1024 -vga std
I installed qemu (dnf install qemu). Then qemu -hda /dev/sdc -m 1024 -vga std
bash: qemu: command not found...
qemu-system-x86_64 (for x86_64)
You will either want to use qemu-kvm or add "-machine accel=kvm" to the command to get accelerated virtualization.
On Tue, Jun 4, 2019 at 9:34 PM Samuel Sieb samuel@sieb.net wrote:
On 6/4/19 1:06 PM, Tom H wrote:
On Tue, Jun 4, 2019 at 7:14 PM Patrick Dupre pdupre@gmx.com wrote:
It is say: You can test your stick using QEMU. qemu -hda /dev/sdX -m 1024 -vga std
I installed qemu (dnf install qemu). Then qemu -hda /dev/sdc -m 1024 -vga std
bash: qemu: command not found...
qemu-system-x86_64 (for x86_64)
You will either want to use qemu-kvm or add "-machine accel=kvm" to the command to get accelerated virtualization.
Yes.
-machine accel=kvm or -accel kvm or -enable-kvm
On 6/6/19 7:29 PM, Tom H wrote:
On Tue, Jun 4, 2019 at 9:34 PM Samuel Sieb samuel@sieb.net wrote:
You will either want to use qemu-kvm or add "-machine accel=kvm" to the command to get accelerated virtualization.
Yes.
-machine accel=kvm or -accel kvm or -enable-kvm
If you use "qemu-kvm", you don't need to add that option.
On Tue, 2019-06-04 at 20:14 +0200, Patrick Dupre wrote:
Hello,
It is say: You can test your stick using QEMU. qemu -hda /dev/sdX -m 1024 -vga std I installed qemu (dnf install qemu). Then qemu -hda /dev/sdc -m 1024 -vga std
bash: qemu: command not found...
What I am doing wrong?
'qemu' is a pseudo-package that installs some support files for non- Intel architectures which you almost certainly don't need. There is no 'qemu' command.
$ sudo dnf install qemu-kvm
then either use the qemu-system-x86_64 command, or (better) run virtmanager or virsh to set up a new VM.
poc