7b8a02903ba271369db1ac389c111cc15f6e23df
[www.jankratochvil.net.git] / project / captive / Index.pm
1 # $Id$
2 # Main page of 'My::Project::captive'
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::captive::Index;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 Wuse 'project::Lib';
28
29
30 our @ListItem=(
31                 "name"=>"Captive",
32                 "platform"=>"unixuser",
33                 "priority"=>666,
34                 "summary"=>"The first free NTFS read/write filesystem for GNU/Linux",
35                 "license"=>"GPL",
36                 "maintenance"=>"update",
37                 "language"=>"i386 asm, C, Perl",
38                 "icon"=>"captive-install-acquire-icon.png",
39                 "cvs-of main tree"=>"captive",
40                 "cvs-of branched ReactOS subdir"=>"reactos:captive",
41                 "cvs-of branched LUFS"=>"lufs:captive",
42                 "cvs-of 'httpcaptive://' method"=>"gnome-vfs-httpcaptive:captive",
43                 "cvs-of 'libntfs://' method"=>"ntfsprogs-gnomevfs",
44                 "description"=>sub { return <<"HERE"; },
45 <p>Project implements the first full read/write free access to NTFS disk drives.
46 You can mount your Microsoft Windows NT, 200x or XP partition as
47 a transparently accessible volume for your GNU/Linux.</p>
48 <p>This compatibility was achieved in
49 the @{[ a_href 'http://www.winehq.com/','Wine' ]} way by using the original
50 Microsoft Windows <i>ntfs.sys</i> driver. It emulates the required subsystems of
51 the Microsoft Windows kernel by reusing one of the original
52 <i>ntoskrnl.exe</i>, @{[ a_href 'http://www.reactos.com/','ReactOS' ]} parts, or
53 this project's own reimplementations, on a case by case basis.
54 Project includes the first open source MS-Windows kernel API for Free operating systems.
55 Involvement of the original driver files was chosen to achieve the best
56 and unprecedented filesystem compatibility and safety.</p>
57 <p>As opposed to other projects this is currently the only software supporting the full
58 read/write access including the possibility to create/delete files, modify directories
59 etc.</p>
60 HERE
61                 );
62
63 sub handler
64 {
65 my $W=project::Lib->init(
66                 "no_project_data"=>1,
67                 "css_push"=>"./Index.css",
68                 "project_text_after_title"=>sub { return ""
69                                 .'<table border="0" class="navigate"><tr>'
70                                         .'<td>&bull;&nbsp;'.a_href('#download','Download').'</td>'
71                                         .'<td>&bull;&nbsp;'.a_href('#news','NEWS').'</td>'
72                                         .'<td>&bull;&nbsp;'.a_href('#testimonials','Testimonials').'</td>'
73                                         .'<td>&bull;&nbsp;'.a_href('#press','Internet Press').'</td>'
74                                         .'<td>&bull;&nbsp;'.a_href('#notes','Installation Notes').'</td>'
75                                         .'<td>&bull;&nbsp;'.a_href('#lists','Mailing Lists').'</td>'
76                                         .'<td>&bull;&nbsp;'.a_href('#seealso','See Also').'</td>'
77                                 .'</tr></table>'
78                                 },
79                 );
80
81
82 &{$_}() for reverse @{$W->{"footing_delimit_sub_push"}};
83
84 my %version=(
85                 map(($_=>["1.1.5","0"]),qw(captive captive-lufs captive-install)),
86                 "lufs"=>["0.9.7","1captive8"],
87                 );
88
89 print <<"HERE";
90 <h2 id="download">Download</h2>
91
92 <h3>Choose the one preferred installation format:</h3>
93
94 <table border="1" frame="border" rules="rows" style="text-align: center;" class="download">
95         <tr>
96                 <td>
97                         <p>RPM i386 binary<br />tested for distributions:</p>
98                         <table border="0"><tr><td align="left"><ul>
99                                 <li>Red&nbsp;Hat&nbsp;9&nbsp;Shrike</li>
100                                 <li>Red&nbsp;Hat&nbsp;8&nbsp;Psyche</li>
101                                 <li>SuSE&nbsp;9.0</li>
102                                 <li>SuSE&nbsp;9.1</li>
103                                 <li>Mandrake&nbsp;9.1&nbsp;Bamboo</li>
104                         </ul></td></tr></table>
105                 </td>
106                 <td>@{[ a_href 'dist/captive-static-'.$version{"captive"}[0].'-'.$version{"captive"}[1].'.i386.rpm',
107                                 undef(),"size"=>1,"basename"=>1 ]}</td>
108         </tr>
109         <tr>
110                 <td>
111                         <p>.tar.gz i386 binary<br />(for non-RPM distributions)</p>
112                 </td>
113                 <td>@{[ a_href 'dist/captive-static-'.$version{"captive"}[0].'.tar.gz',undef(),"size"=>1,"basename"=>1 ]}</td>
114         </tr>
115         <tr>
116                 <td>Source archives</td>
117                 <td>@{[ a_href 'CVS.pm#source','download link' ]}</td>
118         </tr>
119 </table>
120
121 <h4>Development Status</h4>
122
123 <p>Project is no longer developed. The key functionality is reached
124 by the latest released version. All its resources are available
125 @{[ a_href 'CVS.pm#source','here' ]} for download.</p>
126
127 <h4>Known Issue</h4>
128
129 <p>Captive was written to interface with the Linux kernel via
130 @{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]}.
131 Unfortunately, this project is no longer being maintained by its author.
132 Mounting of NTFS devices usually works, but is no longer supported by the
133 author of Captive. Always unmount the device by umount(8) command before shutting
134 down your GNU/Linux system.</p>
135
136 <p>A port of Captive to the newer
137 @{[ a_href 'http://fuse.sourceforge.net/','FUSE' ]}
138 interface has not yet been implemented.
139 There is an experimental LUFS-FUSE bridge called
140 @{[ a_href 'http://sourceforge.net/project/showfiles.php?group_id=121684','lufis' ]}
141 that can be used in the meanwhile.
142 Also, the captive-cmdline(1) interface will get around any kernel compatibility
143 problems.</p>
144
145 @{[ vskip "3ex" ]}
146
147 <h2 id="news">NEWS</h2>
148
149 <dl>
150         <dt>captive-1.1.5 (2004-01-18) [@{[ a_href $W->{"project_viewcvs"}.'/*checkout*/captive/NEWS?rev=HEAD','archive' ]}]</dt>
151         <dd>
152                 <ul>
153                         <li>Fixed ignorance of the file truncate operation via LUFS (Matthias R.)</li>
154                         <li>Support for reading of HIDDEN SYSTEM NTFS files via LUFS</li>
155                         <li>Fixed refusal to mount some NT4.0 NTFSes (Nerijus Baliunas, Scott Chevalley)</li>
156                         <li>Support <code>/dev/ataraid</code> devices (Ivan Tonov)</li>
157                 </ul>
158         </dd>
159         <dt>lufs-0.9.7captive8 (2003-12-06) [@{[ a_href $W->{"project_viewcvs"}.'/*checkout*/lufs/NEWS.captive?rev=1.1.2.11','archive' ]}]</dt>
160 </dl>
161
162 @{[ vskip "3ex" ]}
163
164 <h2 id="testimonials">Captive NTFS Testimonials</h2>
165
166 <ul>
167         <li>Hospital of Castelo Branco - Bruno Santos
168                 <p>we are preparing the machines to install another system that will allow
169                 the digitalization of medical images - PACS (picture archive and
170                 communication system).</p>
171
172                 <p>since the computers that are need are about 100 and we need to install
173                 windows in all of them (even we have an almost automated instalation - but
174                 requires some administrator interaction). So, we want to install
175                 windows2000 without pressing a key.</p>
176
177                 <p>@{[ a_href 'TestimonialBrunoSantos.pm','<span style="font-style: italic;">[ more ]</span>' ]}</p>
178         </li>
179         <li>@{[ a_href 'http://www.amunra.co.uk/','Dave &quot;AmunRa&quot; Rigby' ]}
180                 <p>Ok, I'm impressed (@{[ a_href 'http://www.amunra.co.uk/archives/000028.php','Captive Review' ]})</p>
181                 <p>Linux software generally has a reputation for having some great, novell
182                 ideas, but often lacking in the general 'spit and polish' - difficult to
183                 install, unreliable, and so on. However the latest program I have tried out
184                 - Captive, is a breath of fresh air - simple to install and set up, and It
185                 Just WorksTM. And not only that, it's probably one of the most useful and
186                 technically impressive projects I've seen in a long time ...</p>
187                 <p><span style="font-style: italic;">[ snip ]</span></p>
188         </li>
189         <li>Derek J Witt
190                 <p>I commend you for this project. I am currently using this on my XP NTFS
191                 partitions and I am impressed that I can actually move, edit, and remove files
192                 and directories with no apparent ill effects. This is very nice indeed.</p>
193                 <p>I initially was skeptical because it uses wine and parts of ReactOS
194                  (I have messed with this OS a few times), but you have proved me wrong. I have
195                 noticed no lag on my system.  I do notice the initial mounting process does
196                 take slightly longer than the Linux-NTFS project. But, once I'm past that, it's
197                 quite transparent.</p>
198                 <p><span style="font-style: italic;">[ technical question cut ]</span></p>
199         </li>
200         <li>James Van't Slot
201                 <p>Just wanted to drop you a note and say &quot;Excellent work!&quot;</p>
202                 <p>I just installed captive and it worked as advertized right out of the
203                 rpm.  Thanks, I've been holding off recompiling my kernel until NTFS is
204                 supported out of the box for Redhat.  Now I don't have to bother.</p>
205                 <p>Thanks again and keep up the great work.</p>
206         </li>
207 </ul>
208
209 <h2 id="press">@{[ a_href 'Press.pm','Internet Press' ]}</h2>
210
211 @{[ vskip "3ex" ]}
212
213
214 <h1 id="notes">Installation Notes</h1>
215 <p>You should first run <b>captive-install-acquire</b> command to check your
216 available Microsoft Windows drivers versions. Now you can execute:</p>
217
218 <blockquote>
219         <p class="quote" style="white-space: pre;"
220 ># captive-cmdline \\
221                 --load-module=/var/lib/captive/ntoskrnl.exe \\
222                 --filesystem=/var/lib/captive/ntfs.sys \\
223                 --sandbox-server=/usr/sbin/captive-sandbox-server \\
224                 --bug-pathname=/tmp/captive-bug-%FT%T.captivebug.xml.gz \\
225                 --disk --rw /dev/hda1
226 # Now you can use ftp(1)-like command-line interface for the NTFS disk access.</p
227         >
228         <p>(Backslash end-of-line characters '\\' to be omitted for line continuation.)</p>
229 </blockquote>
230
231
232 <h2>Overview</h2>
233
234 <p>Any errors from '<b>captive-lufs</b>' are written to '<b>/var/log/messages</b>'.</p>
235 <p>Needed drivers (at least ntoskrnl.exe+ntfs.sys) must be in '<b>/var/lib/captive</b>'.</p>
236 <p>'<b>captive</b>' package creates '<b>captive</b>' user and '<b>captive</b>' group on your system.</p>
237
238
239 <h2>LUFS Kernel Driver Module</h2>
240
241 <p>@{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]} (Linux Userland File
242 System) needs Linux kernel module driver (<i>lufs.o</i>) compatible with your
243 running Linux kernel. The binary driver is supplied already precompiled for many
244 Linux kernel versions in the binary packages above (<b>.i386.rpm</b> and
245 <b>_i386.deb</b> archives).</p>
246
247 <p>If you cannot <b>mount</b>(8) your NTFS filesystem you should run <span
248 class="quote">/usr/share/lufs/prepmod</span> to see the reasons. It is always
249 recommended to upgrade to the latest stable kernel supplied by your GNU/Linux
250 distribution vendor. You may need to install package
251 <b>kernel-source</b> (Red Hat) or <b>kernel-headers</b> (Debian) matching your
252 Linux kernel version (<b>rpm&nbsp;-q&nbsp;kernel</b>) and re-run <span
253 class="quote">/usr/share/lufs/prepmod</span>.</p>
254
255 <p><b>WARNING:</b> This 'captive' package may modify your Linux kernel
256 sources matching your currently running kernel version. These minor
257 modifications may include a dependencies rebuild, compiling build tools, fixes of
258 several include files, etc. All the modifications are done at the mount(8) time
259 by the automatically executed <span class="quote">/usr/share/lufs/prepmod</span> script.
260 This behavior was not present in the original
261 @{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]} distribution
262 by @{[ a_href 'http://www.malinux.net/main/','Florin Malita' ]}.</p>
263
264
265 HERE
266
267
268 print rightimg <<"HERE",'reactos.png','ReactOS',"a_href"=>'http://www.reactos.com/';
269         <h2>The First Open Source MS-Windows Kernel API for Free OS</h2>
270
271         <p>Compatibility with the existing binary Microsoft Windows file system drivers has been
272         reached. Microsoft Windows kernel system components required by these drivers
273         were analyzed and successfully emulated in the GNU/Linux operating system.
274         The project brings the Microsoft Windows kernel emulation framework to support even
275         other types of Microsoft Windows drivers in the future.
276         The <span class="productname">@{[ a_href 'http://www.reactos.com/','ReactOS' ]}</span>
277         code base proved to be a big asset for this functionality.</p>
278 HERE
279
280
281 my @lists=qw(captive-announce-list captive-list captive-devel-list);
282
283 print <<"HERE";
284
285 <h2 id="lists">Mailing Lists</h2>
286
287 <form action="@{[ uri_escaped(path_web "/Mailman.pm") ]}" @{[ form_method "post" ]}>
288         <table border="1" class="mailman" style="border-collapse: collapse; border-style: solid; border-width: 1px;">
289                 <tr>@{[ map('<th>'.$_.'@jankratochvil.net</th>',@lists) ]}</tr>
290                 <tr><td>New version announcements<br />
291                         (low traffic, recommended)</td>
292                                 <td>User support,<br />bug reports</td>
293                                 <td>Development</td>
294                                 </tr>
295                 <tr>@{[ map({ "<td>".a_href($W->{"mailman_url"}."listinfo/$_",'Mailman Infopage')."</td>"; } @lists) ]}</tr>
296                 <tr>@{[ map({ "<td>".a_href($W->{"pipermail_url"}."$_",'Archive')."</td>"; } @lists) ]}</tr>
297                 <tr>@{[
298                         map(('<td><input type="checkbox" name="list" value="'.$_.'"'
299                                         .($_ ne "captive-announce-list" ? '' : ' checked="checked"')
300                                         .' /> Subscribe?</td>'),@lists)
301                         ]}</tr>
302                 <tr><td colspan="3">
303                         <table border="0" style="text-align: left;">
304                                 <tr><td>Email address:            </td><td><input type="text"     name="email"   size="30" /></td></tr>
305                                 <tr><td>Your new Mailman password:</td><td><input type="password" name="pw"      size="15" /></td></tr>
306                                 <tr><td>Reenter your password:    </td><td><input type="password" name="pw-conf" size="15" /></td></tr>
307                         </table>
308                         <p>
309                                 <input type="hidden" name="back" value="/project/captive/#lists" />
310                                 <input type="submit" name="email-button" value="Subscribe me" />
311                         </p>
312                 </td></tr>
313         </table>
314 </form>
315
316
317 @{[ vskip "3ex" ]}
318
319 <h1 id="seealso">See Also</h1>
320 <ul>
321         <li>@{[ a_href 'Preview.pm','Technology Preview' ]}</li>
322         <li>@{[ a_href 'CVS.pm','Download Sources, CVS Repository' ]}</li>
323         <li>@{[ a_href 'doc/','Developer Documentation' ]}; highlights:<ul>
324                 <li>@{[ a_href 'doc/About.pm#versions','Microsoft Windows Versions Compatibility' ]}</li>
325                 <li>@{[ a_href 'doc/Architecture.pm#law','Laws and Licensing Conditions' ]}</li>
326                 <li>@{[ a_href 'doc/Details.pm#sandbox','Sandboxing of W32 Filesystem' ]}</li>
327                 <li>@{[ a_href 'doc/TODO.pm#todo_fsck','TODO: Fsck of NTFS' ]}</li>
328                 <li>@{[ a_href 'doc/TODO.pm#todo_surprise','TODO: NTFS Support for Partition Surprise' ]}</li>
329                 <li>@{[ a_href 'doc/Related.pm#LinuxNTFScompet','Related Projects - Linux NTFS' ]}</li>
330                 <li>@{[ a_href 'doc/Related.pm#vmware','Related Projects - VMware Workstation' ]}</li>
331                 <li>@{[ a_href 'doc/LinuxNTFS.pm',"Re: 7.7 Can't we write a wrapper for Windows' driver?" ]}</li>
332                 </ul></li>
333         <li>@{[ a_href $W->{"project_viewcvs"}.'/*checkout*/captive/TODO?rev=HEAD','Known Bugs' ]}</li>
334         <li>Man Pages<ul>
335                 @{[
336                         do {
337                                 my @mans=(
338                                                 'captive'=>[7,'Microsoft Windows NT kernel emulation for NTFS disk access'],
339                                                 'mount.captive'=>[8,'mount(8) interface for NTFS disk access'],
340                                                 'lufs-captivefs'=>[7,'Linux Userland File System module for NTFS as filesystem'],
341                                                 'captive-cmdline'=>[1,'Command-line client for captive(7) NTFS disk access'],
342 ###                                             'captive-sandbox-server'=>[1,'Security+safety wrapper for NTFS disk access'],
343                                                 'captive-install-acquire'=>[1,'Find MS Windows XP driver files for NTFS'],
344 ###                                             'captive-install-fstab'=>[1,'Manage captive-ntfs /etc/fstab entries'],
345                                                 );
346                                 my @r;
347                                 while (@mans) {
348                                         my $file=shift @mans;
349                                         my($section,$name)=@{shift @mans};
350                                         push @r,"<li>".a_href("man/$file.pod.html",$file)."($section) - $name</li>\n";
351                                         }
352                                 @r;
353                                 }
354                         ]}
355                 </ul></li>
356         <li>@{[ a_href 'Resources.pm','Related Pages' ]}</li>
357         <li>@{[ a_href 'Thanks.pm','Thanks' ]}</li>
358 </ul>
359 HERE
360
361
362 exit;
363 }
364 1;