⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 install.sh

📁 PC BIOS Boot Manager _within_ the Master Boot Record (MBR) Displays list of partitions and let user
💻 SH
字号:
#!/bin/sh
if [ -f /etc/hda.mbr ]; then
 echo mbrbm installation failed
 exit 1
fi
if [ ! -f mbrbm.bin ]; then
 echo mbrbm installation failed
 exit 1
fi
cp mbrbm.bin /etc
set -ex
cd /etc
rm -f hda.mbr
dd if=/dev/hda of=hda.mbr bs=1b count=1
if [ ! -f /etc/hda.mbr ]; then
 echo mbrbm installation failed
 exit 1
fi
dd if=mbrbm.bin of=hdambrbm.mbr bs=1 count=438
dd if=hda.mbr bs=1 skip=438 count=74 >>hdambrbm.mbr
MBRSIZE=`ls -l hdambrbm.mbr | awk '{print $5}'`
if [ ! "$MBRSIZE" -eq 512 ]; then
 echo mbrbm installation failed
 exit 1
fi
dd if=hdambrbm.mbr of=/dev/hda bs=1b count=1
# KEEP THE FILE /etc/hda.mbr AS BACKUP OF ORIGINAL MBR
exit

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -