Networking
1753500 Members
4513 Online
108794 Solutions
New Discussion юеВ

Re: Upload file from windows to unix

 
SOLVED
Go to solution
hangyu
Regular Advisor

Upload file from windows to unix

In a user pc , there is a file in a folder ( eg. c:\windows\share\ora_file.txt ) , this file will be update by user daily , now I want to upload this file from windows to unix after the user update the file , can advise what is the simplest method except install ftp program ?
8 REPLIES 8
Peter Godron
Honored Contributor
Solution

Re: Upload file from windows to unix

Hi,
ftp is probably your easiest option, unless you want to cut and paste the contents of the file by hand.

Another option could be NFS/SAMBA, but this would probably involve more software installs.

Why do you not want to use ftp ? You shouldn't have to install any software for this process.
Oviwan
Honored Contributor

Re: Upload file from windows to unix

Hy

In your case i would also prefer HP CIFS Server.

http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8725AA

or ftp :)

Regards
hangyu
Regular Advisor

Re: Upload file from windows to unix

thx reply,

use ftp is OK but I don't want to install program ( ftp client ) to user pc , can I use windows' s ftp ?

As I may be upload the file to unix-like O/S , so I not prefer to use CIFS .

thx in advance.
Peter Godron
Honored Contributor

Re: Upload file from windows to unix

Hi,
from another thread:

c:\> cd
c:\> ftp
Give the username/password
Make it binary or ascii as per requirement.
Binary ( for data files)
Ascii ( for text files)
ftp> bin or ascii
ftp> put to copy the file from windows clients to hpux box.
ftp> bye
You can do "man ftp" on the hpux machine to learn more about ftp.

Once you are happy with the commands, you can put them into a .bat file and run as required.
Oviwan
Honored Contributor

Re: Upload file from windows to unix

Yes of course you can use the windows ftp. perhaps you can write a script which uploads the files automatically by ftp.

you'll find a lot of ftp script in this forum...
melvyn burnard
Honored Contributor

Re: Upload file from windows to unix

posted in worng forum, moved to more appropriate forum

I have assigned points to 164 of 360 responses to my questions.
My house is the bank's, my money the wife's, But my opinions belong to me, not HP!
Peter Godron
Honored Contributor

Re: Upload file from windows to unix

Hi,
could you please update this thread.
Is the problem resolved ?

If yes, please award points to the answers and close the thread.
Tommy_6
Regular Advisor

Re: Upload file from windows to unix

You could always SFTP. This will provide you with security. Putty (psftp) is a free sftp client that does not require an install. Just download and run. Example of how to user Putty.

psftp.exe
login
password
cd /dir
bin or ascii
put

Hope this helps!!