diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2010-09-04 09:48:31 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@schwinge.name> | 2010-09-04 09:48:31 +0200 |
commit | f67536a378772dbf5661c2402f59bcf289841d69 (patch) | |
tree | 009593c5383dd8a20125437adb1bbb14fd4ae039 /hurd | |
parent | 0a14790c41d3126d457c763059fa4bc86356285f (diff) |
netio, tarfs: Moved from hurdextras to incubator.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/translator.mdwn | 6 | ||||
-rw-r--r-- | hurd/translator/netio.mdwn | 17 | ||||
-rw-r--r-- | hurd/translator/tarfs.mdwn | 25 |
3 files changed, 45 insertions, 3 deletions
diff --git a/hurd/translator.mdwn b/hurd/translator.mdwn index 8037550b..672f6c9f 100644 --- a/hurd/translator.mdwn +++ b/hurd/translator.mdwn @@ -78,6 +78,7 @@ Read about translator [[short-circuiting]]. * [[fatfs]] * [[magic]] * [[unionfs]] +* [[nfs]] * ... @@ -89,7 +90,8 @@ Read about translator [[short-circuiting]]. * [[tmpfs]] * [[procfs]] * [[nsmux]] -* nfs -- easily mount nfs anywhere. See /hurd/nfs +* [[netio]] +* [[tarfs]] * ... # Translators (only) in Hurdextras @@ -100,13 +102,11 @@ Read about translator [[short-circuiting]]. * [httpfs](http://www.nongnu.org/hurdextras/#httpfs) * [gopherfs](http://www.nongnu.org/hurdextras/#cvsfs) * [memfs](http://www.nongnu.org/hurdextras/#gopherfs) -* [netio](http://www.nongnu.org/hurdextras/#netio) * [notice](http://www.nongnu.org/hurdextras/#notice) * [pith](http://www.nongnu.org/hurdextras/#pith) * [pptop](http://www.nongnu.org/hurdextras/#pptop) * [run](http://www.nongnu.org/hurdextras/#run) * [smbfs](http://www.nongnu.org/hurdextras/#smbfs) -* [tarfs](http://www.nongnu.org/hurdextras/#tarfs) * [xmlfs](http://www.nongnu.org/hurdextras/#xmlfs) * [mboxfs](http://www.nongnu.org/hurdextras/#mboxfs) diff --git a/hurd/translator/netio.mdwn b/hurd/translator/netio.mdwn new file mode 100644 index 00000000..aca9cd69 --- /dev/null +++ b/hurd/translator/netio.mdwn @@ -0,0 +1,17 @@ +[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +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]]."]]"""]] + +`netio` is a translator designed for creating socket ports through the +filesystem. + + +# Source + +incubator, netio/master diff --git a/hurd/translator/tarfs.mdwn b/hurd/translator/tarfs.mdwn new file mode 100644 index 00000000..e25e3255 --- /dev/null +++ b/hurd/translator/tarfs.mdwn @@ -0,0 +1,25 @@ +[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]] + +[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable +id="license" text="Permission is granted to copy, distribute and/or modify this +document under the terms of the GNU Free Documentation License, Version 1.2 or +any later version published by the Free Software Foundation; with no Invariant +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]]."]]"""]] + +`tarfs` is a translator aimed at providing access to tar files through the +filesystem. This way you don't have to extract files from the archive to +access them. It supports compressed archives (bzip2 and gzip) through +[[libstore]]. + + +# Status + +Works fine on most cases, occasional corruptions when writing using bzip2/gzip +stores. + + +# Source + +incubator, tarfs/master |