扫一扫
关注微信公众号

疯狂DIY Ubuntu Linux系统是怎样练成的2
2007-07-20   中国IT实验室

现在你就进入系统了,高喊linux for human beings,大炼ubuntu,想干什么就干什么。

  # vi /etc/apt/sources.list #选择适合你的源

  # apt-get update

  # apt-get dist-upgrade

  # apt-get install 你想装的软件

  # apt-get clean

  …… #更多的配置

  最后离开你的那个操作系统

  # exit

  $ sudo umount $WORK/new/proc

  $ sudo rm $WORK/new/etc/resolv.conf

  现在你已经回到了你的初始状态中

  把manifest重新整一遍

  $ sudo chroot $WORK/new dpkg-query -W ——showformat='${Package} ${Version}\n' > $WORK/ubuntu-livecd/casper/filesystem.manifest

  然后做一下“磁盘清理”

  $ sudo dd if=/dev/zero of=$WORK/new/dummyfile

  $ sudo rm $WORK/new/dummyfile

  重新压缩系统

  $ sudo rm $WORK/ubuntu-livecd/casper/filesystem.squashfs

  $ cd $WORK/new

  $ sudo mksquashfs . $WORK/ubuntu-livecd/casper/filesystem.squashfs

  你的改动都保存了。现在把$WORK/new废掉

  $ cd $WORK

  $ sudo umount $WORK/new

  把文件的md5重新算一下

  $ cd $WORK/ubuntu-livecd

  $ sudo find . -type f -print0 |xargs -0 md5sum |sudo tee md5sum.txt

  建立光盘镜像,命令很长,忍受着点。

  $ cd $WORK

  $ sudo mkisofs -o ubuntu-new.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -r -V "My Cool Ubuntu Live CD" -cache-inodes -J -l ubuntu-livecd

  然后你就可以用iso把光盘烧了

  然后你就可以在别人前面耍酷了。最后,王子和公主过着幸福的生活。

热词搜索:

上一篇:疯狂DIY Ubuntu Linux系统是怎样练成的1
下一篇:Linux操作系统开机自行启动项目详细解析1

分享到: 收藏