Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Network Install PXE/BootP/TFTP Post 51953 by kwalick on Sunday 6th of June 2004 11:34:25 AM
Old 06-06-2004
Network Install PXE/BootP/TFTP

Im trying to help my professor at school, were trying to setup a linux server, that is configured with bootp/tftp/PXE. the client computer NICs have support to boot off PXE. What we would like to do is if a client computer does not have an OS, it would boot off the server, and display a menu to the end user, the menu will display a list of Operating Systems to install on the local system, including Slackware, Redhat, Mandrake, Freebsd, Windows 2000, etc. The end user just has to pick one and it will bring up the installation of that OS on the local computer and will get all the files that it needs to install from the file server, the file server will be running samba, nfs, ftp, httpd. How would i go about setting this type of envroment up. thankyou =)
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

bootp/tftp

Hi, Setting up print queue, using SMIT on AIX And I have an option saying do I wish to make this a BOOTP/TFTP server. What exactly does this do? Thanks (3 Replies)
Discussion started by: maverick
3 Replies

2. HP-UX

HPUX -- Network Install

I have a HP box (PA RISC) rp3440. The machine does not have a CD-ROM. I need to re-install the OS. Basically a network install... How did I do a network install? Anybody know of a document for Network Installs for a HPUX 11.23? (1 Reply)
Discussion started by: truejack
1 Replies

3. SCO

Network PXE load for SCO 5.0.6

I have a Dell 1850 and trying to load OS and my applications using PXE. How can I stage new servers using Network drive. Want to move away from Tape and go towards network load. Thx Sean. (0 Replies)
Discussion started by: smoaref
0 Replies

4. Solaris

Install Solaris 10 through network

Hi all, I got a Fujitsu P650 server running on Solaris 9 and we are going to re-install Solaris 10 . W have a build server in a different IP segment. So we setup a boot server and /etc/ethers and /etc/bootparams are all updated. When I issue boot net -install, I'm getting the following... (3 Replies)
Discussion started by: mohzub
3 Replies

5. UNIX for Dummies Questions & Answers

How to install a network card

Hey guys, Sorry, this question might look stupid but I have no idea how to install a network card. My server is a Dell PowerEdge T105 with Debian 5.0 Lenny. My network card is a Broadcom NetXtreme BCM5722 Gigabit Ethernet PCI Express. I've plugged the card innside my server and I can see... (2 Replies)
Discussion started by: chebarbudo
2 Replies

6. Ubuntu

Install over network

Hello, I have a desktop with ubuntu installed and i want to install ubuntu also to the laptop over network. I have an iso image of the ubuntu and i want to use this as install source. So i installed tftpd-hpa apache2 and dhcp3-server. mkdir /var/lib/tftpboot/ubuntu mount - o loop ... (2 Replies)
Discussion started by: @dagio
2 Replies

7. Emergency UNIX and Linux Support

Disable up2date --register during PXE install

Hi folks, I really hope someone can help me (soon :) ) as I can't work out what I'm doing wrong and google is not helpful either. Basically I have to setup 20 Dell servers with RHEL 4.8 (no, not 5, must be 4.8). Of course I have tftp and I'm trying to install them via nfs with kickstart and... (4 Replies)
Discussion started by: columb
4 Replies

8. Red Hat

Disable up2date --register during PXE install

Hi, I really hope someone can help me (soon :) ) as I can't work out what I'm doing wrong and google is not helpful either. Basically I have to setup 20 Dell servers with RHEL 4.8 (no, not 5, must be 4.8). Of course I have tftp and I'm trying to install them via nfs with kickstart and PXE. OS... (0 Replies)
Discussion started by: columb
0 Replies

9. Solaris

Bootp/tftp issue neeeeeed help plz

i find a solution (2 Replies)
Discussion started by: shady_2005
2 Replies

10. Solaris

Using VM for Network Install Failing

If this question has been answered, please provide a link. We have several Old Solaris stations that don't have a DVD but a CD. We are required to upgrade the OS on these systems from Solaris 8 to Solaris 10, and since Solaris 10 no longer provides CD's we were thinking of doing a network... (3 Replies)
Discussion started by: Wrongway
3 Replies
PXEBOOT(8)						    BSD System Manager's Manual 						PXEBOOT(8)

NAME
pxeboot -- Preboot Execution Environment (PXE) bootloader DESCRIPTION
The pxeboot bootloader is a modified version of the system third-stage bootstrap loader(8) configured to run under Intel's Preboot Execution Environment (PXE) system. PXE is a form of smart boot ROM, built into Intel EtherExpress Pro/100 and 3Com 3c905c Ethernet cards, and Ether- net-equipped Intel motherboards. PXE supports DHCP configuration and provides low-level NIC access services. The pxeboot bootloader retrieves the kernel, modules, and other files either via NFS over UDP or by TFTP, selectable through compile-time options. In combination with a memory file system image or NFS-mounted root file system, pxeboot allows for easy, EEPROM-burner free construction of diskless machines. The pxeboot binary is loaded just like any other boot file, by specifying it in the DHCP server's configuration file. Below is a sample con- figuration for the ISC DHCP v2 server: option domain-name "example.com"; option routers 10.0.0.1; option subnet-mask 255.255.255.0; option broadcast-address 10.0.0.255; option domain-name-servers 10.0.0.1; server-name "DHCPserver"; server-identifier 10.0.0.1; default-lease-time 120; max-lease-time 120; subnet 10.0.0.0 netmask 255.255.255.0 { filename "pxeboot"; range 10.0.0.10 10.0.0.254; } pxeboot recognizes next-server and option root-path directives as the server and path to NFS mount for file requests, respectively, or the server to make TFTP requests to. Note that pxeboot expects to fetch /boot/loader.rc from the specified server before loading any other files. In all other respects, pxeboot acts just like loader(8). As PXE is still in its infancy, some firmware versions may not work properly. The pxeboot bootloader has been extensively tested on version 0.99 of Intel firmware; pre-release versions of the newer 2.0 firmware are known to have problems. Check with the device's manufacturer for their latest stable release. For further information on Intel's PXE specifications and Wired for Management (WfM) systems, see http://www.intel.com/design/archives/wfm/. SEE ALSO
loader(8) HISTORY
The pxeboot bootloader first appeared in FreeBSD 4.1. AUTHORS
The pxeboot bootloader was written by John Baldwin <jhb@FreeBSD.org> and Paul Saab <ps@FreeBSD.org>. This manual page was written by Doug White <dwhite@FreeBSD.org>. BSD
May 1, 2000 BSD
All times are GMT -4. The time now is 09:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy