- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Data transfer
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
Discussions
Discussions
Discussions
Forums
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
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
тАО06-18-2002 04:31 AM
тАО06-18-2002 04:31 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:33 AM
тАО06-18-2002 04:33 AM
Re: Data transfer
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:35 AM
тАО06-18-2002 04:35 AM
Re: Data transfer
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:37 AM
тАО06-18-2002 04:37 AM
Re: Data transfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:42 AM
тАО06-18-2002 04:42 AM
Re: Data transfer
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:46 AM
тАО06-18-2002 04:46 AM
Re: Data transfer
ftp is what i think i would prefer.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:47 AM
тАО06-18-2002 04:47 AM
Re: Data transfer
Can I get one more FTP??
FTP!!
Sold!!
Have a great day.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:48 AM
тАО06-18-2002 04:48 AM
Solutionfrom your PC, in a command window (ms-dos), use ftp
cd \directory to send or receive files in
ftp UNIXHOSTNAME
UNIX_USERNAME
UNIX_PASSWORD
get filename
or
put filename
Also, you might want to use the "bin" option to allow binary file transfers.
On the PC do "ftp -H" to get command line help, and for commands within ftp type in help (after starting ftp)
on unix, type in "man ftp"
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:50 AM
тАО06-18-2002 04:50 AM
Re: Data transfer
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:56 AM
тАО06-18-2002 04:56 AM
Re: Data transfer
is there any good tools? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:59 AM
тАО06-18-2002 04:59 AM
Re: Data transfer
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x7b93107d277ad611abdb0090277a778c,00.html
You can write ftp scripts
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 05:05 AM
тАО06-18-2002 05:05 AM
Re: Data transfer
It's a LOT easier if you set up FTP on your unix server than installing special programs on all of your client PC's that need to transfer data!
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 05:07 AM
тАО06-18-2002 05:07 AM
Re: Data transfer
is these any tools ( eg. zmodem and kermit) is the best for use? Thanks.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 05:10 AM
тАО06-18-2002 05:10 AM
Re: Data transfer
I apologize in advance if I'm not understanding when you state "requires setup ftp server and login". You don't need to "set up" an FTP server; your server is an FTP server.
Please elaborate.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 05:14 AM
тАО06-18-2002 05:14 AM
Re: Data transfer
On your unix box do this:
grep ftp /etc/services /etc/inetd.conf | grep -v "\:#"
which should produce something like this:
/etc/services:ftp-data 20/tcp # File Transfer Protocol (Data)
/etc/services:ftp 21/tcp # File Transfer Protocol (Control)
/etc/services:tftp 69/udp # Trivial File Transfer Protocol
/etc/services:sftp 115/tcp # Simple File Transfer Protocol
/etc/services:bftp 152/tcp # Background File Transfer Protocol
/etc/services:ftp-ftam 8868/tcp # FTP->FTAM Gateway
/etc/inetd.conf:ftp stream tcp nowait root /usr/lbin/ftpd ftpd -lLio
/etc/inetd.conf:tftp dgram udp wait root /usr/lbin/tftpd tftpd
then check /etc/ftpd/ftpaccess, if it doesn't exist, then you are ready to to use FTP without any further ado.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 05:39 AM
тАО06-18-2002 05:39 AM
Re: Data transfer
Any suggestion?
Andy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 05:40 AM
тАО06-18-2002 05:40 AM
Re: Data transfer
rcp requires special services to be setup for authentication and is also available in the Reflection software package. However, rcp is much slower and creates a bigger network load than ftp (lots of small packets going both ways). FTP is an adaptive protocol in several ways. For slow speed links, it makes changes to insure reliable data transfers and for high speed links, uses the maximum packets size. And in all cases, FTP allows multiple records to be transferred before requiring an acknowledgement, all of this to maximize throughput. FTP is also the only protocol that translates ASCII files, a big requirement when trying to integrate unrelated operating systems (like Windows and Unix).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 05:52 AM
тАО06-18-2002 05:52 AM
Re: Data transfer
What application program? ==>
"i want the download/upload tools called by the program, ( I mean the tools is in our application program so it is not possible to use ftp).
You can install perl on your PC's:
http://www.cpan.org/ports/index.html#win32
and then load the FTP module and have at it!
http://www.perl.com/CPAN-local/authors/Aldo_Calpini/Win32Internet-0.08.readme
http://www.perl.com/CPAN-local/authors/Aldo_Calpini/Win32Internet-0.08.zip
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 05:58 AM
тАО06-18-2002 05:58 AM
Re: Data transfer
Then you can send escape sequences down to your netterm session that can begin the transfer.
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 06:55 AM
тАО06-18-2002 06:55 AM
Re: Data transfer
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2002 04:46 PM
тАО06-18-2002 04:46 PM
Re: Data transfer
Thanks.
Andy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-19-2002 08:11 AM
тАО06-19-2002 08:11 AM
Re: Data transfer
If running HP-UX (assumed since you are in this forum!) then you can run the prepackaged HP-UX version. Otherwise, you can obtain samba through the HP-UX Porting Centres.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2002 04:03 AM
тАО06-20-2002 04:03 AM
Re: Data transfer
If MS Windows PC, then you can probably use rcp. Many MS Windows versions include rcp. If not in your case then please post which MS Windows version you use.