/usr/share/faumachine/experiments/test-ne2000/generate is in faumachine-data 20110812-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106  | #
# $Id: generate,v 1.1 2009-02-19 12:00:08 potyra Exp $
#
#
# Enter Debian-3.1r0a-CD-1.
#
cdrom_insert	Debian-3.1r0a-CD-1
#
# Power-on node.
#
power_on
#
# Wait for boot prompt.
#
wait_asc	boot:						1min
type		"\0d"
#
# Wait for "Choose language".
# Use preselected "English".
# Press return.
#
wait_asc	Choose language					3min
type		"\0d"
#
# Wait for "Choose country or region".
# Use preselected "United States".
# Press return.
#
wait_asc	Choose country or region			1min
type		"\0d"
#
# Wait for "Select a keyboard layout".
# Use preselected "Amarican English".
# Press return.
#
wait_asc	Select a keyboard layout			1min
type		"\0d"
#
# Some intermediate steps.
#
wait_asc	Detecting hardware to find CD-ROM drives	1min
wait_asc	Scanning CD-ROM					6min
wait_asc	Loading components of the Debian installer	1min
wait_asc	Detecting network hardware			6min
#
# Wait for "Detecting network hardware" ("No Ethernet card was detected.")
# Use "ne".
# Press return.
#
# wait_asc	Detecting network hardware			6min
wait_asc	No Ethernet card was detected.			6min
type		"n"
type		"n"
type		"\0d"
#
# Wait for "The module ne failed to load."
# Type "io=0x300".
# Press return.
#
wait_asc	The module ne failed to load.			1min
type		"io=0x300"
type		"\0d"
#
# Wait for intermediate steps.
#
wait_asc	Configuring the network with DHCP		1min
#
# Wait for "Please enter the hostname for this system."
#
wait_asc	Please enter the hostname for this system.	1min
#
# Switch to second console.
# Type <Alt><F2>.
#
press_alt
type		"\11"
release_alt
#
# Wait for "Please press Enter to activate this console.".
# Press return.
#
wait_asc	Please press Enter to activate this console.	1min
type		"\0d"
#
# Wait for prompt.
# Type "wget http://www.uni-erlangen.de/"
# Press return.
#
wait_asc	~ #  						1min
type		"wget http://www.uni-erlangen.de/"
type		"\0d"
#
# Wait for prompt.
# Type "head index.html"
# Press return.
#
wait_asc	~ #  						1min
type		"head index.html"
type		"\0d"
#
# Wait for "<head>" (head of HTML document).
# Power-off.
#
wait_asc	<head>						1min
power_off
delay								1sec
 |