UbiquityPreserveHome

Differences between revisions 4 and 5
Revision 4 as of 2007-11-13 20:15:45
Size: 4390
Editor: ool-44c0d208
Comment:
Revision 5 as of 2007-11-22 13:07:22
Size: 4390
Editor: 82-69-40-219
Comment: 6.06! :-)
Deletions are marked like this. Additions are marked like this.
Line 23: Line 23:
 * Bob has Ubuntu 6.04 installed, but wants to try Ubuntu 8.04. He does not want to have to upgrade multiple times or risk upgrading straight to 8.04.  * Bob has Ubuntu 6.06 installed, but wants to try Ubuntu 8.04. He does not want to have to upgrade multiple times or risk upgrading straight to 8.04.

Please check the status of this specification in Launchpad before editing it. If it is Approved, contact the Assignee or another knowledgeable person before making changes.

Summary

Extend the installer to allow the user to install Ubuntu while preserving the /home directory.

Release Note

Ubuntu now supports installations that preserve the /home directory when it already exists.

Rationale

Along with being an often requested feature, this would allow users to perform what amounts to a repair install by installing Ubuntu over top of itself while preserving the /home directory.

Use Cases

  • Joe installed Ubuntu and corrupted the system settings and files to the point where he wants to install Ubuntu again. He does not want to lose his documents and account settings.
  • Bob has Ubuntu 6.06 installed, but wants to try Ubuntu 8.04. He does not want to have to upgrade multiple times or risk upgrading straight to 8.04.

Design

We will add functionality to partman and ubiquity that checks to see if the requested root partition is not empty and contains a /home directory. If this is the case, debconf will present the user with a question similiar to the following:

This filesystem already seems to have some content on it.  Do you want to preserve this data and remove the following:
...list of directories and top-level files to be removed...

This question will be preseedable, so that OEMs can blindly say yes to it.

Implementation

Provided that the filesystem meets the requirements (ext3, not empty, has /home) and the user selects the preserve option, the following directories will be preserved:

/home
/srv
/root

Everything else will be deleted. This includes:

/bin
/boot
/dev
/etc
/lib
/lib32
/lib64
/proc
/sbin
/usr
/var
/sys
/initrd*
/vmlinuz*
  • The installer will ignore failures to remove any of these items. If a directory is serving as a mountpoint it will produce EBUSY on rm, for example.
  • If /home is a regular file, such as the case where /home is just a symlink, remove it.
  • If the user created during the install already exists in /home, reuse the UID and GID from /home for that user by preseeding them.

UI Changes

There will be no changes to the user interface aside from the question dialog. This feature should be mostly transparent to the user.

Migration

/etc/skel will not be imported.

Test/Demo Plan

Installs of Ubuntu over-top of itself will used to test this feature.

Outstanding Issues

Wouldn't it be wiser to not ignore errors and handle them properly? For instance, if a directory is indeed a mountpoint, we could use the existing logic to attempt to umount it first, then ask the user to if we are unable.

Are we leaving it up to the user to recreate entries in /etc/fstab for any users in /home?

BoF agenda and discussion

remove: /bin /boot /dev /etc /lib /lib32 /lib64 /proc /sbin /usr /var /sys /initrd* /vmlinuz*

preserve: /home /srv /root

warning saying, "this filesystem already seems to have some contents on it. If you want to go ahead I'll remove everything execept user data, but I'll remove the following:" "There is no guarentee, and you should back up your data." Needs to be a debconf question so OEMs can preseed it.

If the username already exists in /home, check the ID of that directory and use the same id. oem-config does the same thing. We just need to preseed the uid. Check gid as well.

don't worry about /etc/skel, but check user-setup to make sure it doesn't break things in this regard.

make sure /home is not a regular file. Remove it if it exists. It could be a symlink, in which case remove it.

Ignore failures to remove a directory. EBUSY will be triggered if it's a mount point.

Adding an option to the autopartitioner to enable all this functionality. Needs to meet the requirements: swap, ext3.

Logic to remove directories would need to be duplicated into a check for disk space available. Documentation: what we're removing we're not touching /etc/skel


CategorySpec CategorySpec

UbiquityPreserveHome (last edited 2009-09-24 05:19:16 by ua-178)