~ubuntu-branches/ubuntu/karmic/installation-guide/karmic

« back to all changes in this revision

Viewing changes to nl/install-methods/tftp/rarp.xml

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2007-07-23 15:52:44 UTC
  • mfrom: (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20070723155244-xayq1rzu8rllvngy
Tags: 20070319ubuntu1
* Resynchronise with Debian. Remaining changes:
  - Build only English (for now, until we figure out how to avoid trashing
    translations quite so badly with Ubuntu branding etc.).
  - Build only Ubuntu architectures (amd64, hppa, i386, ia64, powerpc,
    sparc).
  - Extensive (although possibly incomplete) Ubuntu branding, adjustments
    for our mirror layout, etc.
  - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
    from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
    section.
  - Direct installation reports to ubuntu-users for now.
  - Adjust various memory and disk space requirements. Talk about the
    default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
  - Document mounting /sys in various places.
  - Unset supports-floppy-boot for all our architectures.
  - Add a few more supports-floppy-boot and bootable-usb conditionals.
  - Document our root password and sudo arrangements.
  - Document netboot-style USB images. Still mention the hd-media images,
    but they're downplayed since many USB sticks are too small for a full
    Ubuntu ISO image.
  - Document Kickstart installations (currently only the basics, a
    reference to Red Hat's documentation, and the differences from
    Anaconda).
  - Note that an empty preseed file is equivalent to a normal manual
    installation.
  - Rename doc-base.TEMPLATE to TEMPLATE.doc-base.
  - Update keyboard preseeding documentation for console-setup.
  - Update chroot-install guide for console-setup and language packs; add
    a bit more advice about installing grub.
  - Remove text talking about devfs-style device names, which are no
    longer supported.
  - Fix links to web copies of installation manual and example preseed
    file.
* Bump kernelversion to 2.6.22.
* Bump x11ver to 7.3.
* Bump GNOME version to 2.20.
* Bump release version and names for Gutsy (LP: #119177).
* Refer to the standard task rather than ubuntu-standard.
* Disable documentation of the GTK frontend.
* Remove latex-hangul-ucs-hlatex build-dependency, as we don't build for
  Korean.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<!-- retain these comments for translator revision tracking -->
2
 
<!-- original version: 28997 untranslated -->
 
2
<!-- original version: 39897 untranslated -->
3
3
 
4
4
 
5
5
  <sect2 condition="supports-rarp" id="tftp-rarp">
6
 
   <title>Setting up RARP server</title>
 
6
  <title>Setting up RARP server</title>
7
7
<para>
8
8
 
9
 
To setup RARP, you need to know the Ethernet address (a.k.a. the MAC address)
 
9
To set up RARP, you need to know the Ethernet address (a.k.a. the MAC address)
10
10
of the client computers to be installed.
11
11
If you don't know this information, you can
12
12
 
18
18
 
19
19
</para><para>
20
20
 
21
 
On a RARP server system using a Linux 2.2.x kernel,
22
 
you need to populate the kernel's RARP table.
23
 
To do this, run the following commands:
24
 
 
25
 
<informalexample><screen>
26
 
# <userinput>/sbin/rarp -s
27
 
<replaceable>client-hostname</replaceable>
28
 
<replaceable>client-enet-addr</replaceable></userinput>
29
 
 
30
 
# <userinput>/usr/sbin/arp -s
31
 
<replaceable>client-ip</replaceable>
32
 
<replaceable>client-enet-addr</replaceable></userinput>
33
 
</screen></informalexample>
34
 
 
35
 
If you get
36
 
 
37
 
<informalexample><screen>
38
 
SIOCSRARP: Invalid argument
39
 
</screen></informalexample>
40
 
 
41
 
you probably need to load the RARP kernel module or else recompile the
42
 
kernel to support RARP.  Try <userinput>modprobe rarp</userinput> and
43
 
then try the <command>rarp</command> command again.
44
 
 
45
 
</para><para>
46
 
 
47
 
On a RARP server system using a Linux 2.4.x kernel,
48
 
there is no RARP module, and
49
 
you should instead use the <command>rarpd</command> program.  The
50
 
procedure is similar to that used under SunOS in the following
51
 
paragraph.
52
 
 
53
 
</para><para>
54
 
 
55
 
Under SunOS, you need to ensure that the Ethernet hardware address for
56
 
the client is listed in the <quote>ethers</quote> database (either in the
 
21
On a RARP server system using a Linux 2.4 or 2.6 kernel, or Solaris/SunOS,
 
22
you use the <command>rarpd</command> program.
 
23
You need to ensure that the Ethernet hardware address for the client is
 
24
listed in the <quote>ethers</quote> database (either in the
57
25
<filename>/etc/ethers</filename> file, or via NIS/NIS+) and in the
58
26
<quote>hosts</quote> database. Then you need to start the RARP daemon.
59
 
In SunOS 4, issue the command (as root):
60
 
<userinput>/usr/etc/rarpd -a</userinput>; in SunOS 5, use
61
 
<userinput>/usr/sbin/rarpd -a</userinput>.
 
27
Issue the command (as root): <userinput>/usr/sbin/rarpd -a</userinput>
 
28
on most Linux systems and SunOS 5 (Solaris 2),
 
29
<userinput>/usr/sbin/in.rarpd -a</userinput> on some other Linux systems,
 
30
or <userinput>/usr/etc/rarpd -a</userinput> in SunOS 4 (Solaris 1).
62
31
 
63
32
</para>
64
33
  </sect2>