0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

QEMUファイルの移動 UBUNTU→XP(備忘録)

Last updated at Posted at 2025-06-14

前回

XPの導入はこちらから
https://qiita.com/earthen94/items/303bf9a56244ee267497

共有したいファイルをISOに入れる

图片.png

genisoimage -o transfer.iso -J -r ~/files_to_copy/

以下のISOが生成される
图片.png

起動

起動する時に-cdrom transfer.isoをつける

qemu-system-i386 \
  -m 1024 \
  -hda xp.img \
  -boot c \
  -cpu host \
  -smp 2 \
  -net nic -net user \
  -vga std \
  -rtc base=localtime \
  -enable-kvm \
  -usbdevice tablet \
  -cdrom transfer.iso

CDドライブを開くと入っている

图片.png

2025-6-15追記

USBを認識させることに成功した。
こちらの方が便利。
https://qiita.com/earthen94/items/65f3d13cafbaa3661b22

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?