Results 1 to 2 of 2
Can anyone please help me in writing a script to copy log files from linux to windows machine .FTP is not working
Thanks in advance...
- 02-22-2010 #1Just Joined!
- Join Date
- Feb 2010
- Posts
- 1
Copy files from linux to windows
Can anyone please help me in writing a script to copy log files from linux to windows machine .FTP is not working
Thanks in advance
- 02-23-2010 #2Just Joined!
- Join Date
- Aug 2009
- Location
- Mumbai, India
- Posts
- 75
Hi,
As as alternate try CIFS on linux.
1) Share a directory in windows
2) Mount the shared directory in linux
3) Copy your log files to the mount point aboveCode:mount -t cifs -o username=user,password=password,rw //server_ip_of_windows_system/sharename /mnt/dirname/
Note: You could add the domain=domain_name option to the above command if you need domain authentication.
--Syd


Reply With Quote