BT3 USB版也可以刻成盘从cd启动
BT3 USB版也可以刻成盘从cd启动下载了USB的BT3后,也可以刻成DVD随身携带,可以为那些不能用USB启动的电脑使用.因为USB版比CD版支持的东西要多
解压缩找到make_iso.bat 文件后,打开编辑如下
@ECHO OFF
REM ----------------------------------------------------
REM Batch file to create bootable ISO in Windows
REM usage: make_iso.bat c:\new-slax.iso
REM author: Tomas M. <http://www.linux-live.org>
REM ----------------------------------------------------
if "%1"=="" goto error1
cd ..
set CDLABEL=SLAX
slax\tools\WIN\mkisofs.exe @slax\tools\WIN\config -o "%1" -A "%CDLABEL%" -V "%CDLABEL%" .
goto theend
:error1
echo A parameter is required - target ISO file.
echo Example: %0 c:\target.iso
goto theend
:error2
echo Can't recreate isolinux.bin, make sure your current directory is writable!
goto theend
:theend
echo.
echo New ISO should be created now.
pause
修改蓝色部分的地址,后执行make_iso.bat xxx.iso就可以了.
页:
[1]