Debian LiveCD: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
Line 2: Line 2:


* 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.
* 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=
<pre>
apt-get install debootstrap
</pre>
<pre>
mkdir livecd
</pre>


=Links=
=Links=

Revision as of 11:50, 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

Links