summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorArne Babenhauserheide <arne_bab@web.de>2011-07-16 01:07:59 +0200
committerArne Babenhauserheide <arne_bab@web.de>2011-07-16 01:07:59 +0200
commit66e620b491dd3aebbdcfe6203810e8c579441978 (patch)
tree9e0e58bfb2c1266f93f1cacae4d7e1927be854f3 /hurd
parent1ce38f54619afa424d654e87c9dfa37821a667b3 (diff)
Added a small translator primer; copied from the text I wrote for the babhurd qemu image -> hereby the sourcecode is assigned :)
Diffstat (limited to 'hurd')
-rw-r--r--hurd/documentation/translator-primer.mdwn57
1 files changed, 57 insertions, 0 deletions
diff --git a/hurd/documentation/translator-primer.mdwn b/hurd/documentation/translator-primer.mdwn
new file mode 100644
index 00000000..67c52977
--- /dev/null
+++ b/hurd/documentation/translator-primer.mdwn
@@ -0,0 +1,57 @@
+Small examples on using translators
+===================================
+
+## Intro
+
+The Hurd has some unique capabilities, and we created this simple image
+to enable you to easily try two of them:
+
+* The simplest of translators: Hello World!
+* Transparent FTP
+
+### Hello World
+
+To try out the simplest of translators, you can go the following simple steps:
+
+ $ cat hello
+ $ setrans hello /hurd/hello
+ $ cat hello
+ "Hello World!"
+ $ settrans -g hello
+ $ cat hello
+
+What you do with these steps is first verifying that the file "hello" is empty.
+
+Then you setup the translator /hurd/hello in the file/node hello.
+
+After that you check the contents of the file, and the translator returns "Hello World!".
+
+To finish it, you tell the translator to go away from the file "hello" via "settrans -g hello" and verify that now the file is empty again.
+
+### Transparent FTP
+
+We already setup a a transparent FTP translator for you at /ftp:
+
+With it you can easily access public FTP via the file system, for example the one from the GNU project:
+
+ $ ls /ftp://ftp.gnu.org/
+
+But you can also do this very easily yourself:
+
+ $ # Setup the translator on the node ftp:
+ $ settrans -c ftp: /hurd/hostmux /hurd/ftpfs /
+
+and you can access FTP sites via the pseudo-directory ftp:, for example with
+
+ $ ls ftp://ftp.gnu.org/
+
+What you do here is setting up the translator /hurd/hostmux on ftp: and passing it the translator /hurd/ftpfs to use for resolving accesses as well as / as additional path component.
+
+
+These were only two basic usages of translators on the Hurd. We're sure you'll quickly see many other ways to use this.
+
+As a last comment: You can setup a translator on any node you have access to, so you can for example mount any filesystems as normal user.
+
+You might currently be logged in as root, but you could just as well do the same as normal user.
+
+Why don't you try it out?