- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Linux to Windows FTP
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-01-2005 04:55 PM
тАО06-01-2005 04:55 PM
Linux to Windows FTP
I have a Red Hat Linux Server and I want this server to do a FTP to a Windows 2000 Professional System and mget files from it
Please help how should I go About it
Thanks and regards,
Abhijit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2005 05:10 PM
тАО06-01-2005 05:10 PM
Re: Linux to Windows FTP
2) Make sure you start the service.
3) Use the ftp client in Linux to connect to the newly anoined Windows ftp server.
ftp windowsftpserver.your.net
4) log in with a userid and password that is valid on the Windows box.
5) mget your files.
If they are binary, make sure you issue the binary command prior to starting the transfer.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2005 09:11 PM
тАО06-01-2005 09:11 PM
Re: Linux to Windows FTP
Install the FTP server which comes part of IIS. then from linux shell prompt, run
ftp
it will prompt you for user name and password. after authentication, run 'cd
then, type 'bin' command to initiate binary mode transfer and 'mget
- ' to initiate file transfer.
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-02-2005 12:34 AM
тАО06-02-2005 12:34 AM
Re: Linux to Windows FTP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-02-2005 08:35 PM
тАО06-02-2005 08:35 PM
Re: Linux to Windows FTP
If you need to script this ftp and mget, have a look at `wget`. That is not interactive which is better in scripts. To use ftp with wget, just give it an ftp-style uri: `wget ftp://user:passwd@W2Kmachine/path/to/file`. Peek at `man wget` for options to transfer entire trees.
On the other hand, there are many more ways to get files. My first idea (way before ftp) is to use cifs/samba/smb: Share the directory with the files you need to transfer. Now you can use `smbclient` to "samba-ftp" the files. Or you can mount the share and use the files direct (`smbmount //w2kmachine/share /mnt/smb -o username=w2k_uid%w2k_domain`)
Then you can use the webserver (iis) on the w2k machine to open the direcotry for browsing and use `wget` to fetch the files.
In the end, there is also nfs: make the W2K machine a nfs-server, export the directory, mount this export on the linux box and use it.