- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: moving users and printers to another computer
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-19-2007 12:18 AM
09-19-2007 12:18 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 12:29 AM
09-19-2007 12:29 AM
Solutionfor printers:
You can use 'SAM' - 'Printers and Plotters' - 'LP Spooler' -> 'Save/Restore Spooler Configuration'
User's directories you can copy with rcp or after making a nfs-mount or store it to a tape ...
To create the users it should also be possible with a simple copy of /etc/passwd and /etc/group.
HTH
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 12:32 AM
09-19-2007 12:32 AM
Re: moving users and printers to another computer
Copy a set of printers from one server to another
On server "A"
Open "sam ->Printers and Plotters->LP Spooler-> Save/Restore Spooler Configuration"
Go to "Actions"
Click on 'Save Spooler Configuration'
Exit out of SAM
tar cvf /tmp/sam.tar /var/sam/lp
Transfer the sam.tar file to system B:/tmp.
On server "B"
tar xvf /tmp/sam.tar
You may need to change the permissions and ownership of these files. To do that run:
chmod -R 755 /var/sam/lp/* ; chown -R lp:bin /var/sam/lp/*
Open "sam ->Printers and Plotters->LP Spooler-> Save/Restore Spooler Configuration"
Go to "Actions"
Click on 'Restore Spooler Configuration'
Don't forget to restart the scheduler
Exit out of SAM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 01:06 AM
09-19-2007 01:06 AM
Re: moving users and printers to another computer
version of software unix? It sounded like you know with 11.11 and 11.0 uname -a shows it though. Or are you talking about different software (printer software?)
Only thing to add if the servers are trusted, just grabbing the /home/* /etc/passwd and /etc/group files will not be enough. You also need the /tcb/files/auth directory too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 07:40 AM
09-19-2007 07:40 AM
Re: moving users and printers to another computer
Printers: Use sam as mentioned, do not forget host file entries if using network based printers along with the Jet Direct utility.
Home: tar it up, ftp, untar
Users: If the system is not trusted, then just a copy of /etc/passwd and /etc/group. If it is trusted you will also need /tcb structure.
This all assumes you are ok with over writing the current configs on the destination server.