- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Copy file from the host pc to the client hpux
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-22-2007 05:56 AM
05-22-2007 05:56 AM
Copy file from the host pc to the client hpux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:00 AM
05-22-2007 06:00 AM
Re: Copy file from the host pc to the client hpux
From your pc under a command prompt:
ftp hostname
Login using your UNIX login and password.
cd /xxx/yyy/yourdir
[optional enter "BIN" or "ASCII" depending upon whether you want file transfers without any changes (binary) or CR/LF conversions (ASCII)]
get filename
quit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:02 AM
05-22-2007 06:02 AM
Re: Copy file from the host pc to the client hpux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:06 AM
05-22-2007 06:06 AM
Re: Copy file from the host pc to the client hpux
I assume that you have the cd mounted on your unix host. Use ftp on your PC to transfer the file and then copy the file to a writable CD on your PC.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:07 AM
05-22-2007 06:07 AM
Re: Copy file from the host pc to the client hpux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:09 AM
05-22-2007 06:09 AM
Re: Copy file from the host pc to the client hpux
ftp
scp
rcp
If you don't know how to use those commands, have a read through the man pages.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:14 AM
05-22-2007 06:14 AM
Re: Copy file from the host pc to the client hpux
Now please explain what your subject line has to do with the actual question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:16 AM
05-22-2007 06:16 AM
Re: Copy file from the host pc to the client hpux
rcp -p /home/ftp/pub/eptc/dyn/data ux_pt/adacs/bin. ux_pt is the name of the uxhp workstation.Here is what I got after I ran it: rcp: /home/ftp/pub/eptc/dyn/data: not a plain file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:22 AM
05-22-2007 06:22 AM
Re: Copy file from the host pc to the client hpux
rcp -p /home/ftp/pub/eptc/dyn/data ux_pt/adacs/bin
should be:
rcp -p /home/ftp/pub/eptc/dyn/data ux_pt:/adacs/bin/
I assume that "/home/ftp/pub/eptc/dyn/data" is a file rather than a directory.
Do an "ls -l /home/ftp/pub/eptc/dyn/data" to make sure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 06:48 AM
05-22-2007 06:48 AM
Re: Copy file from the host pc to the client hpux
sp,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2007 07:25 AM
05-22-2007 07:25 AM
Re: Copy file from the host pc to the client hpux
rcp filename remote_system_name:/tmp.
Thanks everybody for your input.