Difference between revisions of "Debootstrap Ubuntu from Gentoo"
From NAS-Central Buffalo - The Linkstation Wiki
(New page: ==Why?== The original way of installing Ubuntu is to use a temporary installation of Debian. This small guide is for people who already have a running system,...) |
m |
||
Line 1: | Line 1: | ||
+ | {{Articles|Kurobox|Debian|Gentoo}} | ||
==Why?== | ==Why?== | ||
The [[Ubuntu_installation_guide|original way of installing Ubuntu]] is to use a temporary installation of Debian. This small guide is for people who already have a running system, such as Gentoo. | The [[Ubuntu_installation_guide|original way of installing Ubuntu]] is to use a temporary installation of Debian. This small guide is for people who already have a running system, such as Gentoo. |
Revision as of 15:17, 6 September 2007
Why?
The original way of installing Ubuntu is to use a temporary installation of Debian. This small guide is for people who already have a running system, such as Gentoo.
How?
First, prepare your target partition with 'fdisk' and 'mkfs.ext3'. I'll assume your target partition is mounted at /mnt/ubuntu/
Now emerge debootstrap:
$ sudo emerge -av debootstrap
By default, debootstrap only has package information for Debian, not for Ubuntu. We'll need to get the Ubuntu equivalent:
$ sudo su - # cd /usr/lib/debootstrap/scripts/ # wget http://food.fishcracker.net/~stock/debootstrap-feisty.tar.gz # tar -xzvf debootstrap-feisty.tar.gz
Now start the debootstrap:
# debootstrap --arch powerpc feisty /mnt/ubuntu http://archive.ubuntu.com/ubuntu/
Then continue according to the Ubuntu using temporary Debian guide.