Moving /home data from old system to new Linux system

by LinuxTitli on May 1, 2006 · 2 comments

Recently my friend brought a new Laptop. He installed Red Hat Linux workstation 4.0. However, after installation he realized that he lost all his Mozilla thunderbird emails and Firefox bookmarks, chat client logs and other files.

I told him just copy all old files from /home/you to new system /home/you directory. He was trying some age-old tutorial from net, which explains how to copy files using tar and restore it back to new system. During this procedure, he was messing up with file system permission.

Finally, with frustration he brought both laptops to my place. I demonstrate both of following methods that can copy files in jiffy.

Copy all files and directories using scp
I quickly assigne both of his laptop new IP address and using scp I copied all files:

$ scp –r /home/you/. you@new-system:/home/you

OR

$ scp –r /home/you/. you@192.168.1.100:/home/you

Now everything is copied to new system (IP 192.168.1.100). And he got all his emails, bookmarks and files.

Appending a dot (.) symbol (current directory) is very important when you specify /home/you/ as a source path. If you skip dot in path it will only copy only normal files and scp will skip all hidden files.

Copy all files and directories using graphical method

  1. Login to old system
  2. Open two instants of Konqueror browser (i.e. open it two times)
  3. Go to first window and type in Location bar /home/yourname
  4. By default Konqueror will not display hidden files/directories. To see hidden files or folders use the Menubar View > Show Hidden Files option.
  5. Now select all files copy them (CTRL + C or Menubar Edit > Copy option)
  6. Now go to second Konqueror window and type in Location bar and type command: fish://you@newsystem
  7. You are using Konqueror with ssh to manage files on a Remote system called newsystem. You can use IP address instead of hostname.
  8. It will prompt for ssh password. Once logged in you can paste the files and folder
  9. Now just past all files and folder

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

We're here to help you make the most of sysadmin work. So, subscribe!

{ 2 comments… read them below or add one }

1 Anonymous May 2, 2006

Actually isn’t correct this: fish:you@newsystem

Type fish://you@newsystem instead :-}

Reply

2 LinuxTitli May 3, 2006

Thanks for the heads up

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 6 + 4 ?
Please leave these two fields as-is:
Are you a human being? Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: