4G空间,分为了/boot 60M /为2G,没有分配/home空间和swap分区
在光盘的MagicLinux\base\specinfo.py中看见
autopart_profile = {
'default' : ["Single partition with swap",
("SWAP", "SWAP", "512M"),
("/", "ext3", "100%")],
'common' : ["Separated /boot, /, /home",
("/boot", "ext2", "64M"),
("/", "ext3", "2000M"),
("/home", "ext3", "0")],
'custom' : ["Customed autopart profile",
("SWAP", "SWAP", "512M"),
("/", "ext3", "2000M"),
("/usr/local", "ext3", "1500M"),
("/tmp", "ext3", "200M"),
("/home", "ext3", "0")]
} |