Posted  by  admin

Install Pc Bsd From Usb Drive

Recently, I tried to get PC-BSD onto an older system. This system didn't support booting off of USB, nor did it support swapping in a DVD player for the CD player that was shipped with the system. The computer seemed to be fast enough to support PC-BSD.

  1. Install Pc Bsd From Usb Drive Free

Since all I really wanted was something that could play some games that my 4-year-old wanted, I wasn't willing to spend a ton of money on a new computer just yet. Better to wait a year or two until we really needed something better.PC-BSD only installing off a memory stick or off a DVD these days. I opted to go the DVD route because this computer didn't support booting off USB media as far as I could tell (I tried it on two machines: an old HP eVectra 933MHz box, and a slightly newer Dell Optiplex GX270).The summary of this hack is 'Copy all the files from /boot on the ISO image onto a hard disk that has been made bootable and use a USB expansion box to store the real DVD'.First, I needed to create a bootable hard disk. I put the hard disk that was going to be installed into the system info a USB expansion box and plugged it into my FreeBSD system. This gave me a disk as 'da0'.

This disk had an old Windows installation on it. All commands are run as root. You are advised to triple check your typing, as transposed letters and such might have adverse effects.Relabeling the DiskSince I had an old windows install on the disk, I just needed to delete the old windows partition and create a FreeBSD one.1.gpart delete -i 1 da02.gpart add -t!165 da03.gpart create -s bsd da0s14.gpart add -t!7 da0s1Did the trick. Your milage may vary at this stage. I've also used 'gpart delete -i X da0' and 'gpart destroy da0' to totally wipe a GPT scheme off the disk in the past. If you do that, you'll also need 'gpart create -s mbr da0' before proceeding to step 2 above. There's lots of other ways to skin this cat too involving dd, but since gpart has been added to the system, its so easy to use I prefer it for quick tasks like this so I don't have to remember 'do I need to blank the front of the disk, or the end of the disk.'

Making the disk bootableNext we need to make the disk bootable. This is a lot easier than it used to be in days of yore:1.gpart bootcode -b /boot/boot0 da02.gpart bootcode -b /boot/boot da0s1We have to make it bootable twice due to the multi-stage boot-loader that FreeBSD has (other systems are likely similar). 'boot0' just prompts for which partition to boot (doing the first one by default). 'boot' will then load /boot/loader to finish out the booting process and hand control over to FreeBSD's kernel.Copying The FilesThe pc-bsd installer for the DVD just loads a ram disk, and then runs off that.

All the early stages of the boot loader need are contained in /boot. This includes the kernel, the third stage boot loader and various config files and scripts. So the next steps are to copy these files from the cd onto the bootable hard disk we just made. This assumes that the mdconfig command below prints 'md0' for unit 0. If it prints anything else, you'll need to adjust accordingly. Also, if you are reading this in the future, you may need to change the PCBSD iso name.1.newfs /dev/da0s1a2.mount /dev/da0s1a /mnt3.mdconfig -f PCBSD8.1-x86-DVD.iso4.mount -t cd9660 /dev/md0 /cdrom5.mkdir /mnt/boot6.cd /cdrom/boot7.tar cf -.(cd /mnt/boot; tar xvf -)8.cd /9.umount /mnt10.umount /cdrom11.mdconfig -d -u 0Moving the diskAt this point, I had to unplug the USB expander from the first system, remove the hard drive and install it into my target box. I also grabbed my UBS DVD player and connected it to the box with a copy of the DVD I burned from the above file.

Install Pc Bsd From Usb Drive

Install Pc Bsd From Usb Drive Free

I selected hard disk as the boot media in the bios and let the system boot. It booted off the hard disk, but then started looking for the proper cd device. Luckily for me, it found the DVD on cd1 instead of cd0 (which is what was built-in to the Dell I was booting off of). It then became a 'normal' PC-BSD installation, which is described in detail elsewhere.Hopefully, people find these instructions useful. Since I only had one of these systems, I didn't create any kind of script to make it easier. Sorry.

Updated to fix problem noted in the comments.