Richard77
Richard77

Reputation: 21621

How to copy a file from my local disk to remote applicatin in Unix

Let's say I have created XML file inside C:/path/MyFolder/MyFile.xml. I want to copy them to my remote account in a Unix machine. ~/Home/www.

I read the tutorial, no where I see where I can copy or move file from my local to the remote system.

Upvotes: 0

Views: 3275

Answers (4)

mnagel
mnagel

Reputation: 6854

scp is a good suggestion, but for beginners i recommend sftp with a graphical client, like winscp or filezilla.

http://winscp.net/eng/index.php

https://filezilla-project.org/

Upvotes: 2

Manolo
Manolo

Reputation: 26370

You can use ftp or scp. Maybe, from a Windows host you can easily use filezilla to do so. It's a very intuitive program.

Upvotes: 1

hitchdiddy
hitchdiddy

Reputation: 129

A common way to do this is scp (secure copy). A famous client ist putty.

Just google it ;) Of course, on the unix machine you must install a ssh-server (very often in the official repository).

Upvotes: 1

a sandwhich
a sandwhich

Reputation: 4448

I would use scp to send files to remote machines. For example:

scp C:/path/MyFolder/MyFile.xml user@remoteBox:/home/www/MyFile.xml

Upvotes: 1

Related Questions