Debian LiveCD: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
Line 7: Line 7:
<pre>
<pre>
apt-get install debootstrap
apt-get install debootstrap
</pre>


<pre>
mkdir livecd
mkdir livecd
debootstrap --arch powerpc squeeze /root/livecd http://ftp.us.debian.org/debian
</pre>
</pre>


=Links=
=Links=

Revision as of 11:51, 18 August 2012

Introduction

  • Sometimes we need to boot Linux without HDD e.g. if you want to experiment with HDD encryption, enable/disable it without causing damage to your data. For such cases we need a LiveCD which doesn't mount HDD at boot.

Creating LiveCD with debootstrap

apt-get install debootstrap

mkdir livecd

debootstrap --arch powerpc squeeze /root/livecd http://ftp.us.debian.org/debian

Links