- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftp from nt to hp
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
08-17-2000 06:02 AM
08-17-2000 06:02 AM
1)(from nt)
run > ftp
ftp> open xxx.xxx.xxx.xxx
username: uuuuuu
passwrd: pppppp
ftp> put c:temptoday_tar
ftp>quit
2) (then i moved to hp box)
# ls [i cant find anything like 'today_tar']
# find . -name today* [i cant find either]
[QUESTION]
1) did i do something wrong from nt machine with ftp command ? (for example, i should indicate a destination like ftp> put sourcefilename destination)
2) or, how do i know that file has been tranferred to hp box? (in other words, how to find that file fromhp box)
pls!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2000 06:07 AM
08-17-2000 06:07 AM
Solution-Do an lcd to the directory that has the file before the put:
lcd c:fileisinthisdirectory
-you can turn on hash to display a hash during transfer; (just type hash at the prompt before you put)
-there should be a summary of the filetransfer if it was successful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2000 06:11 AM
08-17-2000 06:11 AM
Re: ftp from nt to hp
find / -name "today*"
(that means to start from /.
In the other hand, when ftp, you can set up the local directory and the remote directory.
Also, using full path you can specify the source and destination.
Try to specify the transfer method before ftp-ing:
ftp>binary
ftp>put c:today_tar /directory/today_tar
As well you can try to get the file ftp-ing from unix side. (using get in stead of put.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2000 06:26 AM
08-17-2000 06:26 AM
Re: ftp from nt to hp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2000 10:56 AM
08-17-2000 10:56 AM
Re: ftp from nt to hp
1) i logged in same user
2) then, go /home,
3) file is there.
thanks!