Booting Ubuntu Netbook Remix from USB, migrating vanilla install packages & home

Asked by Cory Helfrich

Hello,

I received a Windows version of a Toshiba NB100 as a gift. I installed Ubuntu Netbook Remix from a USB drive following the instructions at https://wiki.ubuntu.com/UNR. Everything work great. I now would like to create a bootable USB to use as a rescue disk. How do I do this?

Thanks,
Cory

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Netbook Remix Edit question
Assignee:
No assignee Edit question
Solved by:
Fabián Rodríguez
Solved:
Last query:
Last reply:
Revision history for this message
Fabián Rodríguez (magicfab) said :
#1

The .img file at that URL is exactly that: a "plug in, boot, erase everything" bootable image.

Revision history for this message
Cory Helfrich (coryhelfrich) said :
#2

Thanks for the reply, Fabián!

I have installed Ubuntu Netbook Remix and made some seetings changes and installed additional packages. If I boot from the USB I created to install Ubuntu Netbook Remix, will I have to change these settings and re-install the additional packages? Is there a way to back this information up?

Thanks,
Cory
Cory Helfrich
<email address hidden>

----- Original Message ----
> From: Fabián Rodríguez <email address hidden>
> To: <email address hidden>
> Sent: Friday, January 23, 2009 8:47:10 AM
> Subject: Re: [Question #58232]: Booting Ubuntu Netbook Remix from USB
>
> Your question #58232 on Ubuntu Netbook Remix changed:
> https://answers.edge.launchpad.net/netbook-remix/+question/58232
>
>     Status: Open => Answered
>
> Fabián Rodríguez proposed the following answer:
> The .img file at that URL is exactly that: a "plug in, boot, erase
> everything" bootable image.
>
> --
> If this answers your question, please go to the following page to let us
> know that it is solved:
> https://answers.edge.launchpad.net/netbook-remix/+question/58232/+confirm?answer_id=0
>
> If you still need help, you can reply to this email or go to the
> following page to enter your feedback:
> https://answers.edge.launchpad.net/netbook-remix/+question/58232
>
> You received this question notification because you are a direct
> subscriber of the question.

      __________________________________________________________________
Instant Messaging, free SMS, sharing photos and more... Try the new Yahoo! Canada Messenger at http://ca.beta.messenger.yahoo.com/

Revision history for this message
Best Fabián Rodríguez (magicfab) said :
#3

Yes, you will have to reinstall those as they will be wiped out.

To create a list of all installed packages on any given system:
sudo dpkg --get-selections > /some/file

Keep /some/file and restore it on the target system.

To restore a system using such a list:
sudo dpkg --set-selections < /some/file
sudo apt-get -y update
sudo apt-get dselect-upgrade

Because you used a vanilla Ubuntu install in your current setup, there may be packages that are not available in UNR (as it uses an lpia architecture).

Regarding other settings you can try making a full backup of your /home directory on a ext3 formatted key (this preserving file rights, ownership, etc).

Boot in recovery mode in your UNR install, then rename the existing /home dir (as safety measure, don't erase just yet), then recover the backup /home in its place.

Booting in recovery mode is not easy, but can be done :) See:
https://help.ubuntu.com/community/DellMini9#Booting%20into%20Recovery%20mode

Revision history for this message
Cory Helfrich (coryhelfrich) said :
#4

Thanks, Fabián