- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Move all user setting
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 11:16 PM
05-12-2005 11:16 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 11:42 PM
05-12-2005 11:42 PM
SolutionI would use rsync for transfer
Here is a meta script
create a directory on A called /transf
From B:
rsync -avz /etc user@A::/transf
rsync -avz /home/ user@A::/transf
on A:
diff /etc/* /transf/etc/* > diff_in_etc.txt
analyse diff_in_etc.txt
Copy the ones that are diff and that you know will not be a problem for A
Note this is just a meta untested script you should adapt it to your environment ex: use --rsh=ssh if you need security during tansfer etc.
Jean-Pierre Huc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 11:49 PM
05-12-2005 11:49 PM
Re: Move all user setting
Once you have checked the /trans/etc move this over to existing /etc and move /transf/home/* to /home using (tar, rsync, mv)
just how I would go about it realy !
Jean-Pierre Huc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 01:10 AM
05-13-2005 01:10 AM
Re: Move all user setting
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 03:44 AM
05-13-2005 03:44 AM
Re: Move all user setting
if you are okay to shut down server B, then boot server B with rescue CD. get in to the prompt, create a tar file from root (/) of what are all the directories and files needed and transfer them (ofcourse enable the network) to server A.
Go to server A, extract them from root prompt (/) and you should have all data from server B.
ofcourse, if you are 100% sure that data in server B can be taken without bringing down the server, then you dont need to shutdown the server B.
general syntax of tar command: tar -cvf tar-file.tar list of directories and files to be tar-ed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2005 01:52 AM
05-14-2005 01:52 AM
Re: Move all user setting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 01:43 AM
05-15-2005 01:43 AM