summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qemufilesharingwithhost.mdwn46
1 files changed, 25 insertions, 21 deletions
diff --git a/qemufilesharingwithhost.mdwn b/qemufilesharingwithhost.mdwn
index 64040ffb..f897bb68 100644
--- a/qemufilesharingwithhost.mdwn
+++ b/qemufilesharingwithhost.mdwn
@@ -6,27 +6,31 @@ Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
is included in the section entitled
[[GNU_Free_Documentation_License|/fdl]]."]]
-## scp
+# SCP
+
Setup OpenSSH server on host system.
- * Copying files from Guest to Host
-<pre>
-$ scp <file> <user>@<host>:
-</pre>
- * Copying files from Host to Guest.
-<pre>
-$ scp <user>@<host>:<file> .
-</pre>
+
+* Copying files from Guest to Host
+
+ $ scp <file> <user>@<host>:
+
+* Copying files from Host to Guest.
+
+ $ scp <user>@<host>:<file>
+
Use scp -r for copying directories.
-## ftp
+
+
+# FTP
+
Setup ftp server (like proftpd) on the host.
- * Use ftp client from GNU inetutils
-<pre>
-$ ftp <host>
-</pre>
-Use mget to copy files from host and mput to copy files to the host.
- * The GNU way - setup an ftp translator
-<pre>
-$ settrans -ac ftp/<host> /hurd/ftpfs <username>:<password>@<host>:<path>
-</pre>
-
--- PraveenA - 19 May 2006 \ No newline at end of file
+
+* Use ftp client from GNU inetutils
+
+ $ ftp <host>
+
+ Use mget to copy files from host and mput to copy files to the host.
+
+* The GNU way - setup an ftp translator
+
+ $ settrans -ac ftp/<host> /hurd/ftpfs <username>:<password>@<host>:<path>