- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Data transfer between unix and window
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
05-26-2009 12:38 AM
05-26-2009 12:38 AM
Data transfer between unix and window
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 12:43 AM
05-26-2009 12:43 AM
Re: Data transfer between unix and window
Regards
Sunny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 12:47 AM
05-26-2009 12:47 AM
Re: Data transfer between unix and window
Scp - secure copy between hosts. See more info and examples in following link.
http://acs.ucsd.edu/info/scp.shtml
# scp -p file hostb:/destination
#scp -p file remotehost or ip:/destination
You then see it copy and the % complete
Regards
Sunny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 12:48 AM
05-26-2009 12:48 AM
Re: Data transfer between unix and window
if you want secure transfer which is safe can use scp,
samba will be easy and user friendly also, but its not that much secure.
may refer below what are the advantages with scp, thanks
http://docs.hp.com/en/5992-4213/ch06.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 12:50 AM
05-26-2009 12:50 AM
Re: Data transfer between unix and window
Unix FTP can be used to transfer files between PC's and Unix-based file servers. File transfer protocol (FTP) is the network protocol that is used to transfer the files from the PC to the Unix file server over TCP. The Unix file server will need to have an FTP server installed, and the PC will need to have an FTP client installed. The standard port for FTP communication is port 21.
2. SCP
SCP move files to or from your current location. It always uses binary mode. You can work as either the current user on the starting machine or a different user. It always asks for the user's password.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 12:50 AM
05-26-2009 12:50 AM
Re: Data transfer between unix and window
Unix FTP can be used to transfer files between PC's and Unix-based file servers. File transfer protocol (FTP) is the network protocol that is used to transfer the files from the PC to the Unix file server over TCP. The Unix file server will need to have an FTP server installed, and the PC will need to have an FTP client installed. The standard port for FTP communication is port 21.
2. SCP
SCP move files to or from your current location. It always uses binary mode. You can work as either the current user on the starting machine or a different user. It always asks for the user's password.
thanks and regards
Sajjad Sahir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 01:13 AM
05-26-2009 01:13 AM
Re: Data transfer between unix and window
I got many suggestions but I am not easy to decide to use what method , what my requirement is to complete the data transfer precisely , please ignore the security issue as the data is not sensitive , if I add this requirement , which method I should use ? thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 01:14 AM
05-26-2009 01:14 AM
Re: Data transfer between unix and window
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 01:48 AM
05-26-2009 01:48 AM
Re: Data transfer between unix and window
If security is not an issue then you can use samba because after mount it will be like a windows machine just copy and peast files.
or
ftp also a easy to use you go for ftp also
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 05:30 AM
05-26-2009 05:30 AM
Re: Data transfer between unix and window
Apart from "ftp" get/put commands you can try following tool to copy the data from/to windows and unix server.
(1)filezilla
(2)winscp
This tool is easy to use, you can drag and drop the data easily also you can see how much % has been copied.
Regards
Subodh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 05:38 AM
05-26-2009 05:38 AM
Re: Data transfer between unix and window
ftp ascii mode transfers handle this, translating between the OSes for you, while the other methods don't. HPUX has ux2dos and dos2ux, so you can make the tranlations yourself.
another method to consider would be to install Windows Services for Unix (SFU), which includes NFS, allowing you to mount Windows shares on UNIX as well.
if it's a specific set of files that need ot be kept in sync, rsync is available for unix and windows.
As noted, there are many methods to accomplish this. as presented, the question is too broad to give you a single, specific "this is best" answer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 07:07 AM
05-26-2009 07:07 AM
Re: Data transfer between unix and window
Define "best".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 09:55 AM
05-26-2009 09:55 AM
Re: Data transfer between unix and window
If you need to show the logs to someone that files have been transferred to their destinations correctly and fully, you will need another solution like NDM, short for Network Data Mover, since then changed name to something I can not remember. It is available on almost all modern and non modern OS platforms. But it is not free. As a matter of fact their new licensing is pretty drastic what I heard. You might want to check into something like this.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 10:20 AM
05-26-2009 10:20 AM
Re: Data transfer between unix and window
Samba will give you the ability to access the SAME file from both UNIX and windows. Basically CIFS. It is not a copy of the file between servers - it is the same file that both platforms can access.
SCP is secured copy of a file to the remote server, i.e. now two copies of file. If set up properly, this could be an automated file copy (without password intervention), by setting up SSH certificate/keys properly.
FTP, same number of copies without anything encrypted/secured when transferred between servers. Password required, unless scripted with password included in script (very unsecure!).
So...YOU need to asses what you are trying to achieve and you must decide the best option. And remember, what is not important to be secured today - likely will include something tomorrow changing that rule. IT - everything always changes - so always plan for it before they ask for it.
Regards,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 01:42 PM
05-26-2009 01:42 PM
Re: Data transfer between unix and window
> none of the methods mentioned in this
> thread will help you or at least not
> without a lot of afterwards work. [...]
Define "a lot".
Even using FTP, it should be possible, even
easy, to transfer a file, transfer it back,
and compare the result with the original.
That would seem to me to be pretty reliable
assurance that it got there intact.
There are also checksums, and many other
possibilities.
With no actual information on the amount of
stuff to transfer, the network speed, the
time requirements, the software available on
both systems, possible ways to access each
system, which system is pulling or pushing
the files, whether modification date-times
need to be preserved, and many, perhaps
dozens, of other mysteries, I hesitate to
waste my time suggesting any particular
method in detail.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 08:12 PM
05-26-2009 08:12 PM
Re: Data transfer between unix and window
Among scp, ftp, samba- scp is best because it is more secured for file transfer from one host to another host.
ftp is normal file transfer from one host to another host.
samba is easier for file transfer.
Rgds//
Taifur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 08:29 PM
05-26-2009 08:29 PM
Re: Data transfer between unix and window
> the data is not sensitive [...]
> [...] scp is best because it is more
> secured [...]
Sigh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2009 09:41 PM
05-26-2009 09:41 PM