- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to FTP From Windows To Unix
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
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
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-05-2004 09:15 PM
тАО09-05-2004 09:15 PM
I first log on the UNIX Server.
Then I use the command and list error:
ftp> get
(remote-file) c:\1.tgz
(local-file) 111
200 PORT command successful.
550 c:1.tgz: No such file or directory.
ftp>
Pls help me any pointers anyone,Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 09:18 PM
тАО09-05-2004 09:18 PM
Re: How to FTP From Windows To Unix
Log in on windows:
ftp
>cd c:\
>ls
>get file
>bye
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 09:20 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 09:23 PM
тАО09-05-2004 09:23 PM
Re: How to FTP From Windows To Unix
To send files from local machine to remote machine use "put"
To get files from remote machine to local use "get"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 09:25 PM
тАО09-05-2004 09:25 PM
Re: How to FTP From Windows To Unix
login Windows Server
and cd to the directory containing the file
then ftp to Unix Server then
ftp> cd
ftp> bin (if it's a binary file)
ftp> put
ftp> quit
Regards
Franky
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 09:29 PM
тАО09-05-2004 09:29 PM
Re: How to FTP From Windows To Unix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 09:58 PM
тАО09-05-2004 09:58 PM
Re: How to FTP From Windows To Unix
ftp (windows server)
cd c:
get 1.tgz
but it might be easier logging in to the Windows server, going to a DOS window, changing to the directory with the file, then
ftp (unix server)
cd (destination directory)
put 1.tgz
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 10:39 PM
тАО09-05-2004 10:39 PM
Re: How to FTP From Windows To Unix
please don't forget to assign points
Regards
Franky
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 10:56 PM
тАО09-05-2004 10:56 PM
Re: How to FTP From Windows To Unix
$ftp
ftp>cd
ftp>put file
ftp>bye
$
You can use mget and mput to transfer directories instead of get&put for file transfer
regards
SK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2004 11:40 PM
тАО09-05-2004 11:40 PM
Re: How to FTP From Windows To Unix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2004 03:12 PM
тАО09-06-2004 03:12 PM
Re: How to FTP From Windows To Unix
The Right answer is:
cd c:
ftp unix
cd targetdir
put file
bye
To send files from local machine to remote machine use "put"
To get files from remote machine to local use "get"
This is important!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2004 03:15 PM
тАО09-06-2004 03:15 PM
Re: How to FTP From Windows To Unix
thanks.