On Fri, 2018-09-28 at 11:27 -0400, Joshua Branson wrote: > > Well maybe. I changed the script to this: > > [joshua@dobby ~]$ cat $(which hurd) > #!/bin/bash > modprobe kvm > modprobe kvm_intel > cd ~/programming/gnu/hurd/vm/ > MEMORY=2G > FILE=debian-hurd-2017-11-01.img > # If I ever need to add a cdrom > echo "running ssh" > > qemu-system-i386 -m $MEMORY \ > -net user -net nic, model=rtl8139 \ # make > wiki use a driver card that gnumach has available in the kernel > hostfwd=tcp:127.0.0.1:2222-:22 \ > -drive file=$FILE,cache=writeback,format=raw \ > -enable-kvm \ > -curses \ > -no-reboot; > # -machine kernel_irqchip=off \ > > > I then got this error: > > [joshua@dobby ~]$ hurd > running ssh > Gtk-Message: 11:23:18.177: Failed to load module "canberra-gtk- > module" > qemu-system-i386: -net nic,: Could not open 'model=rtl8139': No such > file or directory > /home/joshua/programming/bash/hurd: line 12: -drive: command not > found
Are you sure a space is allowed after -net nic,? I normally use -net nic,model=e1000. And BTW: rtl8139 is buggy, sometimes Ethernet connections fail. Dunno however if e1000 is supported by the mach kernel or dde though.