Go to TogaWare.com Home Page. GNU/Linux Desktop Survival Guide
by Graham Williams
Duck Duck Go



CLICK HERE TO VISIT THE UPDATED SURVIVAL GUIDE

ChRoot: Multiple Distributions

The chroot allows multiple installs on the one machine without rebooting! In this way you can then keep an older “stable” release that some applications might require, and run those applications as in:

sudo chroot /path/to/chroot /bin/sh

Set it up with (from http://www.debian.org/doc/manuals/reference/ch-tips.en.html#s-chroot):

  # cd / 
  # mkdir /sid-root
  # debootstrap sid /sid-root http://ftp.debian.org/debian/
     ... watch it download the whole system
  # echo "proc-sid /sid-root/proc proc none 0 0" >> /etc/fstab
  # mount proc-sid /sid-root/proc -t proc
  # cp /etc/hosts /sid-root/etc/hosts
  # chroot /sid-root /bin/bash
  # apt-setup # set-up /etc/apt/sources.list
  # vi /etc/apt/sources.list # point the source to unstable
  # dselect  # you may use aptitude, install mc and vim :-)

I tried with a local mirror but failed:

  # debootstrap sid /sid-root http://mirror.aarnet.edu.au/debian/
  I: Retrieving http://mirror.aarnet.edu.au/debian/pool/main/g/
     glibc/libc6_2.3.2-4_i386.deb
  E: Couldn't download libc6


Support further development by purchasing the PDF version of the book.
Other online resources include the Data Science Desktop Survival Guide.
Books available on Amazon include Data Mining with Rattle and Essentials of Data Science.
Popular open source software includes rattle and wajig.
Hosted by Togaware, a pioneer of free and open source software since 1984.
Copyright © Togaware Pty Ltd. . Creative Commons ShareAlike V4.