qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] QEMU Windows binaries with PCNet NIC?


From: Garth Dahlstrom
Subject: [Qemu-devel] QEMU Windows binaries with PCNet NIC?
Date: Tue, 3 Aug 2004 22:11:07 -0400

Has anyone build Windows QEMU binaries with Anthony Curtis AMD PCNet
nic card added in?

I'm using the expect script below with 'screen', but it's killing
me... (dropped ssh sessions + corrupt downloads = not fun) :)

#!/usr/bin/expect
# Usage: ./rsshtunnel.sh address@hidden remoteport

if {[llength $argv] != 2} {
   puts "Usage: rsshtunnel address@hidden remoteport"
   exit
}

set account [lindex $argv 0]
set remoteport [lindex $argv 1]

puts "Enter password: "
gets stdin password

while 1 {
  stty echo
  spawn ssh -g -C -N -R $remoteport:localhost:22 $account
  stty echo
  expect -nocase "password:" {
    send "$password\n"
    stty echo
  }
  expect -timeout 3600 eof {
    stty echo
  }
  sleep 2
}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]