由 moto » 週三 7月 07, 2004 4:38 pm
本文來自:
http://os208.nchc.org.tw/~klhaung
- 代碼: 選擇全部
使用partimage save/restore partition
(1)Diskless Workstation + Partition
由於 partimage 在備份 partition 時, 該 partition 必須是 umount 的,
所以製作 diskless workstation 的方式, 將該機器 boot 起來,
製作 diskless workstation 的方式請參考 debian-diskless.txt
基本的 diskless workstation 架設好後, chroot 安裝 partimage client
# chroot /var/lib/diskless/default/root
# apt-get install partimage
(2)Client端(Store):
# apt-get install partimage
# partimage
(操作請參考 http://palm208.nchc.gov.tw/package/partimage-doc/html/)
(要存放的位置, 寫得是server上的位置, 不是client的)
Note: 因為 partimage 只能將 partition 的資料 store 起來, 若是要將 mbr, partition table 存起來
則要要以下的指令
# dd if=/dev/hda of=hda.mbr -> store mbr 的資料
# sfdisk -d /dev/hda > hda.sf -> store partition table 的資料
(3)Client端(Restore):
# apt-get install partimage
先將 partition table / mbr restort
# dd if=hda.mbr of=/dev/hda
# sfdisk /dev/hda < hda.sf
# partimage
(操作請參考 http://palm208.nchc.gov.tw/package/partimage-doc/html/)
(4)Server端:
(4.1) 安裝 partimage server
# apt-get install partimage-server
(4.2) 啟動 partimage server
# vi /etc/partimaged/partimagedusers
------------------------------
partimageusers-> 允許連線的 user 名稱, 必須在 /etc/passwd 有相對應的 entity
------------------------------
# partimaged
# partimaged -D -> 啟動成 daemon mode
歡迎你來到MOTO學園一起討論Debian相關問題。
在post問題前可先別忘記了以下的步驟:
1:翻一下/usr/share/doc/中是否已經有解答了?
2:閱讀一下無痛起步是否已經提到了?
3:找一下google予以解答?
4:善用學園中的"搜尋"功能,往往答案就在裡面窩。