dnschneid / crouton

Chromium OS Universal Chroot Environment
https://goo.gl/fd3zc
BSD 3-Clause "New" or "Revised" License
8.53k stars 1.24k forks source link

Multiple chroots with same DE #1057

Closed darkos closed 9 years ago

darkos commented 9 years ago

Is it possible, and how, to install several chroots with same DE but with different chroot name and have different "start" commands. Like:

  1. sudo startxfce4dev
  2. sudo startxfce4writing
  3. sudo startxfce4media
  4. I want one xfce for my software development
  5. one for my writing (where I install wine and some programs that are only on windows) - screenplay, novels, books writing
  6. One for light multimedia - audio sequencing and video editing
dnschneid commented 9 years ago

The easiest way is to use -n at install time to name your chroots differently, then add aliases to Chromium OS's ~/.bashrc using lines like: alias startxfce4writing='sudo startxfce4 -n writing'

darkos commented 9 years ago

Thank you so much. I did what you've suggested and that did it.

darkos