diff --git a/lfs-notes/p4_building_the_lfs_system/c10_making_system_bootable/c10_notes.md b/lfs-notes/p4_building_the_lfs_system/c10_making_system_bootable/c10_notes.md index 5edcaf7..3695966 100644 --- a/lfs-notes/p4_building_the_lfs_system/c10_making_system_bootable/c10_notes.md +++ b/lfs-notes/p4_building_the_lfs_system/c10_making_system_bootable/c10_notes.md @@ -87,8 +87,8 @@ insmod ext2 set root=(hd0,3) menuentry "GNU/Linux, Linux 6.10.5-lfs-12.2" { - linux /boot/vmlinuz-6.10.5-lfs-12.2 root=/dev/sda3 ro + linux /boot/vmlinuz-6.10.5-lfs-12.2 root=/dev/sdb3 ro } EOF ``` - +**NOTE:** We are using a two disks VM, where the second disk was used for LFS partitions. diff --git a/lfs-notes/p4_building_the_lfs_system/c9_system_configuration/c9_notes.md b/lfs-notes/p4_building_the_lfs_system/c9_system_configuration/c9_notes.md index d21f3ed..e5d64a0 100644 --- a/lfs-notes/p4_building_the_lfs_system/c9_system_configuration/c9_notes.md +++ b/lfs-notes/p4_building_the_lfs_system/c9_system_configuration/c9_notes.md @@ -22,9 +22,9 @@ bash /usr/lib/udev/init-net-rules.sh We need to setup the anticipated network interface. ``` cd /etc/sysconfig/ -cat > ifconfig.eth0 << "EOF" +cat > ifconfig.ens18 << "EOF" ONBOOT=yes -IFACE=eth0 +IFACE=ens18 SERVICE=ipv4-static IP=192.168.2.250 GATEWAY=192.168.2.1