  vukodlak75 Nisam Ti Dude Premium,MVM join:2001-10-27 Beachwood, OH clubs: 
| Transfer Settings
Hi all. I've been trying out quite a few of Linux Distros (past 4 months) in VMWare on Windows. I've finally decided to install Ubuntu Studio on my workstation as the only OS. I had Ubuntu Studio installed in a VM and want to move my home folder from the VM to the real workstation to preserve some settings for the applications (Thunderbird, Firefox, PAN, etc.). I've tried to just move the thunderbird folder (.mozilla folder) and when I opened up thunderbird all my email accounts were there (cool) but my extensions (add ons) were not working. I'm assuming permissions?
Anyone have experience in moving these type of folders from one workstation to another? If so, is there anything I need to know that would ease the migration? -- "When the rich wage war, it's the poor who die." |
|
  PetePuma How many lumps do you want Premium,MVM join:2002-06-13 Arlington, VA | If it's just a few apps, it's probably easier to just set them up again. As you're finding, there is not much consistency in where various things are stored among the different distributions. |
|
  Sir MeowMix III
@windstream.net
from: vukodlak75 
| reply to vukodlak75 OP is running Ubuntu Studio in the VM as well as the main PC.
tar-gzip your home directory, transfer it over, then untar-gunzip it.
tar --create --file=/home/`whoami`.tgz --gzip /home/`whoami`
Then, transfer /home/`whoami`.tgz to the non-VM machine, and:
tar -zxvf `whoami`.tgz
This assumes your username is the same on both systems, if not, modify to suit.
A "chown -R `whoami`:`whoami` /home/`whoami`" would fix any ownership issues. |
|
  PetePuma How many lumps do you want Premium,MVM join:2002-06-13 Arlington, VA | True. I misread what he wanted to do -- since it's the same base OS, you should be able to take the whole home dir and restore it as MeowMix said. |
|
  vukodlak75 Nisam Ti Dude Premium,MVM join:2001-10-27 Beachwood, OH clubs:  | Worked great, thanks you two . |
|