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

📄 make_boot_iso

📁 Linux嵌入式设计配套光盘,学习嵌入式设计可参考
💻
字号:
#!/bin/sh# This script will create a bootable iso image for burning onto a boot CD. The# contents of the image is taken from the directory provided.if [ "$2" = "" ]then  echo "usage: $0 <iso_image> <root_fs>"  exit 1fi#mkisofs -o $1 -b isolinux/isolinux.bin -c isolinux/boot.cat\#  -no-emul-boot -boot-info-table -hide-rr-moved -r -J $2# Use -R to save owners and permissions.# Eliminate any emacs backups (*~).mkisofs -o $1 -b isolinux/isolinux.bin -c isolinux/boot.cat\  -no-emul-boot -boot-info-table -hide-rr-moved -R -J -m '*~' $2

⌨️ 快捷键说明

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