4
Is it possible to set up a single shared desktop folder for multiple linux installations on a dual-boot computer? I'd like multiple Linux installations on one computer to share a single desktop. I'm also currently using Ubuntu 64 bit.
4
Is it possible to set up a single shared desktop folder for multiple linux installations on a dual-boot computer? I'd like multiple Linux installations on one computer to share a single desktop. I'm also currently using Ubuntu 64 bit.
5
I believe you'd most likely want to have a /home
partition shared between all your installations. That way, all per-user customizations will be shared, but all distro-specific system configuration is separate.
When you install your system for the first time, you usually can select custom partitioning, and there also choose existing partitions and specify a mount point for those. That would be the easiest approach. So for your first system you'd do custom partitioning, create new partitions as you want them, have one of them for this linux /
, one for /home
, and both of these newly formatted. For subsequent installs, you'd use one of the other partitions for /
after formatting, and the existing file system for /home
without formatting.
If you want to start from an existing system, things become difficult and errors might have severe consequences. You'd have to
fstab
entry for the new mountcp -a
stuff from old to new homeSome further aspects you should be aware of:
/etc/passwd
and /etc/group
map those to names. You should ensure that the mappings for users are the same on both systems. There usually are a a large number of system accounts for various services, but only very few user accounts. And most distros these days might allocate ids in the same way. So it might work out automatically, but if files suddenly become inaccessible, this would be the likely cause.Yes, I would like to do that. – Anderson Green – 2012-07-12T01:03:01.380
What steps will I need to take in order to accomplish this? – Anderson Green – 2012-07-12T01:03:27.463
2
If you put that folder on a separate partition, you can just mount that partition to the desktop folder on boot :)
What is a "single desktop"? – fmanco – 2012-07-11T23:41:10.760