- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- 1 Trusted system 1 Non-Trusted system
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
09-06-2006 08:29 AM
09-06-2006 08:29 AM
I am in the process of moving a production l2000 system to a new RP3410. The production system is trusted. The new system is not. To get the user accounts over, I was planning on copying the production system /etc/passwd file to the new system, then running tsconvert.
Is this the way to go?
TIA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 08:38 AM
09-06-2006 08:38 AM
Re: 1 Trusted system 1 Non-Trusted system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 08:45 AM
09-06-2006 08:45 AM
Re: 1 Trusted system 1 Non-Trusted system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 09:33 AM
09-06-2006 09:33 AM
Re: 1 Trusted system 1 Non-Trusted system
You may want to copy the /etc/group file and create the /home directories also.
Sp,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 10:06 AM
09-06-2006 10:06 AM
Re: 1 Trusted system 1 Non-Trusted system
I would:
1) Convert the new system to trusted.
2) Copy /etc/passwd, /etc/group and the /tcb directory structure from the old system to the new.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 10:07 AM
09-06-2006 10:07 AM
Solutioncd /
tar xvf /tmp/passwd.tar /tcb /etc/passwd /etc/group /home
Now ftp, rcp, /tmp/passwd.tar to the new box.
Next login as root on the new box in at least two sessions so that you can get yourself out of trouble as fast as you got yourself in.
cp /etc/passwd /etc/passwd.safe
cp /etc/group /etc/group.safe
cd /
tar xvf /tmp/passwd.tar
This will copy the passwd, group, and the entire /tcb and /home directories in one swoop.
Now logout of ONE of your root session and attempt to login as root using the passwd of the original system. You should be good to go.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 10:12 AM
09-06-2006 10:12 AM
Re: 1 Trusted system 1 Non-Trusted system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 11:15 AM
09-06-2006 11:15 AM
Re: 1 Trusted system 1 Non-Trusted system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 11:56 AM
09-06-2006 11:56 AM
Re: 1 Trusted system 1 Non-Trusted system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 02:28 AM
09-11-2006 02:28 AM
Re: 1 Trusted system 1 Non-Trusted system
Thanks again!