%general-entities; ]> Mounting the New Partition Now that a file system has been created, the partition must be mounted so the host system can access it. This book assumes that the file system is mounted at the directory specified by the LFS environment variable described in the previous section. Create the mount point and mount the LFS file system with these commands: mkdir -pv $LFS mount -v -t ext4 /dev/<xxx> $LFS Replace <xxx> with the name of the LFS partition. If you are using multiple partitions for LFS (e.g., one for / and another for /home), mount them like this: mkdir -pv $LFS mount -v -t ext4 /dev/<xxx> $LFS mkdir -v $LFS/home mount -v -t ext4 /dev/<yyy> $LFS/home Replace <xxx> and <yyy> with the appropriate partition names. Ensure that this new partition is not mounted with permissions that are too restrictive (such as the or options). Run the mount command without any parameters to see what options are set for the mounted LFS partition. If and/or are set, the partition must be remounted. The above instructions assume that you will not restart your computer throughout the LFS process. If you shut down your system, you will either need to remount the LFS partition each time you restart the build process, or modify the host system's &fstab; file to automatically remount it when you reboot. For example, you might add this line to your &fstab; file: /dev/<xxx> /mnt/lfs ext4 defaults 1 1 If you use additional optional partitions, be sure to add them also. If you are using a swap partition, ensure that it is enabled using the swapon command: /sbin/swapon -v /dev/<zzz> Replace <zzz> with the name of the swap partition. Now that the new LFS partition is open for business, it's time to download the packages.