![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| UNIX - SCP File Transfer | vijaykrc | UNIX for Advanced & Expert Users | 8 | 04-15-2008 11:18 PM |
| How to check for a directory during FTP from WinNT to HP-UNIX | asifkhan | High Level Programming | 1 | 03-09-2006 03:20 AM |
| rcp from winnt to unix | dfrangidis | IP Networking | 2 | 03-14-2002 07:16 AM |
| importing database from unix to winnt | sadiecutie | UNIX for Dummies Questions & Answers | 4 | 08-15-2001 10:04 PM |
| File transfer from unix to NT box? | jvacc | IP Networking | 10 | 06-28-2001 01:44 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
how to pass files from unix to windows nt?help
|
| Forum Sponsor | ||
|
|
|
|||
|
use this utility
if u need via a GUI their is one utility called Windows commander probably u could use it. it is available at http://www.ghisler.com/ its a shareware
cheers |
|
|||
|
Hi
Ftp from your unix machine to the NT machine or from your NT machine to your UNIX m/c.
If you are ftping from your unix m/c to NT m/c then the commands are ftp ip address of your NT m/c send filename or put filename If you are ftping from your NT m/c to your UNIX m/c Then the commands are ftp ip address of your UNIX m/c get filename Hope this helps Last edited by kapilv; 08-14-2001 at 11:39 AM. |
|
|||
|
Re: Hi
Quote:
If so than the get and put commands above should be reversed. Y/N?. I'm using NT m/c and that's what i type inorder to put files into certain directories. Do i make sense (maybe not huh)? |
|
|||
|
Yes, let's try from your NT machine:
Open a CMD Window At the prompt, say the "C:\" prompt: C:\>ftp unix.machine.org Then you will be asked your username and password at the unix machine (you have to have username and password on that unix machine). Typically they will prompt with the machine name, then the username prompt, type your username, and then password. If you succeed with the authentication, you will get an ftp prompt, something like this: ftp> Of course when the authentication fail, you also get message telling that your name or password is wrong. If this is the case, just type in the ftp prompt: ftp> user <your-username-at-unix-machine> Then once, again you will be asked to enter your password. Then you can put your file to that unix machine, say "myfile.txt". Type in the ftp prompt: ftp> put myfile.txt To quit, just type at the ftp prompt: ftp>bye Note: There's some issues when ftp'ing files from NT to unixes, when you want to transfer plain text files, you need to type this: ftp>ascii But when transferring binary files, better don't forget to add ftp>binary between your authentication and your first 'put' or 'get'. Otherwise you may get a cluttered text files, or truncated binary files. Happy ftp'ing, qodoc |
|||
| Google UNIX.COM |