![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Transfering file from unix server to a windows pc | Preet | IP Networking | 1 | 05-13-2008 04:00 PM |
| transfering file from unix to window | Nirmal | Shell Programming and Scripting | 2 | 03-22-2008 04:11 AM |
| automatic transfering of files using scp | tcruicksh | Shell Programming and Scripting | 1 | 06-22-2006 10:57 PM |
| Transfering files from one server to another. | Alan Bird | UNIX for Dummies Questions & Answers | 4 | 09-18-2003 05:24 PM |
| Transfering files | vbs | UNIX for Dummies Questions & Answers | 5 | 06-26-2002 12:24 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Before all you should know the IP of your unix machine.
Eg. Say the ip address is 10.10.15.226 Say the destination folder in windows is c:\Documents and Settings\Karthik Say the path from where you wanted to ftp a file is /cdata/test.dir/test.run Say the file that you wanted to ftp is TEST.TXN from the above directory. From the command line (Click START >> RUN from your desktop, and say "cmd" to go to the command line). The above will take you to the command prompt and the default path would be like c:\Documents and Settings\Karthik> (You can change the windows path if requried) 1. c:\Documents and Settings\Karthik>ftp 10.10.15.226 2. The above command will prompt you to enter your unix username & pwd. 3. On successful login it will take you to the ftp prompt. Check for the default directory and change it a directory from where you wanted to ftp. 4. Change the mode - say "ascii" for Ascii mode or "bin" for binay mode in the prompt) 5. Say "get TEST.TXN" The above steps should fetch you the file TEST.TXN from unix box. Look below for the screenshot of a typical command line to fetch a file. C:\Documents and Settings\karthik>ftp 10.10.15.226 User (10.10.15.226 none)): karthik331 Password required for karthik. Password: 230 User karthik logged in. ftp> pwd 257 "/cdata/test.dir/test.run" is current directory. ftp> ascii 200 Type set to A; form set to N. ftp> get TEST.TXN |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|