📄 make_boot_iso
字号:
#!/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 + -