Difference between revisions of "Installing Ubuntu on Debian"

From Linux-VServer

Jump to: navigation, search
(See also: - fix to internal link. stupid me)
(catspec)
 
(2 intermediate revisions by 2 users not shown)
Line 16: Line 16:
 
You will need the debootstrap script for your desired Ubuntu release (eg feisty, gusty, hardy).
 
You will need the debootstrap script for your desired Ubuntu release (eg feisty, gusty, hardy).
  
Check that you have the debootstrap script in <code>/usr/lib/debootstrap/scripts/</code>, eg <code>/usr/lib/debootstrap/scripts/gusty</code>.
+
Check that you have the debootstrap script in <code>/usr/share/debootstrap/scripts/</code>, eg <code>/usr/share/debootstrap/scripts/gusty</code>.
  
 
If you do not have the debootstrap script for your desired Ubuntu release, the easiest way is to download and install the latest debootstrap deb from [http://packages.debian.org/sid/debootstrap Debian sid].
 
If you do not have the debootstrap script for your desired Ubuntu release, the easiest way is to download and install the latest debootstrap deb from [http://packages.debian.org/sid/debootstrap Debian sid].
Line 22: Line 22:
 
If the script is not available in Debian sid, download Ubuntu's latest bootstrap release from [http://packages.ubuntu.com/search?keywords=debootstrap here]. (eg, as of August 2008, download the debootstrap deb for Hardy Heron). You want the debootstrap from the latest release, even if you want to install a previous release Ubuntu vserver guest.
 
If the script is not available in Debian sid, download Ubuntu's latest bootstrap release from [http://packages.ubuntu.com/search?keywords=debootstrap here]. (eg, as of August 2008, download the debootstrap deb for Hardy Heron). You want the debootstrap from the latest release, even if you want to install a previous release Ubuntu vserver guest.
  
Extract the Ubuntu scripts from the deb and place them in <code>/usr/lib/debootstrap/scripts/</code>.
+
Extract the Ubuntu scripts from the deb and place them in <code>/usr/share/debootstrap/scripts/</code>.
  
 
For example, do something like:
 
For example, do something like:
Line 45: Line 45:
 
* [[Installing 32-bit Fedora on 64-bit Debian]]
 
* [[Installing 32-bit Fedora on 64-bit Debian]]
 
* [[Upstart issues]]
 
* [[Upstart issues]]
 +
 +
[[Category:OS guest under linux-vserver]]

Latest revision as of 21:53, 21 October 2011

How to install an Ubuntu vserver guest on Debian.

Contents

[edit] Prepare debootstrap

[edit] What is a Debootstrap?

From Ubuntu Packages:

"debootstrap is used to create a Debian base system from scratch, without requiring the availability of dpkg or apt. It does this by downloading .deb files from a mirror site, and carefully unpacking them into a directory which can eventually be chrooted into."


So a debootstrap is basically something that will let you build your guest system.

[edit] Preparing

You will need the debootstrap script for your desired Ubuntu release (eg feisty, gusty, hardy).

Check that you have the debootstrap script in /usr/share/debootstrap/scripts/, eg /usr/share/debootstrap/scripts/gusty.

If you do not have the debootstrap script for your desired Ubuntu release, the easiest way is to download and install the latest debootstrap deb from Debian sid.

If the script is not available in Debian sid, download Ubuntu's latest bootstrap release from here. (eg, as of August 2008, download the debootstrap deb for Hardy Heron). You want the debootstrap from the latest release, even if you want to install a previous release Ubuntu vserver guest.

Extract the Ubuntu scripts from the deb and place them in /usr/share/debootstrap/scripts/.

For example, do something like:

$ cd /tmp
$ wget http://mirrors.kernel.org/ubuntu/pool/main/d/debootstrap/debootstrap_1.0.13.deb
$ dpkg --extract debootstrap_1.0.13_all.deb debootstrap-intrepid
$ sudo cp -P debootstrap-intrepid/usr/share/debootstrap/scripts/{warty,warty.buildd,hoary,hoary.buildd,breezy,dapper,edgy,feisty,intrepid} /usr/share/debootstrap/scripts/

[edit] Build

[edit] Build with guest architecture the same as host (eg. 32-bit guest on 32-bit host, 64-bit guest on 64-bit host etc.)

# vserver hardy-guest build -m debootstrap --context 42 --hostname hardy-guest --interface dummy0=eth0:10.0.0.123/8 --rootdir /var/lib/vservers -- -d hardy -m http://us.archive.ubuntu.com/ubuntu/

[edit] Build 32-bit guest on 64-bit host

# vserver hardy-guest-32 build -m debootstrap --context 42 --hostname hardy-guest-32 --interface dummy0=eth0:10.0.0.123/8 --rootdir /var/lib/vservers -- -d hardy -m http://us.archive.ubuntu.com/ubuntu/ -- --arch i386

Verify 32-bitness of guest:

host:# file /var/lib/vservers/hardy-guest-32/bin/ls
/var/lib/vservers/hardy-guest-32/bin/ls: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.0, dynamically linked (uses shared libs), for GNU/Linux 2.6.0, stripped

[edit] See also

Personal tools