- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- copy file
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
Forums
Discussions
Discussions
Discussions
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
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
04-03-2006 03:59 PM
04-03-2006 03:59 PM
copy file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 04:12 PM
04-03-2006 04:12 PM
Re: copy file
What do you want to copy from Unix to Windows ? Give us some more information.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 04:15 PM
04-03-2006 04:15 PM
Re: copy file
Transefering files between machines can be either done using FTP or SCP.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 04:41 PM
04-03-2006 04:41 PM
Re: copy file
Open Command prompt in Windows,
C:\>ftp
Connected to your_unix_server.
220 your_unix_server FTP server (Version 1.1.214.4(PHNE_30432) Thu Feb 26 10
:46:14 GMT 2004) ready.
User (server): root
331 Password required for root.
Password:
230 User root logged in.
ftp> ascii
ftp> get
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 05:41 PM
04-03-2006 05:41 PM
Re: copy file
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 06:14 PM
04-03-2006 06:14 PM
Re: copy file
Otherwise you can enable a share filesystem between unix and windows by installing samba on your unix server.If it's only one occasional transfer there is as Senthil said scp and sftp too.
Look at this link for samba on HPUX:
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B8725AA
Look at this link if you want a small soft for doing both ssh and sftp with only one connection from windows:
http://www.ssh.com/support/downloads/secureshellwks/non-commercial.html
Hope this helps
Kenavo
Pat
- Tags:
- samba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 07:43 PM
04-03-2006 07:43 PM
Re: copy file
if you do not want to use ftp, you could :
1. Cut and paste the file via a X term session
2. mailx the file to yourself and save onto the windows box.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2006 09:08 PM
04-04-2006 09:08 PM
Re: copy file
the ftp command on UNIX or any ftp tool on windows, to FTP command on windowd in cmd windows: start-> run-> cmd
HTH,
Art
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2006 11:43 PM
04-04-2006 11:43 PM
Re: copy file
ftp is the best option.
Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2006 11:55 PM
04-04-2006 11:55 PM
Re: copy file
Be aware that if you are transferring a *text* file from Unix to Windows with FTP, you want to do an ASCII type transfer. UNIX uses newline characters to delimit lines. Windows uses a carriage-return plus linefeed (newline) combination.
If you use an ASCII transfer (moving either way) the translation will be made automatically for you, which is generally what you want.
For binary data, or no translation, do the FTP transfer in BINARY.
Should you encounter a file on your Unix platform with ^M$ characters at the end, you can strip the carriage-return (^M) with the 'dos2ux' utility. Conversely, there is a 'ux2dos' variation to perform the inverse. See the manpages for 'dos2ux' for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 12:08 AM
04-05-2006 12:08 AM
Re: copy file
Use FTP as suggested by others.
People are helping you to solve your problem, but it required some remarks from you by providing marks to those who helped you...at present your status is
"I have assigned points to 0 of 36 responses to my questions"
Chan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 03:27 PM
04-05-2006 03:27 PM
Re: copy file
Thanks to all for help me in this regard.