CNT5605 - 2016 Fall

Assignment: Linux From Scratch 7.10 (LFS 7.10) installation preliminaries

Objective

Build a new Linux From Scratch (LFS) system using QEMU's x86_64 emulation for your platform.

Assignment Details

Building Linux From Scratch (LFS) is a challenging and rewarding exercise for a system administrator. In doing this assignment, you will become thoroughly familiar with all of the parts of a Linux system.

To do this assignment, you will need to create two new QEMU image files:

% cd qemu-images
% qemu-img create salix.img 11G
% qemu-img create lfs.img 11G
      

Please use two 11 gigabyte partitions; LFS is a source code install with heavy testing requirements, and 11 gigabytes give you a generous amount of space to work in. Likewise, your host system should need about 11 gigabytes.

As to your "host system", please use Salix 14.2's XFCE install image. Salix is a Slackware distribution, and it is an outstanding platform to build LFS from.

Once you have your installation image, you can boot it and install Salix to the salix.img image:

% qemu-system-x86_64 -cdrom salix64-xfce-14.2.iso -hda salix.img -boot d -m 2048 -enable-kvm
      

Once you have installed Salix to the image salix.img, you can now boot it up, adding your target lfs.img image where you will begin building LFS 7.10:

% qemu-system-x86_64 -hda salix.img -hdb lfs.img -boot d -m 8192 -enable-kvm
      

The installation book for LFS 7.10 can be found here. Please start reading from the beginning, and do all of the installation work through the end of section 4.4 (creation of the LFS installation user.) Please note that your mount point /mnt/lfs should be pointed at /dev/sdb1.

Filesystem        Size    Used  Avail  Use%  Mounted on
/dev/root         10.8G    4.2G   6.1G   45%  /
/dev/sdb1         10.8     374M   9.9G    4%  /mnt/lfs
      

I would suggest adding an entry to /etc/fstab so that you don't have to remount /mnt/lfs by hand each time you reboot.

/dev/sdb1   /mnt/lfs     ext4   defaults   0   1
    

The admonitions in chapter 2 "Building LFS in stages" are an excellent checklist for making sure that your build is a success.

This preliminary work should be finished by Monday, October 17.

Please note that the final deliverables for this project will be a completed LFS 7.10 lfs.img file and a tar file containing a copy of your $LFS/tools directory made at the end of Chapter 5. These should be placed on a 16 gigabyte or larger flash drive, and given to me during my office hours. (If you don't have a suitable flash drive, I can lend you one; also, if my office hours are not convenient, let me know and we can schedule a different time.)

Extra credit opportunity: You can earn extra credit for each week that you turn this assignment early.

  1. Submit completed assignment by the 1st assignment deadline, October 17: 5 points.
  2. Submit completed assignment by the 2nd assignment deadline, October 24: 4 points.
  3. Submit completed assignment by the 3rd assignment deadline, October 31: 3 points.
  4. Submit completed assignment by the 4th assignment deadline, November 7: 2 points.