Hi!
Sorry
I'm using the Debian 10, this release:
https://cdimage.debian.org/cdimage/ports/2019-11-22/
Here we go:
On Windows:
qemu-system-m68k.exe -boot d -M q800 -m 1000M -serial none -serial
mon:telnet::3333,server,nowait -net nic,model=dp83932 -net user -kernel
vmlinux-4.19.0-2-m68k -initrd initrd.gz -drive
file=debian_m68k.qcow2,format=qcow2 -drive
file=debian-10.0-m68k-NETINST-1.iso,format=raw,media=cdrom
On Linux:
QEMU=qemu-system-m68k
ISO=debian-10.0-m68k-NETINST-1.iso
FILE=debian-10.0.qcow2,format=qcow2
VERSION=$(guestfish --add $ISO --mount /dev/sda:/ ls
/install/kernels|sed -n "/vmlinu[xz]-/s/vmlinu[xz]-//p"|sort -n|tail -1)
guestfish --add $ISO --mount /dev/sda:/ copy-out
/install/kernels/vmlinux-$VERSION .
guestfish --add $ISO --mount /dev/sda:/ copy-out /install/cdrom/initrd.gz .
KERNEL="-kernel vmlinux-$VERSION"
INITRD="-initrd initrd.gz"
CDROM="-cdrom $ISO"
$QEMU -M q800 \
-m 128M \
-serial none -serial mon:stdio \
-drive file=$FILE \
-net nic,model=dp83932,addr=09:00:07:12:34:57,netdev=hostnet0 \
-netdev
bridge,id=hostnet0,br=virbr0,helper=/usr/libexec/qemu-bridge-helper \
-g 1200x800x24 \
$KERNEL \
$INITRD \
$CDROM \
-append "console=ttyS0" \
"$@"
Alexandre S. Bencz
+55 {15} 991-707-384
On 16/04/2020 10:09, John Paul Adrian Glaubitz wrote:
On 4/16/20 3:07 PM, Alexandre Bencz wrote:
But, how I can get the log ?
Any option from installation menu redirect to apt conf.
You can at least answer my other questions so I can try to reproduce
the issue myself.
Adrian