我要怎麼自己從無到有做一個Clonezilla live ? |
1. 下載clonezilla live 1.2.0-25 (含)以後的版本
2. 用上述版本來開機之後選擇好語言與鍵盤後,選擇"Start_Clonezilla" -> "device-image",然後掛載一個空間夠的分割區(必須是Linux的檔案系統,例如ext3, reiserfs等,不可用FAT或是NTFS的分割區)成為/home/partimag目錄來當工作目錄,建議選用local_dev,因為NFS之類的網路磁碟目錄和aufs/squashfs等相容性有些問題,製作的時候可能會失敗.
3. 在選擇要備份硬碟/分割區或者還原的時候,選擇"exit",進入命令列
4. 執行"sudo su -"
5. 執行ocs-live-netcfg來設定網路,以便待會製作Debian Live程式需要.
5. cd /home/partimag/
6. apt-get update; apt-get -y install live-helper cdebootstrap
7. 如果你要特別版本的核心,只要確認Debian套件庫中有的話,例如你要2.6.18-6或是2.6.24-etchnhalf.1的核心,就這樣執行:
create-debian-live -l e -b unstable -k 2.6.18-6 -i customized
或是
create-debian-live -l e -b unstable -k 2.6.24-etchnhalf.1 -i customized
(-l e是說要使用DRBL套件庫中live-experimental (也同時包含了live-stable, live-testing, live-unstable分類的程式), -b unstable表示要使用DRBL套件庫中的unstable(也就包含stable, testing分類)。套件庫中的程式可以參考這裡http://free.nchc.org.tw/drbl-core/pool/drbl/).
順利的話,執行完後就會產生檔名為debian-live-for-ocs-customized.iso的Debian live。這個Debian Live我們就可以用來製作Clonezilla live.
如果你不要選用特別版本的核心,而是讓程式自動選的話,就不需要下"-k 2.6.18-6"(只有Debian Lenny可以,Etch的話一定要指定核心版本),也就是執行:
create-debian-live -l e -d lenny -b unstable -i customized
或者
create-debian-live -d lenny -i customized
更多create-debian-live的參數可以經由執行"create-debian-live --help"來查詢.
8. 執行:
ocs-iso -s -j debian-live-for-ocs-customized.iso -i customized
ocs-live-dev -c -s -j debian-live-for-ocs-customized.iso -i customized
就可以分別產生clonezilla-live-customized.iso與clonezilla-live-customized.zip的Clonezilla live了.
 |
|