- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- rcp from server1 to server2 ..
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
04-22-2002 10:02 PM
04-22-2002 10:02 PM
I am using rcp to copy files from server1 (L2000) hp-Ux 11i to server2 (L1000) hp-Ux 11i.
In both the server, I can see 90 system is idle,
Can I speed up the rcp, (more priority).
(rcp is going very slow, total 10gig to copy)
Can I use nice command ?
Is it possible, if yes pelase ...
Thanks & Regards
Shah
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 10:13 PM
04-22-2002 10:13 PM
Solutionpossible network bottle neck?! Try to route to 100MB lan or faster (fibre optic) if available.
You can also try to compress the data before the copy :
find . | cpio ???ocB | compress | remsh srv2 ???cd /dir; uncompress| cpio ???icvdumB???
good luck,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 10:35 PM
04-22-2002 10:35 PM
Re: rcp from server1 to server2 ..
Thanks Thierry, for quick response.
I can't compress the source files, these are binaries.
Is there no otherway? at command level,
like nice command.
Please ...
Regards
Shah
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 10:36 PM
04-22-2002 10:36 PM
Re: rcp from server1 to server2 ..
rcp is not a cpu-intensive process. So reducing the nice value doesn't sound like a solution to your problem. It's more likely that the network bandwidth is the bottleneck. You can check by ftp'ing a small file across the 2 machines - on completion of the file transfer, it will display the data transfer rate. Form that, you can estimate the time required to transfer your file.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 10:39 PM
04-22-2002 10:39 PM
Re: rcp from server1 to server2 ..
Binaries *can* be compressed, just as long as you remember to uncompress them at the other end before running them.
Try doing this:
ON SOURCE MACHINE:
tar cvf mytar
ON DESTINATION MACHINE:
gunzip -c mytar.gz | tar xvf -

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 10:43 PM
04-22-2002 10:43 PM
Re: rcp from server1 to server2 ..
cd /sourcedir
find . | cpio ???ocB | compress | remsh server2 ???cd /targetdir; uncompress| cpio ???icvdumB???
EVERYTHING will copied (including links, special files, ...), and all will be compressed and uncompressed on the fly.
good luck,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 10:49 PM
04-22-2002 10:49 PM
Re: rcp from server1 to server2 ..
# lanadmin
to change
# lanadmin -X 100FD 0 (LAN card 0)
HTH
-Michael