创建bash shell启动文件:
-
cat > /etc/profile << "EOF"
-
# Begin /etc/profile
-
-
export LANG=en_US.ISO-8859-1
-
-
# End /etc/profile
配置localnet脚本:
echo "HOSTNAME=zengcj-host" > /etc/sysconfig/network
创建/etc/hosts:
-
# Begin /etc/hosts (network card version)
-
127.0.0.1 localhost
-
# End /etc/hosts (network card version)
安装linux内核:
-
make mrproper
-
make LANG=en_US.ISO-8859-1 LC_ALL= menuconfig
-
make
-
make modules_install
-
cp -v arch/x86/boot/bzImage /boot/vmlinux-2.6.32.8-lfs-6.6
-
cp -v System.map /boot/System.map-2.6.32.8
-
cp -v .config /boot/config-2.6.32.8
-
install -d /usr/share/doc/linux-2.6.32.8
-
cp -r Documentation/* /usr/share/doc/linux-2.6.32.8
-
-
建立usb加载顺序文件:
-
install -v -m755 -d /etc/modprobe.d
-
cat > /etc/modprobe.d/usb.conf << "EOF"
-
# Begin /etc/modprobe.d/usb.conf
-
-
install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i ohci_hcd ; true
-
install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i uhci_hcd ; true
-
-
# End /etc/modprobe.d/usb.conf
-
EOF
配置grub:
-
grub-install --grub-setup=/bin/true /dev/sdb
-
-
grub-mkconfig -o /boot/grub/grub.cfg
-
-
grub-setup /dev/sdb
本来这里是前几天就做了,但是一直不能启动起来,设计到比较多的知识点。所以不得不将这部分知识好好的学一下。
本来对每部分的知识的学习是放在第二阶段的,但是没办法了,不能google只能自己解决了。
阅读(2325) | 评论(0) | 转发(0) |