pavement

Sparc - Installing FreeBSD

From FreeBSDwiki
(Difference between revisions)
Jump to: navigation, search
 
(24 intermediate revisions by 7 users not shown)
Line 1: Line 1:
Installation of FreeBSD on the Sparc architechture is nearly identical to the x86 architecture installation, although booting from media differs somewhat from the x86 install procedures:  
+
Installation of FreeBSD on the Sparc architechture is nearly identical to the [[Installing FreeBSD | x86 architecture installation]], although booting from media differs somewhat from the x86 install procedures:  
  
The first step is getting your target machine to boot off of your install media. Sun's Sparc machines have a few quirks, the most relevant of which for you right now is [http://sunsolve.sun.com/handbook_pub/General/OBP.html Open Boot Firmware (off-site link to sun.com's info on Open Boot parameters).]
+
For a more in-depth guide, please see [[Installation on Ultra 5|this article]] based on on the Ultra 5 model from Sun Microsystems.
  
Boot from the console (or console via terminal,) and during boot-up, hit the STOP button and the letter "a" on the keyboard. This will drop you to the <B>OK</> prompt. This is the Open Firmware prompt, which is a close cousin of the [http://www.macdevcenter.com/pub/a/mac/2003/02/18/secure_tibook.html Mac OS X Open Firmware (off-site link)]. It may help to think of it as a BIOS-commandline.
+
==Booting from the Install disc==
 +
 
 +
The first step is getting your target machine to boot off of your install media. Sun's Sparc machines have a few quirks, the most relevant of which for you right now is Open Boot Firmware.
 +
 
 +
Boot from the console (or console via terminal,) and during boot-up -- if you have a SUN keyboard -- hit the STOP button and the letter "a" on the keyboard. If you're on the console port of the machine, you should not have to do this. If this does not halt the POST and bootup, and there is already a version of unix on the machine (e.g., Solaris,) then you can get to the firmware prompt by executing
 +
  init 0
 +
as root.
 +
 
 +
This will drop you to the <B>OK</b> prompt. This is the Open Firmware prompt, which is a close cousin of the [http://www.macdevcenter.com/pub/a/mac/2003/02/18/secure_tibook.html Mac OS X Open Firmware (off-site link)]. It may help to think of it as a BIOS-commandline.
  
 
The OK prompt may be displayed thus:
 
The OK prompt may be displayed thus:
   OK or OK>  
+
   OK  
 +
or  
 +
  OK>  
 
this can be one of the other depending on which version of the Open Firmware the machine is running.
 
this can be one of the other depending on which version of the Open Firmware the machine is running.
  
   OK {0} or OK {1}
+
If you're running on a machine with multiple processors, you may see
this will only be seen on machines with multiple processors and the number within the parenthesis is to let you know which processor you're currently on.
+
   OK {0}  
 +
or  
 +
  OK {1}
 +
 
 +
this will only be seen on machines with multiple processors and the number within the brackets is to let you know which processor you're currently running on.
 +
 
 +
At the <b>OK></b> prompt, type in "boot cdrom" (if you've got a bootable cdrom for the sparc arch in the cd drive of the machine) or "boot net" if you're trying to do a net install from a network server. From here on in, the install should be nearly identical to an [[Installing FreeBSD | x86 install]].
 +
 
 +
==It won't automatically boot from the hard drive!==
 +
 
 +
Relax, young padwan, if you're still getting the OK prompt. You have to fool around in the OpenBoot prompt to get OpenBoot to auto-load the OS from the disk. The command(s) that you want are:
 +
OK> setenv boot-device disk1:a
 +
OK> setenv auto-boot? true
 +
Where disk1:a is the second disk's first partition. If you are unsure which disk is which, do a
 +
OK> probe-ide
 +
or
 +
OK> probe-scsi
 +
to show your disks. Please see the [http://docs.sun.com/db/doc/816-1177-10/6m7k5h7oe?a=view Sun Documentation on OBP booting options] for more info.
 +
 
 +
Note that if you've tried to install a non-Solaris Unix on SUN hardware, e.g., a sparc-capable linux variant like debian or gentoo, then you might expect that you'd have to make a sunlabel disk label -- you don't. Just let the OS partition (or partition yourself) without worrying about it.
  
At the OK> prompt, type in "boot cdrom" (if you've got a bootable cdrom for the sparc arch in the cd drive of the machine) or "boot net" if you're trying to do a net install from a network server. From here on in, the install should be nearly identical to an x86 install.
+
see also: [http://sunsolve.sun.com/handbook_pub/General/OBP.html Open Boot Firmware (off-site link to sun.com's info on Open Boot parameters).]
  
'''<nowiki>[Category : Installation]</nowiki>'''
+
See also [[Sparc_-_Gotchas]]
 +
[[Category : Architecture-Specific]]
 +
[[Category : Installation]]

Latest revision as of 15:57, 29 June 2009

Installation of FreeBSD on the Sparc architechture is nearly identical to the x86 architecture installation, although booting from media differs somewhat from the x86 install procedures:

For a more in-depth guide, please see this article based on on the Ultra 5 model from Sun Microsystems.

[edit] Booting from the Install disc

The first step is getting your target machine to boot off of your install media. Sun's Sparc machines have a few quirks, the most relevant of which for you right now is Open Boot Firmware.

Boot from the console (or console via terminal,) and during boot-up -- if you have a SUN keyboard -- hit the STOP button and the letter "a" on the keyboard. If you're on the console port of the machine, you should not have to do this. If this does not halt the POST and bootup, and there is already a version of unix on the machine (e.g., Solaris,) then you can get to the firmware prompt by executing

  init 0

as root.

This will drop you to the OK prompt. This is the Open Firmware prompt, which is a close cousin of the Mac OS X Open Firmware (off-site link). It may help to think of it as a BIOS-commandline.

The OK prompt may be displayed thus:

  OK 

or

  OK> 

this can be one of the other depending on which version of the Open Firmware the machine is running.

If you're running on a machine with multiple processors, you may see

  OK {0} 

or

  OK {1}

this will only be seen on machines with multiple processors and the number within the brackets is to let you know which processor you're currently running on.

At the OK> prompt, type in "boot cdrom" (if you've got a bootable cdrom for the sparc arch in the cd drive of the machine) or "boot net" if you're trying to do a net install from a network server. From here on in, the install should be nearly identical to an x86 install.

[edit] It won't automatically boot from the hard drive!

Relax, young padwan, if you're still getting the OK prompt. You have to fool around in the OpenBoot prompt to get OpenBoot to auto-load the OS from the disk. The command(s) that you want are:

OK> setenv boot-device disk1:a
OK> setenv auto-boot? true

Where disk1:a is the second disk's first partition. If you are unsure which disk is which, do a

OK> probe-ide

or

OK> probe-scsi

to show your disks. Please see the Sun Documentation on OBP booting options for more info.

Note that if you've tried to install a non-Solaris Unix on SUN hardware, e.g., a sparc-capable linux variant like debian or gentoo, then you might expect that you'd have to make a sunlabel disk label -- you don't. Just let the OS partition (or partition yourself) without worrying about it.

see also: Open Boot Firmware (off-site link to sun.com's info on Open Boot parameters).

See also Sparc_-_Gotchas

Personal tools