First project of the Kernel branch @42. The purpose is to create a simple LFS that will be used to create your own Linux distribution on which you will work for the next projects.
- Disk partitioning
- You must use at least 3 different partitions. (root, /boot and a swap partition)
- Build of cross-compilation tools
- Packages from sources
- You must use a software for central management and configuration, like SysV or SystemD
- kernel configuration & build
- You must use a kernel version >= 4.0. Stable or not, as long as it’s a 4.0 >= version
- The kernel sources must be in /usr/src/kernel-$(version)
- The kernel binary located in /boot must be named like this: vmlinuz-<linux_version>-<student_login>
- system configuration
- The distribution hostname must be your student login
- Your distribution must boot with a boot loader, like LILO or GRUB
- internet connection
- Get a host system running. On which the LFS system will be built.
- Partition disk for LFS.
- Build cross toolchain on host for LFS.
- Chang root to $LFS in order to log into LFS.
- Build tools and bins for LFS.
- Configure and Build Linux Kernel for LFS.
- Setup Grub to load LFS, configuration for udev and sysV and network etc.
- Reboot.
Here we ill create three partitions: the boot, swap and root.
To start eh program type:
fdisk /dev/sdb
Using fdisk. +1M size and change type to 4(BIOS BOOT) type.
-
Type n to create a new partition, fdisk will display:
Command (m for help): nCommand actione extendedp primary partition (1-4)
-
Select p to select a primary partition, (/dev/hda1)
-
Then 1 to select the first primary partition.
-
Then choose the default the 1-xxxxx refers to the number of cylinders on your specific drive, which will vary according to size.
-
Hit enter for the default
First cylinder (1-xxxx, default 1)
-
Then fdisk will display:
Last cylinder or +size or +sizeM or +sizeK (1-xxxx, default xxxx):
- For this part you will create a 100MB boot partition, so enter +100m
- If you print the partition (p), it should display your partitions
-
Follow the same procedure for creating the boot partition,
- Type n to create a new partition, fdisk will display
- Select p to select a primary partition,
- Then 2 to select the second primary partition. (/dev/hda2)
-
fdisk will start at the next available cylinder(196), hit for the default.
enter
-
Then type +512M to create a partition 512MB swap partition
-
Now, type t to set the partition type, 2 to select the partition you just created and then type in 82 to set the partition type to "Linux Swap".
All default and finally hit w to Save fdisk.
- boot and root to ext2 or ext4 file system:
mkfs.ext4(ext2) -v /dev/sdb4
- initialize swap partition:
mkswap /dev/sdb3
- activate swap partition:
swapon /dev/sdb3
mount /dev/sbd3 $LSF
Download Sources from wget list for next step
I find some Sources can not be downloaded by wget. Then go to web and download the source zip yourself and scp into the machine.
cat > ~/.bash_profile << "EOF"
exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash
EOF
cat > ~/.bashrc << "EOF"
set +h
umask 022
LFS=/mnt/lfs
LC_ALL=POSIX
LFS_TGT=$(uname -m)-lfs-linux-gnu
PATH=/usr/bin
if [ ! -L /bin ]; then PATH=/bin:$PATH; fi
PATH=$LFS/tools/bin:$PATH
CONFIG_SITE=$LFS/usr/share/config.site
export LFS LC_ALL LFS_TGT PATH CONFIG_SITE
EOF
source ~/.bash_profile
follow the tutorial step and step. It’s well explained how to compile all.
- Binutils-2.40 - Pass 1
- GCC-12.2.0 - Pass 1
- Linux-6.1.11 API Headers
- Glibc-2.37
- Libstdc++ from GCC-12.2.0
- M4-1.4.19
- Ncurses-6.4
- Bash-5.2.15
- Coreutils-9.1
- Diffutils-3.9
- File-5.44
- Findutils-4.9.0
- Gawk-5.2.1
- Grep-3.8
- Gzip-1.12
- Make-4.4
- Patch-2.7.6
- Sed-4.9
- Tar-1.34
- Xz-5.4.1
- Binutils-2.40 - Pass 2
- GCC-12.2.0 - Pass 2
enter Chroot enviroment. change to /mnt/lfs as root. So go into the system we are building.
chroot "$LFS" /usr/bin/env -i \
HOME=/root \
TERM="$TERM" \
PS1='(lfs chroot) \u:\w\$ ' \
PATH=/usr/bin:/usr/sbin \
/bin/bash --login
- Man-pages-6.03
- Iana-Etc-20230202
- Glibc-2.37
- Zlib-1.2.13
- Bzip2-1.0.8
- Xz-5.4.1
- Zstd-1.5.4
- File-5.44
- Readline-8.2
- M4-1.4.19
- Bc-6.2.4
- Flex-2.6.4
- Tcl-8.6.13
- Expect-5.45.4
- DejaGNU-1.6.3
- Binutils-2.40
- GMP-6.2.1
- MPFR-4.2.0
- MPC-1.3.1
- Attr-2.5.1
- Acl-2.3.1
- Libcap-2.67
- Shadow-4.13
- GCC-12.2.0
- Pkg-config-0.29.2
- Ncurses-6.4
- Sed-4.9
- Psmisc-23.6
- Gettext-0.21.1
- Bison-3.8.2
- Grep-3.8
- Bash-5.2.15
- Libtool-2.4.7
- GDBM-1.23
- Gperf-3.1
- Expat-2.5.0
- Inetutils-2.4
- Less-608
- Perl-5.36.0
- XML::Parser-2.46
- Intltool-0.51.0
- Autoconf-2.71
- Automake-1.16.5
- OpenSSL-3.0.8
- Kmod-30
- Libelf from Elfutils-0.188
- Libffi-3.4.4
- Python-3.11.2
- Wheel-0.38.4
- Ninja-1.11.1
- Meson-1.0.0
- Coreutils-9.1
- Check-0.15.2
- Diffutils-3.9
- Gawk-5.2.1
- Findutils-4.9.0
- Groff-1.22.4
- GRUB-2.06
- Gzip-1.12
- IPRoute2-6.1.0
- Kbd-2.5.1
- Libpipeline-1.5.7
- Make-4.4
- Patch-2.7.6
- Tar-1.34
- Texinfo-7.0.2
- Vim-9.0.1273
- Eudev-3.2.11
- Man-DB-2.11.2
- Procps-ng-4.0.2
- Util-linux-2.38.1
- E2fsprogs-1.47.0
- Sysklogd-1.5.1
- Sysvinit-3.06
/etc/fstab file
/dev/sda4 / ext4 defaults 1 1 /dev/sda2 /boot ext2 defaults 1 1 /dev/sda3 swap swap pri=1 0 0
In make menuconfig
gui. Go general setting, set local version to -login
General setup --->
Local Version. [add your login here]
Processor type and features --->
[*] Build a relocatable kernel [CONFIG_RELOCATABLE]
[*] Randomize the address of the kernel image (KASLR) [CONFIG_RANDOMIZE_BASE]
General setup --->
[ ] Compile the kernel with warnings as errors [CONFIG_WERROR]
< > Enable kernel headers through /sys/kernel/kheaders.tar.xz [CONFIG_IKHEADERS]
General architecture-dependent options --->
[*] Stack Protector buffer overflow detection [CONFIG_STACKPROTECTOR]
[*] Strong Stack Protector [CONFIG_STACKPROTECTOR_STRONG]
Device Drivers --->
Graphics support --->
Frame buffer Devices --->
<*> Support for frame buffer devices --->
Console display driver support --->
[*] Framebuffer Console support [CONFIG_FRAMEBUFFER_CONSOLE]
Generic Driver Options --->
[ ] Support for uevent helper [CONFIG_UEVENT_HELPER]
[*] Maintain a devtmpfs filesystem to mount at /dev [CONFIG_DEVTMPFS]
[*] Automount devtmpfs at /dev, after the kernel mounted the rootfs [CONFIG_DEVTMPFS_MOUNT]
Enable some additional features if you are building a 64-bit system. If you are using menuconfig, enable them in the order of CONFIG_PCI_MSI first, then CONFIG_IRQ_REMAP, at last CONFIG_X86_X2APIC because an option only shows up after its dependencies are selected.
Processor type and features --->
[*] Support x2apic [CONFIG_X86_X2APIC]
Device Drivers --->
[*] PCI Support ---> [CONFIG_PCI]
[*] Message Signaled Interrupts (MSI and MSI-X) [CONFIG_PCI_MSI]
[*] IOMMU Hardware Support ---> [CONFIG_IOMMU_SUPPORT]
[*] Support for Interrupt Remapping [CONFIG_IRQ_REMAP]
// connect to internet
[*] Networking support ---> [CONFIG_NET]
Networking options --->
<*> Packet socket [CONFIG_PACKET]
<*> The IPv6 Protocol ---> [CONFIG_IPV6]
//briging
[*] Networking support ---> [CONFIG_NET]
Networking options --->
<*/M> 802.1d Ethernet Bridging [CONFIG_BRIDGE]
// wifi
[*] Networking support ---> [CONFIG_NET]
[*] Wireless ---> [CONFIG_WIRELESS]
<*/M> cfg80211 - wireless configuration API [CONFIG_CFG80211]
< /*/M> Generic IEEE 802.11 Networking Stack (mac80211) [CONFIG_MAC80211]
Device Drivers --->
[*] Network device support ---> [CONFIG_NETDEVICES]
[*] Wireless LAN ---> [CONFIG_WLAN]
Master section --->
Subsection --->
[*] Required parameter [CONFIG_REQU_PAR]
<*> Required parameter (not as module) [CONFIG_REQU_PAR_NMOD]
<*/M> Required parameter (could be a module) [CONFIG_REQU_PAR_MOD]
<*/M/ > Optional parameter [CONFIG_OPT_PAR]
[ ] Incompatible parameter [CONFIG_INCOMP_PAR]
< > Incompatible parameter (even as module) [CONFIG_INCOMP_PAR_MOD]
Just compile as LFS says, nothing special.
grub-install /dev/sda
copy bin to boot directory:
cp -iv arch/x86/boot/bzImage /boot/vmlinuz-5.13.12-login
configure:
cat > /boot/grub/grub.cfg << "EOF"
# Begin /boot/grub/grub.cfg
set default=0
set timeout=5
insmod ext2
set root=(hd0,2)
menuentry "GNU/Linux, Linux 6.1.11-lfs-11.3" {
linux /vmlinuz-6.1.11-lfs-11.3 root=/dev/sda2 ro
}
EOF
udev is a generic device manager runing as a daemon on a linux system and listening to uevents the kernel sends out if a new device is initialised or a device is removed from the system.
SysVinit (which will be referred to as “init” from now on) uses a run levels scheme. There are seven run levels, numbered 0 to 6. (Actually, there are more run levels, but the others are for special cases and are generally not used. See init(8)
for more details.) Each one of the seven corresponds to actions the computer is supposed to perform when it starts up or shuts down. The default run level is 3. Here are the descriptions of the different run levels as they are implemented in LFS:
0: halt the computer
1: single-user mode
2: reserved for customization, otherwise the same as 3
3: multi-user mode with networking
4: reserved for customization, otherwise the same as 3
5: same as 4, it is usually used for GUI login (like GNOME's gdm or LXDE's lxdm)
6: reboot the computer
Boot loader is a program the is responsible for booting a computer.
There are two ways to connect to the Internet. Using static ip to connect or use DHCP to allocate ip for you.
Both method all involve in setting /etc/sysconfig/ifconfig.<interface, enp0s3>
and ****/etc/resolv.conf****
for setting up interface and DNS server ip.
here is an example of static ip address setting. Often times it might not be working because the ip value is not suitable in the network.
ifconfig.enp0s3
ONBOOT=yes
IFACE=enp0s3
SERVICE=ipv4-static
IP=192.168.1.2
GATEWAY=192.168.1.1
PREFIX=24
BROADCAST=192.168.1.255
resolve.conf
nameserver 8.8.8.8
This method need to install DHCP-4.4.3-P1 so that the protocol could manage the allocation of ip for your. Follow the tutorial and finishing installing the program. Then create the following files.
ifconfig.enp0s3
ONBOOT="yes"
IFACE="enp0s3"
SERVICE="dhclient"
DHCP_START=""
DHCP_STOP=""
PRINTIP="yes"
PRINTALL="yes"
resolve.conf will be autogenerated by dhclient.
Just reboot to test the connection to internet.