From: lace <> Date: Thu, 29 Dec 2005 06:12:43 +0000 (+0000) Subject: Captive release update: 1.1.6.1 X-Git-Url: http://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=commitdiff_plain;h=749a32af91f56c9d3fc710e2eaa891aa01f27c4e;hp=57c6ee027fb80f9974764003f0e6d13ddcd745d7 Captive release update: 1.1.6.1 --- diff --git a/project/captive/DriverSurvey.js b/project/captive/DriverSurvey.js new file mode 100644 index 0000000..21f1df0 --- /dev/null +++ b/project/captive/DriverSurvey.js @@ -0,0 +1,112 @@ +/* $Id$ + * Captive MS-Windows Driver Survey helper. + * Copyright (C) 2005 Jan Kratochvil + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; exactly version 2 of June 1991 is required + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +// Double-run protection due to the My::Web "text/javascript" compatibility hack. +if (!window.var_project_captive_DriverSurvey_done) { + var var_project_captive_DriverSurvey_done=1; + +function DriverSurvey_validate(form) +{ + var e_kinds_array=form.elements["kind"]; + var checked=0; + for (var kindi=0;kindi +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +package project::captive::DriverSurvey; +require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway +our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; +our $CVS_ID=q$Id$; +use strict; +use warnings; + +use My::Web; +use Apache2::Cookie; +require Time::Piece::ISO; +use Carp qw(confess cluck); + + +our $HTML_TEST_QUERY_STRING="captive-static-1.1.6-0.i386.rpm"; + + +# It will not return the new cookie if you set one! +sub cookie(;$) +{ +my($val)=@_; + + my $trash; # For {"headers_in"} stability. + $trash=$W->{"headers_in"}{"Cookie"}; + $trash=$W->{"headers_in"}{"Cookie2"}; + my $jar=Apache2::Cookie::Jar->new($W->{"r"}); + my $name=__PACKAGE__; + if (defined $val) { + my $cookie=Apache2::Cookie->new($W->{"r"}, + "name" =>$name, + "value" =>$val, + "expires"=>"+3M", + "domain" =>$W->{"web_hostname"}, + # No __PACKAGE__ as it needs to be retrieved also from: /project/captive/Index.pm + "path" =>"/project/captive/", + "secure" =>0, + # Do not: # Prevent: Can't bake2 a Netscape cookie + # "version"=>1, + # as RFCed "Cookie2" somehow does not work and even nobody uses it. + ); + # Do not: $cookie->bake2($W->{"r"}); + # as RFCed "Cookie2" somehow does not work and even nobody uses it. + $cookie->bake($W->{"r"}); + } + # Somehow it may croak on error parsing the cookie headers or whatever. + return eval { $jar->cookies($name) }; +} + + +my $COLS=50; + +sub nameval($) +{ +my($name)=@_; + + my $val=$W->{"args"}{$name}; + return 'name="'.$name.'"'.(!defined $val ? "" : ' value="'.escapeHTML($val).'"'); +} + +sub textarea($$;$) +{ +my($name,$rows,$attr)=@_; + + return <<"HERE"; + +HERE +} + +sub radio($$;$) +{ +my($name,$value,$attr)=@_; + + return <<"HERE"; + {"args"}{$name}||"") ne $value ? '' : ' checked="checked"' + ]}@{[ + !$attr ? '' : ' '.$attr + ]} /> +HERE +} + +sub store() +{ + my $data=""; + $data.=<<"HERE"; +stamp: @{[ Time::Piece::ISO::gmtime()."+00:00" ]} +HERE + for my $key (qw( + User-Agent + Referer + _remote_ip + )) { + next if !defined (my $val=$W->{"headers_in"}{$key}); + $data.=<<"HERE" +headers_in::$key=$val +HERE + } + $data.="\n"; + for my $key (sort keys(%{$W->{"args"}})) { + next if $key eq "file"; + next if $key eq "submit"; + my $val=$W->{"args"}{$key}; + next if !defined $val; + next if $val eq ""; + $data.=<<"HERE"; +$key: +$val + +HERE + } + $data.=("-" x 78)."\n\n"; + + my $filename=">>".path_abs_disk("./DriverSurvey.out"); + local *F; + open F,$filename or confess "open \"$filename\": $!"; + print F $data or confess "write \"$filename\": $!"; + close F or confess "close \"$filename\": $!"; +} + +sub submit() +{ + return "Please check the appropriate leftmost checkmark." + if !$W->{"args"}{"kind"}; + store(); + # It works as &Apache2::Cookie::bake uses &err_headers_out - it is a redirect (not 200 OK). + cookie(1); + My::Web->http_moved("./"); +} + +sub handler +{ +My::Web->init( + "title"=>'Captive NTFS - Linux Drivers Availability Survey', + "js_push"=>"./DriverSurvey.js", + "args_check"=>{ + "file"=>'^[^/]*$', + }, + "args_persistent"=>{map(($_=>1),qw( + file + ))}, + "css_push"=>"./Lib.css", + "heading"=>0, + "footer"=>0, + "no_job"=>1, + "http_safe"=>0, + ); + +# Workaround persistence of 'empty' argument - omit it instead. +do { $$_=undef() if !$$_; } for \$W->{"args"}{"file"}; + +my $error=submit() if $W->{"args"}{"submit"}; + +# At least after &submit ! +My::Web->heading(); + + +my $PRODUCTS_MAX=5; + + +print <<"HERE"; + +

Linux Drivers Availability

+HERE + +if (!$error) { + print <<"HERE"; +

Please take a minute before downloading Captive NTFS to fill in this survey +for the possibility to extend Captive for free support of other MS-Windows drivers +(besides the current file system drivers). The original MS-Windows installation +(ntoskrnl.exe) would not even be needed in such case.

+HERE + } +else { + print <<"HERE"; +

$error

+HERE + } + +print <<"HERE"; +
+@{[ input_hidden_persistents() ]} + + + + + + +HERE +if ($error) { + print <<"HERE"; + +HERE + } +print <<"HERE"; + +
+ + + + + + + +
+

@{[ radio "kind","owned" ]} I would like such MS-Windows drivers interface + - I have a hardware device missing Linux support.

+

@{[ radio "kind","wannabuy" ]} I would like to buy a hardware device + but so far I could not as it is not Linux compatible.

+ + + +HERE +for my $producti (0..$PRODUCTS_MAX-1) { +print <<"HERE"; + + + + + + + + + +HERE + } +# Just a protection for non-CSS non-JS browsers to no longer display the button: +if (!$W->{"args"}{"productnext"}) { + print <<"HERE"; + + +HERE + } +print <<"HERE"; + + + + + + + + + + +
Incompatible Hardware Details
Product #@{[ 1+$producti ]}
Vendor (if known) and product name
Product webpage URL (if known)
 
Would you like to cooperate on the driver testing? + @{[ radio "coop","yes" ]} Yes, I want to test a snapshot of the driver right now. +
+ @{[ radio "coop","buy" ]} Yes but only if the driver somehow works + to buy the device first. +
+ @{[ radio "coop","no" ]} No, I do not own the device + or I do not want to test it. +
+ @{[ radio "coop","other",'id="coop_other_radio"' ]} Other answer:
+ @{[ textarea "coop_other_textarea",2,q{onkeypress="click_on('coop_other_radio');"} ]} +
+
@{[ radio "kind","oss" ]} I know a specific hardware (either mine or just seen) + is not compatible but I do not want to use MS-Windows drivers in Linux. + +

What are the more specific reasons? Are you aware the drivers in Linux are + in many times just reverse engineered out of their MS-Windows counterparts?

+ + @{[ textarea "kind_oss",3 ]} +
@{[ radio "kind","working" ]} All my hardware is working perfectly in Linux.
@{[ radio "kind","answered" ]} I already answered this survey before.
Your e-mail; optional but appreciated:
Comments
+ @{[ textarea "comment",3 ]} +
$error
+ {"args"}{"file"}) + : "Submit the survey" + ]}" /> +
+
+ +

Direct e-mail address: @{[ a_href 'mailto:driversurvey@jankratochvil.net' ]}

+ +HERE + + +exit; +} +1; diff --git a/project/captive/Index.pm b/project/captive/Index.pm index 7b8a029..ae5a1b9 100755 --- a/project/captive/Index.pm +++ b/project/captive/Index.pm @@ -33,14 +33,11 @@ our @ListItem=( "priority"=>666, "summary"=>"The first free NTFS read/write filesystem for GNU/Linux", "license"=>"GPL", - "maintenance"=>"update", + "maintenance"=>"active", "language"=>"i386 asm, C, Perl", "icon"=>"captive-install-acquire-icon.png", "cvs-of main tree"=>"captive", "cvs-of branched ReactOS subdir"=>"reactos:captive", - "cvs-of branched LUFS"=>"lufs:captive", - "cvs-of 'httpcaptive://' method"=>"gnome-vfs-httpcaptive:captive", - "cvs-of 'libntfs://' method"=>"ntfsprogs-gnomevfs", "description"=>sub { return <<"HERE"; },

Project implements the first full read/write free access to NTFS disk drives. You can mount your Microsoft Windows NT, 200x or XP partition as @@ -76,15 +73,35 @@ my $W=project::Lib->init( .'• '.a_href('#seealso','See Also').'' .'' }, + "project::Lib-init-hook"=>sub { + if (my $file=$W->{"args"}{"file"}) { + My::Web::header("Refresh"=>"1;url=".path_web("./dist/$file","abs"=>1)); + } + }, ); &{$_}() for reverse @{$W->{"footing_delimit_sub_push"}}; -my %version=( - map(($_=>["1.1.5","0"]),qw(captive captive-lufs captive-install)), - "lufs"=>["0.9.7","1captive8"], - ); +my $version="1.1.6.1"; +my $revision="0"; + +Wrequire 'project::captive::DriverSurvey'; +my $survey_want=1; +$survey_want=0 if $W->{"args"}{"file"}; +$survey_want=0 if project::captive::DriverSurvey::cookie(); + +local *download=sub($) +{ +my($name)=@_; + + # Do not: ,"attr"=>'target="_blank"' + # as it would require Framed XHTML. + my $real="dist/$name"; + return a_href './DriverSurvey.pm?file='.$name,$name,"size"=>$real + if $survey_want; + return a_href $real,$name,"size"=>1; +}; print <<"HERE";

Download

@@ -96,67 +113,47 @@ print <<"HERE";

RPM i386 binary
tested for distributions:

    -
  • Red Hat 9 Shrike
  • -
  • Red Hat 8 Psyche
  • -
  • SuSE 9.0
  • -
  • SuSE 9.1
  • -
  • Mandrake 9.1 Bamboo
  • +
  • Fedora Core 4
- @{[ a_href 'dist/captive-static-'.$version{"captive"}[0].'-'.$version{"captive"}[1].'.i386.rpm', - undef(),"size"=>1,"basename"=>1 ]} + @{[ download("captive-static-$version-$revision.i386.rpm") ]}

.tar.gz i386 binary
(for non-RPM distributions)

- @{[ a_href 'dist/captive-static-'.$version{"captive"}[0].'.tar.gz',undef(),"size"=>1,"basename"=>1 ]} + @{[ download("captive-static-$version.tar.gz") ]} Source archives @{[ a_href 'CVS.pm#source','download link' ]} +HERE -

Development Status

- -

Project is no longer developed. The key functionality is reached -by the latest released version. All its resources are available -@{[ a_href 'CVS.pm#source','here' ]} for download.

- -

Known Issue

- -

Captive was written to interface with the Linux kernel via -@{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]}. -Unfortunately, this project is no longer being maintained by its author. -Mounting of NTFS devices usually works, but is no longer supported by the -author of Captive. Always unmount the device by umount(8) command before shutting -down your GNU/Linux system.

- -

A port of Captive to the newer -@{[ a_href 'http://fuse.sourceforge.net/','FUSE' ]} -interface has not yet been implemented. -There is an experimental LUFS-FUSE bridge called -@{[ a_href 'http://sourceforge.net/project/showfiles.php?group_id=121684','lufis' ]} -that can be used in the meanwhile. -Also, the captive-cmdline(1) interface will get around any kernel compatibility -problems.

+if (!$survey_want) { + print <<"HERE"; +

@{[ a_href 'DriverSurvey.pm','Linux Drivers Availability survey' ]} link +- if you already answered before.

+HERE + } +print <<"HERE"; @{[ vskip "3ex" ]}

NEWS

-
captive-1.1.5 (2004-01-18) [@{[ a_href $W->{"project_viewcvs"}.'/*checkout*/captive/NEWS?rev=HEAD','archive' ]}]
+
captive-1.1.6.1 (2005-12-29) [@{[ a_href $W->{"project_viewcvs"}.'captive/NEWS?rev=HEAD','archive' ]}]
    -
  • Fixed ignorance of the file truncate operation via LUFS (Matthias R.)
  • -
  • Support for reading of HIDDEN SYSTEM NTFS files via LUFS
  • -
  • Fixed refusal to mount some NT4.0 NTFSes (Nerijus Baliunas, Scott Chevalley)
  • -
  • Support /dev/ataraid devices (Ivan Tonov)
  • +
  • New FUSE interface, deprecated LUFS - improve compatibility of Linux kernel
  • +
  • Provided script for proper NTFS unmounts during GNU/Linux OS shutdown
  • +
  • Updates for recent Microsoft installed binaries and files for download
  • +
  • Hopefully survives reading of many small files like on XMMS scanning
  • +
  • Improved recent GNU/Linux build environment compatibility
-
lufs-0.9.7captive8 (2003-12-06) [@{[ a_href $W->{"project_viewcvs"}.'/*checkout*/lufs/NEWS.captive?rev=1.1.2.11','archive' ]}]
@{[ vskip "3ex" ]} @@ -216,50 +213,30 @@ problems.

available Microsoft Windows drivers versions. Now you can execute:

-

# captive-cmdline \\ - --load-module=/var/lib/captive/ntoskrnl.exe \\ - --filesystem=/var/lib/captive/ntfs.sys \\ - --sandbox-server=/usr/sbin/captive-sandbox-server \\ - --bug-pathname=/tmp/captive-bug-%FT%T.captivebug.xml.gz \\ - --disk --rw /dev/hda1 -# Now you can use ftp(1)-like command-line interface for the NTFS disk access.

-

(Backslash end-of-line characters '\\' to be omitted for line continuation.)

+

+ # mkdir /mnt/dosc
+ # mount -t captive-ntfs /dev/hda1 /mnt/dosc +

Overview

-

Any errors from 'captive-lufs' are written to '/var/log/messages'.

+

Any errors from 'captive-fuse' are written to '/var/log/messages'.

Needed drivers (at least ntoskrnl.exe+ntfs.sys) must be in '/var/lib/captive'.

'captive' package creates 'captive' user and 'captive' group on your system.

-

LUFS Kernel Driver Module

- -

@{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]} (Linux Userland File -System) needs Linux kernel module driver (lufs.o) compatible with your -running Linux kernel. The binary driver is supplied already precompiled for many -Linux kernel versions in the binary packages above (.i386.rpm and -_i386.deb archives).

+

FUSE Kernel Driver Module

-

If you cannot mount(8) your NTFS filesystem you should run /usr/share/lufs/prepmod to see the reasons. It is always -recommended to upgrade to the latest stable kernel supplied by your GNU/Linux -distribution vendor. You may need to install package -kernel-source (Red Hat) or kernel-headers (Debian) matching your -Linux kernel version (rpm -q kernel) and re-run /usr/share/lufs/prepmod.

+

@{[ a_href 'http://fuse.sourceforge.net/','FUSE' ]} (Filesystem in Userspace) +needs Linux kernel module driver (fuse.ko) compatible with your +running Linux kernel.

-

WARNING: This 'captive' package may modify your Linux kernel -sources matching your currently running kernel version. These minor -modifications may include a dependencies rebuild, compiling build tools, fixes of -several include files, etc. All the modifications are done at the mount(8) time -by the automatically executed /usr/share/lufs/prepmod script. -This behavior was not present in the original -@{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]} distribution -by @{[ a_href 'http://www.malinux.net/main/','Florin Malita' ]}.

+

If you cannot mount(8) your NTFS filesystem you should check your +Linux kernel is based on version at least 2.6.14 where +@{[ a_href 'http://fuse.sourceforge.net/','FUSE' ]} got imported. You should +also check the module is enabled or even built-in.

HERE @@ -337,7 +314,6 @@ print <<"HERE"; my @mans=( 'captive'=>[7,'Microsoft Windows NT kernel emulation for NTFS disk access'], 'mount.captive'=>[8,'mount(8) interface for NTFS disk access'], - 'lufs-captivefs'=>[7,'Linux Userland File System module for NTFS as filesystem'], 'captive-cmdline'=>[1,'Command-line client for captive(7) NTFS disk access'], ### 'captive-sandbox-server'=>[1,'Security+safety wrapper for NTFS disk access'], 'captive-install-acquire'=>[1,'Find MS Windows XP driver files for NTFS'], diff --git a/project/captive/Lib.css b/project/captive/Lib.css index e213507..1e6c4e4 100644 --- a/project/captive/Lib.css +++ b/project/captive/Lib.css @@ -18,3 +18,5 @@ .name { font-style: italic; } +table.padded > tr > td { padding: 15px; } +table.vtop > tr > td { vertical-align: top; } diff --git a/project/captive/Makefile.am b/project/captive/Makefile.am index 85df28c..f292e20 100644 --- a/project/captive/Makefile.am +++ b/project/captive/Makefile.am @@ -28,5 +28,9 @@ MODPERL_PM+= \ Preview.pm \ CVS.pm \ Press.pm \ - TestimonialBrunoSantos.pm + TestimonialBrunoSantos.pm \ + DriverSurvey.pm + +EXTRA_DIST+= \ + DriverSurvey.js diff --git a/project/captive/dist/build-captive-static-2003-12-14-00.tar.gz b/project/captive/dist/build-captive-static-2003-12-14-00.tar.gz deleted file mode 100644 index 0497c51..0000000 Binary files a/project/captive/dist/build-captive-static-2003-12-14-00.tar.gz and /dev/null differ diff --git a/project/captive/dist/captive-1.1.5.tar.gz b/project/captive/dist/captive-1.1.5.tar.gz deleted file mode 100644 index 5b9d148..0000000 Binary files a/project/captive/dist/captive-1.1.5.tar.gz and /dev/null differ diff --git a/project/captive/dist/captive-1.1.6.1.tar.gz b/project/captive/dist/captive-1.1.6.1.tar.gz new file mode 100644 index 0000000..962285c Binary files /dev/null and b/project/captive/dist/captive-1.1.6.1.tar.gz differ diff --git a/project/captive/dist/captive-install_1.1.5_i386.deb b/project/captive/dist/captive-install_1.1.5_i386.deb deleted file mode 100644 index ecbb8de..0000000 Binary files a/project/captive/dist/captive-install_1.1.5_i386.deb and /dev/null differ diff --git a/project/captive/dist/captive-lufs_1.1.5_i386.deb b/project/captive/dist/captive-lufs_1.1.5_i386.deb deleted file mode 100644 index 26740f8..0000000 Binary files a/project/captive/dist/captive-lufs_1.1.5_i386.deb and /dev/null differ diff --git a/project/captive/dist/captive-static-1.1.5.tar.gz b/project/captive/dist/captive-static-1.1.5.tar.gz deleted file mode 100644 index 054d376..0000000 Binary files a/project/captive/dist/captive-static-1.1.5.tar.gz and /dev/null differ diff --git a/project/captive/dist/captive-static-1.1.6.1-0.i386.rpm b/project/captive/dist/captive-static-1.1.6.1-0.i386.rpm new file mode 100644 index 0000000..e2fe418 Binary files /dev/null and b/project/captive/dist/captive-static-1.1.6.1-0.i386.rpm differ diff --git a/project/captive/dist/captive-static-1.1.5-0.i386.rpm b/project/captive/dist/captive-static-1.1.6.1.tar.gz similarity index 55% rename from project/captive/dist/captive-static-1.1.5-0.i386.rpm rename to project/captive/dist/captive-static-1.1.6.1.tar.gz index 6320f79..ae5ec37 100644 Binary files a/project/captive/dist/captive-static-1.1.5-0.i386.rpm and b/project/captive/dist/captive-static-1.1.6.1.tar.gz differ diff --git a/project/captive/dist/captive_1.1.5_i386.deb b/project/captive/dist/captive_1.1.5_i386.deb deleted file mode 100644 index 723c0d6..0000000 Binary files a/project/captive/dist/captive_1.1.5_i386.deb and /dev/null differ diff --git a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0.i386.rpm b/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0.i386.rpm deleted file mode 100644 index bad3365..0000000 Binary files a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0.i386.rpm and /dev/null differ diff --git a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0.src.rpm b/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0.src.rpm deleted file mode 100644 index b53e440..0000000 Binary files a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0.src.rpm and /dev/null differ diff --git a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0mdk91.i586.rpm b/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0mdk91.i586.rpm deleted file mode 100644 index 180a873..0000000 Binary files a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0mdk91.i586.rpm and /dev/null differ diff --git a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0rh8.i386.rpm b/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0rh8.i386.rpm deleted file mode 100644 index 995f6e0..0000000 Binary files a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2-0rh8.i386.rpm and /dev/null differ diff --git a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2.tar.gz b/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2.tar.gz deleted file mode 100644 index 848a25f..0000000 Binary files a/project/captive/dist/gnome-vfs-httpcaptive-2.3.8captive2.tar.gz and /dev/null differ diff --git a/project/captive/dist/gnome-vfs-httpcaptive-debuginfo-2.3.8captive2-0.i386.rpm b/project/captive/dist/gnome-vfs-httpcaptive-debuginfo-2.3.8captive2-0.i386.rpm deleted file mode 100644 index 2ed799b..0000000 Binary files a/project/captive/dist/gnome-vfs-httpcaptive-debuginfo-2.3.8captive2-0.i386.rpm and /dev/null differ diff --git a/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2.dsc b/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2.dsc deleted file mode 100644 index 404c5fd..0000000 --- a/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2.dsc +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -Format: 1.0 -Source: gnome-vfs-httpcaptive -Version: 2.3.8captive2 -Binary: gnome-vfs-httpcaptive -Maintainer: Jan Kratochvil -Architecture: i386 -Standards-Version: 3.5.2 -Build-Depends: debhelper (>> 3.0.0), libgnomevfs2-dev, libglib2.0-dev -Files: - 28b11b8bad6afd34358c7164cf115b26 548681 gnome-vfs-httpcaptive_2.3.8captive2.tar.gz - ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.3 (GNU/Linux) - -iD8DBQE/cQF0zD78uUT8djIRAg0BAJ41drC99NHu0WeZ1jbrOeqBVDskagCgjiBh -LGCDaoxg6ntOx5MKZezbgbA= -=R87D ------END PGP SIGNATURE----- diff --git a/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2.tar.gz b/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2.tar.gz deleted file mode 100644 index f283893..0000000 Binary files a/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2.tar.gz and /dev/null differ diff --git a/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2_i386.changes b/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2_i386.changes deleted file mode 100644 index 5f696a5..0000000 --- a/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2_i386.changes +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -Format: 1.7 -Date: Sun, 17 Aug 2003 14:16:59 +0200 -Source: gnome-vfs-httpcaptive -Binary: gnome-vfs-httpcaptive -Architecture: source i386 -Version: 2.3.8captive2 -Distribution: unstable -Urgency: low -Maintainer: Jan Kratochvil -Changed-By: Jan Kratochvil -Description: - gnome-vfs-httpcaptive - Improved http handler for GNOME virtual file-system libraries -Changes: - gnome-vfs-httpcaptive (2.3.8captive2) unstable; urgency=low - . - * See package ChangeLog entries. -Files: - 17cb718d117e7d9379f82f0bd6921f5e 601 main/base optional gnome-vfs-httpcaptive_2.3.8captive2.dsc - 28b11b8bad6afd34358c7164cf115b26 548681 main/base optional gnome-vfs-httpcaptive_2.3.8captive2.tar.gz - ced34037f2394693e125d93569fa3c05 29014 main/base optional gnome-vfs-httpcaptive_2.3.8captive2_i386.deb - ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.3 (GNU/Linux) - -iD8DBQE/cQF5zD78uUT8djIRAi+lAJ4kX3A7BRernUTWY3ULbjyNhjjSrQCdFBjH -BMDmPvZSKiguLfa47mNMDbM= -=cNwB ------END PGP SIGNATURE----- diff --git a/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2_i386.deb b/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2_i386.deb deleted file mode 100644 index b2f938b..0000000 Binary files a/project/captive/dist/gnome-vfs-httpcaptive_2.3.8captive2_i386.deb and /dev/null differ diff --git a/project/captive/dist/lufs-0.9.7captive8.tar.gz b/project/captive/dist/lufs-0.9.7captive8.tar.gz deleted file mode 100644 index 3b83fbe..0000000 Binary files a/project/captive/dist/lufs-0.9.7captive8.tar.gz and /dev/null differ diff --git a/project/captive/dist/lufs_0.9.7captive8_i386.deb b/project/captive/dist/lufs_0.9.7captive8_i386.deb deleted file mode 100644 index 55aecff..0000000 Binary files a/project/captive/dist/lufs_0.9.7captive8_i386.deb and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-200309071734-1captive1.i386.rpm b/project/captive/dist/ntfsprogs-200309071734-1captive1.i386.rpm deleted file mode 100644 index 801d4a7..0000000 Binary files a/project/captive/dist/ntfsprogs-200309071734-1captive1.i386.rpm and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-200309071734-1captive1.src.rpm b/project/captive/dist/ntfsprogs-200309071734-1captive1.src.rpm deleted file mode 100644 index 50eb2ab..0000000 Binary files a/project/captive/dist/ntfsprogs-200309071734-1captive1.src.rpm and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-200309071734captive1.tar.gz b/project/captive/dist/ntfsprogs-200309071734captive1.tar.gz deleted file mode 100644 index ddca521..0000000 Binary files a/project/captive/dist/ntfsprogs-200309071734captive1.tar.gz and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-debuginfo-200309071734-1captive1.i386.rpm b/project/captive/dist/ntfsprogs-debuginfo-200309071734-1captive1.i386.rpm deleted file mode 100644 index 6a64a6b..0000000 Binary files a/project/captive/dist/ntfsprogs-debuginfo-200309071734-1captive1.i386.rpm and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-dev_200309071734captive1_i386.deb b/project/captive/dist/ntfsprogs-dev_200309071734captive1_i386.deb deleted file mode 100644 index a164d20..0000000 Binary files a/project/captive/dist/ntfsprogs-dev_200309071734captive1_i386.deb and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-devel-200309071734-1captive1.i386.rpm b/project/captive/dist/ntfsprogs-devel-200309071734-1captive1.i386.rpm deleted file mode 100644 index 1162b36..0000000 Binary files a/project/captive/dist/ntfsprogs-devel-200309071734-1captive1.i386.rpm and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-gnomevfs-1.0.2-0.i386.rpm b/project/captive/dist/ntfsprogs-gnomevfs-1.0.2-0.i386.rpm deleted file mode 100644 index c8b6631..0000000 Binary files a/project/captive/dist/ntfsprogs-gnomevfs-1.0.2-0.i386.rpm and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-gnomevfs-1.0.2-0.src.rpm b/project/captive/dist/ntfsprogs-gnomevfs-1.0.2-0.src.rpm deleted file mode 100644 index dcf43c7..0000000 Binary files a/project/captive/dist/ntfsprogs-gnomevfs-1.0.2-0.src.rpm and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-gnomevfs-1.0.2.tar.gz b/project/captive/dist/ntfsprogs-gnomevfs-1.0.2.tar.gz deleted file mode 100644 index a594525..0000000 Binary files a/project/captive/dist/ntfsprogs-gnomevfs-1.0.2.tar.gz and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-gnomevfs-debuginfo-1.0.2-0.i386.rpm b/project/captive/dist/ntfsprogs-gnomevfs-debuginfo-1.0.2-0.i386.rpm deleted file mode 100644 index 98ec4ba..0000000 Binary files a/project/captive/dist/ntfsprogs-gnomevfs-debuginfo-1.0.2-0.i386.rpm and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-gnomevfs_1.0.2.dsc b/project/captive/dist/ntfsprogs-gnomevfs_1.0.2.dsc deleted file mode 100644 index c4a59e4..0000000 --- a/project/captive/dist/ntfsprogs-gnomevfs_1.0.2.dsc +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -Format: 1.0 -Source: ntfsprogs-gnomevfs -Version: 1.0.2 -Binary: ntfsprogs-gnomevfs -Maintainer: Jan Kratochvil -Architecture: i386 -Standards-Version: 3.5.2 -Build-Depends: debhelper (>> 3.0.0), - libgnomevfs2-dev, - libglib2.0-dev, - ntfsprogs-dev -Files: - 4087f57e2f6a38b2ec8956396b61bc24 312531 ntfsprogs-gnomevfs_1.0.2.tar.gz - ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.3 (GNU/Linux) - -iD8DBQE/k4zXzD78uUT8djIRAqQKAJ0cxz6Uo7RBg1AXyXBBOgBzFOLsYwCgk1Pq -q4pv3fUOIAv8zUdOMVRYpV4= -=KIUE ------END PGP SIGNATURE----- diff --git a/project/captive/dist/ntfsprogs-gnomevfs_1.0.2.tar.gz b/project/captive/dist/ntfsprogs-gnomevfs_1.0.2.tar.gz deleted file mode 100644 index 0cfce9f..0000000 Binary files a/project/captive/dist/ntfsprogs-gnomevfs_1.0.2.tar.gz and /dev/null differ diff --git a/project/captive/dist/ntfsprogs-gnomevfs_1.0.2_i386.changes b/project/captive/dist/ntfsprogs-gnomevfs_1.0.2_i386.changes deleted file mode 100644 index 15ec8b4..0000000 --- a/project/captive/dist/ntfsprogs-gnomevfs_1.0.2_i386.changes +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -Format: 1.7 -Date: Sun, 17 Aug 2003 14:16:59 +0200 -Source: ntfsprogs-gnomevfs -Binary: ntfsprogs-gnomevfs -Architecture: source i386 -Version: 1.0.2 -Distribution: unstable -Urgency: low -Maintainer: Jan Kratochvil -Changed-By: Jan Kratochvil -Description: - ntfsprogs-gnomevfs - NTFS filesystem library GNOME virtual file-system interface -Changes: - ntfsprogs-gnomevfs (1.0.2) unstable; urgency=low - . - * See package ChangeLog entries. -Files: - 770c049238a95f00920aff1f08cfdcce 594 main/base optional ntfsprogs-gnomevfs_1.0.2.dsc - 4087f57e2f6a38b2ec8956396b61bc24 312531 main/base optional ntfsprogs-gnomevfs_1.0.2.tar.gz - 5833cbaa6611d8afaaf8f10632755fc8 9896 main/base optional ntfsprogs-gnomevfs_1.0.2_i386.deb - ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.3 (GNU/Linux) - -iD8DBQE/k4zczD78uUT8djIRAni7AJ4zzu9GWno8xcPJ/m/ySrMTLRxlmQCfZEs7 -GYgWB1y2Lm0QeHQtx+VRBRE= -=RhCE ------END PGP SIGNATURE----- diff --git a/project/captive/dist/ntfsprogs-gnomevfs_1.0.2_i386.deb b/project/captive/dist/ntfsprogs-gnomevfs_1.0.2_i386.deb deleted file mode 100644 index 8fcd67a..0000000 Binary files a/project/captive/dist/ntfsprogs-gnomevfs_1.0.2_i386.deb and /dev/null differ diff --git a/project/captive/dist/ntfsprogs_200309071734captive1.dsc b/project/captive/dist/ntfsprogs_200309071734captive1.dsc deleted file mode 100644 index 9b6b0a3..0000000 --- a/project/captive/dist/ntfsprogs_200309071734captive1.dsc +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -Format: 1.0 -Source: ntfsprogs -Version: 200309071734captive1 -Binary: ntfsprogs, ntfsprogs-dev -Maintainer: Jan Kratochvil -Architecture: i386 -Standards-Version: 3.5.2 -Files: - d1d605893444b80fd837301320dd2261 535278 ntfsprogs_200309071734captive1.tar.gz - ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.3 (GNU/Linux) - -iD8DBQE/bdcpzD78uUT8djIRAjnhAKCE3ofdN1P9M434xfCqJTuqAVSHSQCdFiq1 -0Mg8noB5XT55apyd7hq6RbI= -=LrBu ------END PGP SIGNATURE----- diff --git a/project/captive/dist/ntfsprogs_200309071734captive1.tar.gz b/project/captive/dist/ntfsprogs_200309071734captive1.tar.gz deleted file mode 100644 index 0ec13c3..0000000 Binary files a/project/captive/dist/ntfsprogs_200309071734captive1.tar.gz and /dev/null differ diff --git a/project/captive/dist/ntfsprogs_200309071734captive1_i386.changes b/project/captive/dist/ntfsprogs_200309071734captive1_i386.changes deleted file mode 100644 index d60878f..0000000 --- a/project/captive/dist/ntfsprogs_200309071734captive1_i386.changes +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -Format: 1.7 -Date: Tue, 09 Sep 2003 08:22:48 +0200 -Source: ntfsprogs -Binary: ntfsprogs ntfsprogs-dev -Architecture: source i386 -Version: 200309071734captive1 -Distribution: unstable -Urgency: low -Maintainer: Jan Kratochvil -Changed-By: Jan Kratochvil -Description: - ntfsprogs - NTFS filesystem libraries and utilities - ntfsprogs-dev - files required to compile software that uses libntfs -Changes: - ntfsprogs (200309071734captive1) unstable; urgency=low - . - * See package ChangeLog entries. -Files: - d4fd74a7e479d42cb3e375c0c50f0694 524 contrib/base optional ntfsprogs_200309071734captive1.dsc - d1d605893444b80fd837301320dd2261 535278 contrib/base optional ntfsprogs_200309071734captive1.tar.gz - 202a161dc4b512e94ed4ef65a798b33a 169968 contrib/base optional ntfsprogs_200309071734captive1_i386.deb - 80b2f06832c66bb07c439f7c7e175b64 91630 contrib/base optional ntfsprogs-dev_200309071734captive1_i386.deb - ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.3 (GNU/Linux) - -iD8DBQE/bdcuzD78uUT8djIRAvX4AJoC11uEH2aQNfmLgeRGOOU5u0098gCcDHpS -cN3+Cbhbo775wc68qlvhSqw= -=FheU ------END PGP SIGNATURE----- diff --git a/project/captive/dist/ntfsprogs_200309071734captive1_i386.deb b/project/captive/dist/ntfsprogs_200309071734captive1_i386.deb deleted file mode 100644 index 53b9fcb..0000000 Binary files a/project/captive/dist/ntfsprogs_200309071734captive1_i386.deb and /dev/null differ diff --git a/project/captive/man/captive-cmdline.pod.html b/project/captive/man/captive-cmdline.pod.html index c055026..03236bc 100644 --- a/project/captive/man/captive-cmdline.pod.html +++ b/project/captive/man/captive-cmdline.pod.html @@ -2,7 +2,6 @@ captive-cmdline - Command-line client for B<captive> NTFS disk access - @@ -11,7 +10,6 @@
    -
  • NAME
  • SYNOPSIS
  • DESCRIPTION
  • @@ -35,7 +33,7 @@

    DESCRIPTION

    Simple ftp(1)-like client to access disks by Microsoft Windows drivers. -Use if lufs-captivefs(7) not available; also useful during debugging.

    +Use if mount.captive(8) not available; also useful during debugging.


    @@ -43,155 +41,160 @@ Use if lufs-captivefs(7) not available; also useful during debu

    All programs using captive(7) library share the common set of configuration options:

    -
    --filesystem=pathname
    -
    +
    --filesystem=pathname
    +
    -Pathname to .sys or .so filesystem module file. You will use exactly +

    Pathname to .sys or .so filesystem module file. You will use exactly once this option. Possible choices are -/var/lib/captive/ntfs.sys -etc. +/usr/local/var/lib/captive/ntfs.sys +etc.

    -

    -
    --load-module=pathname
    -
    +
    --load-module=pathname
    +
    -Pathname to any W32 module to load w/o initialization. Multiple modules can be +

    Pathname to any W32 module to load w/o initialization. Multiple modules can be loaded although in common case you will use just -/var/lib/captive/ntoskrnl.exe -here. +/usr/local/var/lib/captive/ntoskrnl.exe +here.

    -

    -
    --ro
    -
    +
    --modid-path=pathname
    +
    -Read/write mode: Any write access will be forbidden. You should set this mode +

    Pathname to the .captivemodid.xml database of existing W32 module +identifications. The default used one is: +/usr/local/etc/w32-mod-id.captivemodid.xml +You must have this database update for any W32 binary module you are using. +If you miss such database you may also try to use --load-untested below.

    +
    +
    --load-untested
    + +
    +

    Load tthe W32 modules despite they may not match the current --modid-path +identifications database. If you use this option Captive may fail very easily +as such module was never tested before the release and may need some +compatibility updates. Still no data should be corrupted even if using this +--load-untested option.

    +
    +
    --ro
    + +
    +

    Read/write mode: Any write access will be forbidden. You should set this mode for cdfs.sys (CD-ROM filesystem). This option is mutually exclusive with ---blind and --rw. +--blind and --rw.

    -

    -
    --blind
    -
    +
    --blind
    +
    -Read/write mode: All writes are just simulated in memory (default). Microsoft +

    Read/write mode: All writes are just simulated in memory (default). Microsoft Windows filesystem driver will see no difference between --blind and --rw although the UNIX image file/device will be open read/only as for --ro. All the changes get 'written' as long as captive(7) program runs - all the changes will be lost afterwards. This mode is the most suitable for debugging. -This option is mutually exclusive with --ro and --rw. +This option is mutually exclusive with --ro and --rw.

    -

    -
    --rw
    -
    +
    --rw
    +
    -Read/write mode: Write directly to the image file/device. Standard read/write +

    Read/write mode: Write directly to the image file/device. Standard read/write disk mode. You should use --sandbox-server option in this case to have the disk protected against Microsoft Windows filesystem driver crashes. Modified disk image blocks are in --sandbox-server --rw mode buffered in the memory and they get reflected to the disk only after successful completion of all filesystem operations including filesystem unmount. -This option is mutually exclusive with --ro and --blind. +This option is mutually exclusive with --ro and --blind.

    -

    -
    --cdrom
    -
    +
    --cdrom
    +
    -Media type: CD-ROM. You must set this media type for cdfs.sys. +

    Media type: CD-ROM. You must set this media type for cdfs.sys. Virtual Microsoft Windows block device driver used by Captive maps to -\Device\CdRom0. This option is mutually exclusive with --disk. +\Device\CdRom0. This option is mutually exclusive with --disk.

    -

    -
    --disk
    -
    +
    --disk
    +
    -Media type: Disk (default). You must set this media type for all the Microsoft +

    Media type: Disk (default). You must set this media type for all the Microsoft Windows filesystem drivers except cdfs.sys. Virtual Microsoft Windows block device driver used by Captive maps to \Device\CaptiveHarddisk0. -This option is mutually exclusive with --cdrom. +This option is mutually exclusive with --cdrom.

    -

    -
    --debug-messages
    -
    +
    --debug-messages
    +
    -Turn on debugging messages. Be prepared for substation debug output. -Use of --syslog feature is not recommended in this case. +

    Turn on debugging messages. Be prepared for substation debug output. +Use of --syslog feature is not recommended in this case.

    -

    -
    --sandbox-server=pathname
    -
    +
    --sandbox-server=pathname
    +
    -Pathname to -/usr/sbin/captive-sandbox-server +

    Pathname to +/usr/local/sbin/captive-sandbox-server program, turns on sandboxing. You should always use this option in conjunction with --rw, see it for details. Although this program is setuid root and it drops it privileges -to @CAPTIVE_SANDBOX_SETUID@ user. Your system gets protected by +to captive user. Your system gets protected by chroot(2), setuid(2), setgid(2) and setrlimit(2) UNIX security features against malicious Microsoft Windows drivers. You should never use this -option during debugging. +option during debugging.

    This option is turned on automatically during the mount operation by mount.captive-ntfs(8). Option needs to be used by hand for the captive-cmdline(2) client.

    -

    -
    --sandbox-server-ior=IOR
    -
    +
    --sandbox-server-ior=IOR
    +
    -Specify CORBA IOR of -/usr/sbin/captive-sandbox-server +

    Specify CORBA IOR of +/usr/local/sbin/captive-sandbox-server program, turns on sandboxing. Specified CORBA IOR should be the string starting by ``IOR:'' text. This option is useful only for debugging. No sandbox restarting is -possible in this case. +possible in this case.

    -

    -
    --no-sandbox
    -
    +
    --no-sandbox
    +
    -Turn off sandboxing feature (default). No -/usr/sbin/captive-sandbox-server +

    Turn off sandboxing feature (default). No +/usr/local/sbin/captive-sandbox-server is run. Microsoft Windows filesystem driver is run in native UNIX environment without any CORBA separation. This option is recommended only for debugging. -It is dangerous to use --rw together, see its description for the details. +It is dangerous to use --rw together, see its description for the details.

    -

    -
    --bug-pathname=pathname
    -
    +
    --bug-pathname=pathname
    +
    -Pathname to strftime(3) for .captivebug.xml.gz bugreports. Every crash of +

    Pathname to strftime(3) for .captivebug.xml.gz bugreports. Every crash of sandbox child gets bugreported to the specified file. You should attempt to minimize the number of operations from the mount operation till the expected crash to minimize the snapshot file size. --sandbox-server option is -required for --bug-pathname. +required for --bug-pathname.

    !!! Be aware '.captivebug.xml.gz' will contain data from your disk drive !!!

    -

    -
    --syslog
    -
    +
    --syslog
    +
    -Messages sent to syslog(3) instead of stderr. This option gets handy +

    Messages sent to syslog(3) instead of stderr. This option gets handy for mount(8) operation as the messages would be lost otherway. Watch our for possible ``Filesystem crash broke dirty object'' messages where some written filesystem data got lost in the case of Microsoft Windows -filesystem driver crash. +filesystem driver crash.

    -

    -
    --syslog-facility=facility
    -
    +
    --syslog-facility=facility
    +
    -openlog(3) facility for --syslog. See facility section of +

    openlog(3) facility for --syslog. See facility section of openlog(3) man page for details. Lowercased values such as daemon or -user are supported. +user are supported.

    -

    +


    SEE ALSO

    -

    captive(7), lufs-captivefs(7)

    +

    captive(7), mount.captive(8)


    diff --git a/project/captive/man/captive-install-acquire.pod.html b/project/captive/man/captive-install-acquire.pod.html index 4fc51dc..6884e84 100644 --- a/project/captive/man/captive-install-acquire.pod.html +++ b/project/captive/man/captive-install-acquire.pod.html @@ -2,7 +2,6 @@ captive-install-acquire - Find MS Windows XP driver files for B<NTFS> - @@ -11,7 +10,6 @@
      -
    • NAME
    • SYNOPSIS
    • DESCRIPTION
    • @@ -37,7 +35,7 @@

      Program acquires the needed Microsoft Windows XP driver files. Multiple methods of getting the driver files are supported. All the driver files are stored to the directory -/var/lib/captive/ +/usr/local/var/lib/captive/ where they are expected by mount.captive(8).

      @@ -48,93 +46,86 @@ expected by mount.captive(8).

      --scan-disks-quick, --scan-path or --microsoft-com) are specified. Otherwise the requested action(s) is proceeded in silent batch mode.

      -
      --text
      -
      +
      --text
      +
      -Disable Gnome user interface even if X Window System is available. +

      Disable Gnome user interface even if X Window System is available. You must specify this option as the first one. This option has effect only for -interactive mode (no action options specified). +interactive mode (no action options specified).

      -

      -
      -v|--verbose
      -
      +
      -v|--verbose
      +
      -Display additional information during disks scanning. +

      Display additional information during disks scanning.

      -

      -
      -n|--dry
      -
      +
      -n|--dry
      +
      -Perform all the operations but do not modify anything (no drivers are +

      Perform all the operations but do not modify anything (no drivers are stored to -/var/lib/captive/ -directory). +/usr/local/var/lib/captive/ +directory).

      -

      -
      --modid-path=path
      -
      +
      --modid-path=path
      +
      -Path to .captivemodid.xml database (default: -/etc/w32-mod-id.captivemodid.xml). This file contains +

      Path to .captivemodid.xml database (default: +/usr/local/etc/w32-mod-id.captivemodid.xml). This file contains identifications (md5sum(1)) of known compatible Microsoft Windows XP driver files. captive-install-acquire(1) will ignore any files not identified by this file although you may try to copy them to -/var/lib/captive/ -manually for captive(7) clients. +/usr/local/var/lib/captive/ +manually for captive(7) clients.

      -

      -
      --scan-disks
      -
      +
      --scan-disks
      +
      -Scan all files on any local hard drive (mounted or unmounted) NTFS or +

      Scan all files on any local hard drive (mounted or unmounted) NTFS or (mounted) FAT partitions. This scanning includes cabinet (.cab) -archives. This scanning can last for very long time. +archives. This scanning can last for very long time.

      -

      -
      --scan-disks-quick
      -
      +
      --scan-disks-quick
      +
      -Reduced version of --scan-disks. Only windows/system32 subdirectory in +

      Reduced version of --scan-disks. Only windows/system32 subdirectory in the root of any local hard drive (mounted or unmounted) NTFS or (mounted) FAT partition is investigated. This scan should find existing driver files -in already existing Microsoft Windows XP installations. +in already existing Microsoft Windows XP installations.

      -

      -
      --scan-path=path/URI
      -
      +
      --scan-path=path/URI
      +
      -Scan the specified path/URI for device driver files. You may use either +

      Scan the specified path/URI for device driver files. You may use either filename (/tmp/ntoskrnl.ex_), directory (/tmp/servicepack.cab), NTFS disk file/directory (file:///dev/hda1#libntfs:/windows/system32) or remote URI filename (http://server/path/to/ntfs.sys). Remote URI directory -(such as http://server/subdir/) is not supported. +(such as http://server/subdir/) is not supported.

      Possibly specified directory is always scanned recursively.

      -

      -
      --microsoft-com
      -
      +
      --microsoft-com
      +
      -You can download the best available version of needed drivers from -Microsoft. They can be found in Microsoft Windows XP Service Pack 1 +

      You can download the best available version of needed drivers from +Microsoft. They can be found in Microsoft Windows XP Service Pack 2 Checked Build (URL -http://www.microsoft.com/WindowsXP/pro/downloads/servicepacks/sp1/checkedbuild.asp) +http://msdn.microsoft.com/security/productinfo/xpsp2)

      Legal: In some countries you need to have valid Microsoft Windows XP license to use it.

      -

      Program will need to download approx 29MB of data (the cabinet file is 151MB; +

      Program will need to download approx 61MB of data (the cabinet file is 307MB; 1MB=1e6B here).

      -

      +


      SEE ALSO

      -

      captive-install-fstab(1), captive(7), lufs-captivefs(7)

      +

      captive-install-fstab(1), captive(7), mount.captive(8)


      diff --git a/project/captive/man/captive-install-fstab.pod.html b/project/captive/man/captive-install-fstab.pod.html index 2bec451..3669079 100644 --- a/project/captive/man/captive-install-fstab.pod.html +++ b/project/captive/man/captive-install-fstab.pod.html @@ -2,7 +2,6 @@ captive-install-fstab - Manage B<captive-ntfs> B</etc/fstab> entries - @@ -11,7 +10,6 @@
        -
      • NAME
      • SYNOPSIS
      • DESCRIPTION
      • @@ -46,39 +44,42 @@ directory name is used if multiple disks have the same volume label set.


        OPTIONS

        -
        -v|--verbose
        -
        +
        -v|--verbose
        + +
        +

        Display additional information during disks scanning.

        +
        +
        -n|--dry
        +
        -Display additional information during disks scanning. +

        Perform all the operations but do not modify anything (file /etc/fstab). +You will probably use this option together with [-v|--verbose].

        -

        -
        -n|--dry
        -
        +
        --add
        +
        -Perform all the operations but do not modify anything (file /etc/fstab). -You will probably use this option together with [-v|--verbose]. +

        Add all the found NTFS disk drive partitions to /etc/fstab. +Previous captive-ntfs entries for the same device will be kept +if --replace is not used.

        -

        -
        --add
        -
        +
        --remove
        +
        -Add all the found NTFS disk drive partitions to /etc/fstab. -Any previous captive-ntfs entries will be deleted as described in ---remove option. +

        Remove all lines of filesystem type captive-ntfs and device name in +/dev directory.

        -

        -
        --remove
        -
        +
        --replace
        +
        -Remove all lines of filesystem type captive-ntfs and device name in -/dev directory. +

        Replace existing entries by new ones on --add. By default the existing +captive-ntfs entries are kept untouched.

        -

        +


        SEE ALSO

        -

        captive-install-acquire(1), captive(7), lufs-captivefs(7)

        +

        captive-install-acquire(1), captive(7), mount.captive(8)


        diff --git a/project/captive/man/captive-sandbox-server.pod.html b/project/captive/man/captive-sandbox-server.pod.html index 0dfc4c4..6021302 100644 --- a/project/captive/man/captive-sandbox-server.pod.html +++ b/project/captive/man/captive-sandbox-server.pod.html @@ -2,7 +2,6 @@ captive-sandbox-server - Security+safety wrapper for NTFS disk access - @@ -11,7 +10,6 @@
          -
        • NAME
        • SYNOPSIS
        • DESCRIPTION
        • @@ -51,7 +49,7 @@ connection properties on its standard output.


          SEE ALSO

          -

          captive(7), captive-cmdline(1), lufs-captivefs(7)

          +

          captive(7), captive-cmdline(1), mount.captive(8)


          diff --git a/project/captive/man/captive.pod.html b/project/captive/man/captive.pod.html index 0ad513a..dd76090 100644 --- a/project/captive/man/captive.pod.html +++ b/project/captive/man/captive.pod.html @@ -2,7 +2,6 @@ captive - Microsoft Windows NT kernel emulation for NTFS disk access - @@ -11,7 +10,6 @@
            -
          • NAME
          • DESCRIPTION
          • OPTIONS
          • @@ -42,150 +40,155 @@ clients. You will always use a specific client such as

            All programs using captive(7) library share the common set of configuration options:

            -
            --filesystem=pathname
            -
            +
            --filesystem=pathname
            +
            -Pathname to .sys or .so filesystem module file. You will use exactly +

            Pathname to .sys or .so filesystem module file. You will use exactly once this option. Possible choices are -/var/lib/captive/ntfs.sys -etc. +/usr/local/var/lib/captive/ntfs.sys +etc.

            -

            -
            --load-module=pathname
            -
            +
            --load-module=pathname
            +
            -Pathname to any W32 module to load w/o initialization. Multiple modules can be +

            Pathname to any W32 module to load w/o initialization. Multiple modules can be loaded although in common case you will use just -/var/lib/captive/ntoskrnl.exe -here. +/usr/local/var/lib/captive/ntoskrnl.exe +here.

            -

            -
            --ro
            -
            +
            --modid-path=pathname
            +
            -Read/write mode: Any write access will be forbidden. You should set this mode +

            Pathname to the .captivemodid.xml database of existing W32 module +identifications. The default used one is: +/usr/local/etc/w32-mod-id.captivemodid.xml +You must have this database update for any W32 binary module you are using. +If you miss such database you may also try to use --load-untested below.

            +
            +
            --load-untested
            + +
            +

            Load tthe W32 modules despite they may not match the current --modid-path +identifications database. If you use this option Captive may fail very easily +as such module was never tested before the release and may need some +compatibility updates. Still no data should be corrupted even if using this +--load-untested option.

            +
            +
            --ro
            + +
            +

            Read/write mode: Any write access will be forbidden. You should set this mode for cdfs.sys (CD-ROM filesystem). This option is mutually exclusive with ---blind and --rw. +--blind and --rw.

            -

            -
            --blind
            -
            +
            --blind
            +
            -Read/write mode: All writes are just simulated in memory (default). Microsoft +

            Read/write mode: All writes are just simulated in memory (default). Microsoft Windows filesystem driver will see no difference between --blind and --rw although the UNIX image file/device will be open read/only as for --ro. All the changes get 'written' as long as captive(7) program runs - all the changes will be lost afterwards. This mode is the most suitable for debugging. -This option is mutually exclusive with --ro and --rw. +This option is mutually exclusive with --ro and --rw.

            -

            -
            --rw
            -
            +
            --rw
            +
            -Read/write mode: Write directly to the image file/device. Standard read/write +

            Read/write mode: Write directly to the image file/device. Standard read/write disk mode. You should use --sandbox-server option in this case to have the disk protected against Microsoft Windows filesystem driver crashes. Modified disk image blocks are in --sandbox-server --rw mode buffered in the memory and they get reflected to the disk only after successful completion of all filesystem operations including filesystem unmount. -This option is mutually exclusive with --ro and --blind. +This option is mutually exclusive with --ro and --blind.

            -

            -
            --cdrom
            -
            +
            --cdrom
            +
            -Media type: CD-ROM. You must set this media type for cdfs.sys. +

            Media type: CD-ROM. You must set this media type for cdfs.sys. Virtual Microsoft Windows block device driver used by Captive maps to -\Device\CdRom0. This option is mutually exclusive with --disk. +\Device\CdRom0. This option is mutually exclusive with --disk.

            -

            -
            --disk
            -
            +
            --disk
            +
            -Media type: Disk (default). You must set this media type for all the Microsoft +

            Media type: Disk (default). You must set this media type for all the Microsoft Windows filesystem drivers except cdfs.sys. Virtual Microsoft Windows block device driver used by Captive maps to \Device\CaptiveHarddisk0. -This option is mutually exclusive with --cdrom. +This option is mutually exclusive with --cdrom.

            -

            -
            --debug-messages
            -
            +
            --debug-messages
            +
            -Turn on debugging messages. Be prepared for substation debug output. -Use of --syslog feature is not recommended in this case. +

            Turn on debugging messages. Be prepared for substation debug output. +Use of --syslog feature is not recommended in this case.

            -

            -
            --sandbox-server=pathname
            -
            +
            --sandbox-server=pathname
            +
            -Pathname to -/usr/sbin/captive-sandbox-server +

            Pathname to +/usr/local/sbin/captive-sandbox-server program, turns on sandboxing. You should always use this option in conjunction with --rw, see it for details. Although this program is setuid root and it drops it privileges -to @CAPTIVE_SANDBOX_SETUID@ user. Your system gets protected by +to captive user. Your system gets protected by chroot(2), setuid(2), setgid(2) and setrlimit(2) UNIX security features against malicious Microsoft Windows drivers. You should never use this -option during debugging. +option during debugging.

            This option is turned on automatically during the mount operation by mount.captive-ntfs(8). Option needs to be used by hand for the captive-cmdline(2) client.

            -

            -
            --sandbox-server-ior=IOR
            -
            +
            --sandbox-server-ior=IOR
            +
            -Specify CORBA IOR of -/usr/sbin/captive-sandbox-server +

            Specify CORBA IOR of +/usr/local/sbin/captive-sandbox-server program, turns on sandboxing. Specified CORBA IOR should be the string starting by ``IOR:'' text. This option is useful only for debugging. No sandbox restarting is -possible in this case. +possible in this case.

            -

            -
            --no-sandbox
            -
            +
            --no-sandbox
            +
            -Turn off sandboxing feature (default). No -/usr/sbin/captive-sandbox-server +

            Turn off sandboxing feature (default). No +/usr/local/sbin/captive-sandbox-server is run. Microsoft Windows filesystem driver is run in native UNIX environment without any CORBA separation. This option is recommended only for debugging. -It is dangerous to use --rw together, see its description for the details. +It is dangerous to use --rw together, see its description for the details.

            -

            -
            --bug-pathname=pathname
            -
            +
            --bug-pathname=pathname
            +
            -Pathname to strftime(3) for .captivebug.xml.gz bugreports. Every crash of +

            Pathname to strftime(3) for .captivebug.xml.gz bugreports. Every crash of sandbox child gets bugreported to the specified file. You should attempt to minimize the number of operations from the mount operation till the expected crash to minimize the snapshot file size. --sandbox-server option is -required for --bug-pathname. +required for --bug-pathname.

            !!! Be aware '.captivebug.xml.gz' will contain data from your disk drive !!!

            -

            -
            --syslog
            -
            +
            --syslog
            +
            -Messages sent to syslog(3) instead of stderr. This option gets handy +

            Messages sent to syslog(3) instead of stderr. This option gets handy for mount(8) operation as the messages would be lost otherway. Watch our for possible ``Filesystem crash broke dirty object'' messages where some written filesystem data got lost in the case of Microsoft Windows -filesystem driver crash. +filesystem driver crash.

            -

            -
            --syslog-facility=facility
            -
            +
            --syslog-facility=facility
            +
            -openlog(3) facility for --syslog. See facility section of +

            openlog(3) facility for --syslog. See facility section of openlog(3) man page for details. Lowercased values such as daemon or -user are supported. +user are supported.

            -

            +


            diff --git a/project/captive/man/lufs-captivefs.pod.html b/project/captive/man/lufs-captivefs.pod.html deleted file mode 100644 index 03ba9ff..0000000 --- a/project/captive/man/lufs-captivefs.pod.html +++ /dev/null @@ -1,204 +0,0 @@ - - - -lufs-captivefs - Linux Userland File System module for NTFS as filesystem - - - - - -

            - - - - - -
            -

            -

            -

            NAME

            -

            lufs-captivefs - Linux Userland File System module for NTFS as filesystem

            -

            -

            -
            -

            DESCRIPTION

            -

            lufs-captivefs(7) module for Linux Userland File System (LUFS) enables -GNU/Linux system to access NTFS drives by Microsoft Windows drivers in -the most common way of kernel-level filesystem implementation.

            -

            {channels} option of lufsd(1) is respected -although the final filesystem operations are always processed in single-channel -mode. Do not set CHAN to 1 as it would invoke errors by LUFS kernel -driver.

            -

            -

            -
            -

            OPTIONS

            -

            All programs using captive(7) library share the common set of configuration -options:

            -
            -
            --filesystem=pathname
            -
            -
            -Pathname to .sys or .so filesystem module file. You will use exactly -once this option. Possible choices are -/var/lib/captive/ntfs.sys -etc. -
            -

            -
            --load-module=pathname
            -
            -
            -Pathname to any W32 module to load w/o initialization. Multiple modules can be -loaded although in common case you will use just -/var/lib/captive/ntoskrnl.exe -here. -
            -

            -
            --ro
            -
            -
            -Read/write mode: Any write access will be forbidden. You should set this mode -for cdfs.sys (CD-ROM filesystem). This option is mutually exclusive with ---blind and --rw. -
            -

            -
            --blind
            -
            -
            -Read/write mode: All writes are just simulated in memory (default). Microsoft -Windows filesystem driver will see no difference between --blind and --rw -although the UNIX image file/device will be open read/only as for --ro. -All the changes get 'written' as long as captive(7) program runs - all the -changes will be lost afterwards. This mode is the most suitable for debugging. -This option is mutually exclusive with --ro and --rw. -
            -

            -
            --rw
            -
            -
            -Read/write mode: Write directly to the image file/device. Standard read/write -disk mode. You should use --sandbox-server option in this case to have the -disk protected against Microsoft Windows filesystem driver crashes. Modified -disk image blocks are in --sandbox-server --rw mode buffered in the -memory and they get reflected to the disk only after successful completion -of all filesystem operations including filesystem unmount. -This option is mutually exclusive with --ro and --blind. -
            -

            -
            --cdrom
            -
            -
            -Media type: CD-ROM. You must set this media type for cdfs.sys. -Virtual Microsoft Windows block device driver used by Captive maps to -\Device\CdRom0. This option is mutually exclusive with --disk. -
            -

            -
            --disk
            -
            -
            -Media type: Disk (default). You must set this media type for all the Microsoft -Windows filesystem drivers except cdfs.sys. Virtual Microsoft Windows block -device driver used by Captive maps to \Device\CaptiveHarddisk0. -This option is mutually exclusive with --cdrom. -
            -

            -
            --debug-messages
            -
            -
            -Turn on debugging messages. Be prepared for substation debug output. -Use of --syslog feature is not recommended in this case. -
            -

            -
            --sandbox-server=pathname
            -
            -
            -Pathname to -/usr/sbin/captive-sandbox-server -program, turns on sandboxing. -You should always use this option in conjunction with --rw, see it for -details. Although this program is setuid root and it drops it privileges -to @CAPTIVE_SANDBOX_SETUID@ user. Your system gets protected by -chroot(2), setuid(2), setgid(2) and setrlimit(2) UNIX security -features against malicious Microsoft Windows drivers. You should never use this -option during debugging. -
            -
            -

            This option is turned on automatically during the mount operation by -mount.captive-ntfs(8). -Option needs to be used by hand for the captive-cmdline(2) client.

            -
            -

            -
            --sandbox-server-ior=IOR
            -
            -
            -Specify CORBA IOR of -/usr/sbin/captive-sandbox-server -program, turns on -sandboxing. Specified CORBA IOR should be the string starting by ``IOR:'' -text. This option is useful only for debugging. No sandbox restarting is -possible in this case. -
            -

            -
            --no-sandbox
            -
            -
            -Turn off sandboxing feature (default). No -/usr/sbin/captive-sandbox-server -is run. Microsoft Windows filesystem driver is run in native UNIX environment -without any CORBA separation. This option is recommended only for debugging. -It is dangerous to use --rw together, see its description for the details. -
            -

            -
            --bug-pathname=pathname
            -
            -
            -Pathname to strftime(3) for .captivebug.xml.gz bugreports. Every crash of -sandbox child gets bugreported to the specified file. You should attempt to -minimize the number of operations from the mount operation till the expected -crash to minimize the snapshot file size. --sandbox-server option is -required for --bug-pathname. -
            -
            -

            !!! Be aware '.captivebug.xml.gz' will contain data from your disk drive !!!

            -
            -

            -
            --syslog
            -
            -
            -Messages sent to syslog(3) instead of stderr. This option gets handy -for mount(8) operation as the messages would be lost otherway. -Watch our for possible ``Filesystem crash broke dirty object'' messages where -some written filesystem data got lost in the case of Microsoft Windows -filesystem driver crash. -
            -

            -
            --syslog-facility=facility
            -
            -
            -openlog(3) facility for --syslog. See facility section of -openlog(3) man page for details. Lowercased values such as daemon or -user are supported. -
            -

            -

            -

            -
            -

            SEE ALSO

            -

            mount.captive(8), lufsd(1), captive(7)

            -

            -

            -
            -

            AUTHOR

            -

            Jan Kratochvil <project-captive@jankratochvil.net>, -
            http://www.jankratochvil.net/

            - - - - diff --git a/project/captive/man/mount.captive.pod.html b/project/captive/man/mount.captive.pod.html index 0756067..be12b5d 100644 --- a/project/captive/man/mount.captive.pod.html +++ b/project/captive/man/mount.captive.pod.html @@ -2,7 +2,6 @@ mount.captive - B<mount> interface for NTFS disk access - @@ -11,7 +10,6 @@
              -
            • NAME
            • SYNOPSIS
            • DESCRIPTION
            • @@ -39,9 +37,8 @@


              DESCRIPTION

              -

              mount.captive(8) provides mount(8) interface to lufs-captivefs(7) -by calling lufsd(1) with appropriate arguments. You should never call -this command directly - use mount(8) instead.

              +

              mount.captive(8) provides mount(8) interface to captive(7) library +You should never call this command directly - use mount(8) instead.

              mount.captive(8) (captive filesystem type) is never used - this command is provided just as a base mount(8) interface to captive(7). You must always use captive-fstype filesystem type such as captive-ntfs. Other supported @@ -52,101 +49,202 @@ filesystem types are:


              OPTIONS

              -
              {image-file|device}
              -
              +
              {image-file|device}
              +
              -Pathname such as /dev/hda1 or /tmp/ntfs.bin. You should refer to the +

              Pathname such as /dev/hda1 or /tmp/ntfs.bin. You should refer to the partition name, not the whole device (/dev/hda is forbidden). /dev/hda1 may correspond to /dev/ide/host0/bus0/target0/lun0/part1 -on your system. +on your system.

              -

              -
              mountdir
              -
              +
              mountdir
              +
              -Existing empty target directory where {image-file|device} will be -mounted. +

              Existing empty target directory where {image-file|device} will be +mounted.

              -

              -
              -n
              -
              +
              -n
              +
              -Do not modify /etc/mtab. This option is currently not supported (ignored), -/etc/mtab is modified notwithstanding. +

              No effect. The standard functionality of 'do not modify /etc/mtab' is not +supported - /etc/mtab is always modified.

              -

              -
              -v
              -
              +
              -v
              +
              -Enable verbose mode. Command lufsd(1) being called is shown. +

              No effect. The standard functionality of 'verbose mode' is not supported.

              -

              -
              -o options
              -
              +
              -o options
              +
              -Custom options passed to captive(7) separated by comma (,). -See the captive(7) manpage for details on options prefixed by -double-dashes (--) will be used for lufs-captivefs(7) / -mount.captive(8). Options without double-dashes (--) will be used for -lufsd(1). You may be interested in these unprefixed options: +

              Custom options passed to captive(7) separated by comma (,).

              +
              +
              +

              Options without double-dashes (--) will be used for FUSE, please +see their description in the section ``Mount options'' of your local +/usr/share/doc/fuse/README or the online: +http://cvs.sourceforge.net/viewcvs.py/fuse/fuse/README

              +
              +
              +

              Options prefixed by double-dashes (--) are used for libcaptive, the +options list:

              -
              force
              -
              +
              --filesystem=pathname
              +
              -Force the mount of {image-file|device} despite it appears to be already -mounted according to mtab(5). You should never mount a device multiple -times in read-write mode. It is safe to mount it multiple times in read-only -mode. It is safe to mount it once in read-write mode and multiple times -in read-only mode although you may encounter filesystem errors by the read-only -filesystems in such case. +

              Pathname to .sys or .so filesystem module file. You will use exactly +once this option. Possible choices are +/usr/local/var/lib/captive/ntfs.sys +etc.

              +
              --load-module=pathname
              +
              -

              This is the only option is interpreted by mount.captive itself; it is not -lufs-captivefs(7) nor lufsd(1) option.

              +

              Pathname to any W32 module to load w/o initialization. Multiple modules can be +loaded although in common case you will use just +/usr/local/var/lib/captive/ntoskrnl.exe +here.

              -

              -
              private
              -
              +
              --modid-path=pathname
              +
              -mount.captive(8) defaults to filesystem files 644 - read-write for system -root (or the regular user owner) and read-only for others. You can force the -mode 600 by this option (read-write for the owner, inaccessible for others). -Mode 755 or <700> applies to directories. Options fmask/dmask will -be OR-ed to the private/public permissions set by this option. +

              Pathname to the .captivemodid.xml database of existing W32 module +identifications. The default used one is: +/usr/local/etc/w32-mod-id.captivemodid.xml +You must have this database update for any W32 binary module you are using. +If you miss such database you may also try to use --load-untested below.

              -

              -
              fmask=666
              -
              +
              --load-untested
              + +
              +

              Load tthe W32 modules despite they may not match the current --modid-path +identifications database. If you use this option Captive may fail very easily +as such module was never tested before the release and may need some +compatibility updates. Still no data should be corrupted even if using this +--load-untested option.

              +
              +
              --ro
              + +
              +

              Read/write mode: Any write access will be forbidden. You should set this mode +for cdfs.sys (CD-ROM filesystem). This option is mutually exclusive with +--blind and --rw.

              +
              +
              --blind
              +
              -Octal mask to be OR-ed on file permissions (minimum file permissions). +

              Read/write mode: All writes are just simulated in memory (default). Microsoft +Windows filesystem driver will see no difference between --blind and --rw +although the UNIX image file/device will be open read/only as for --ro. +All the changes get 'written' as long as captive(7) program runs - all the +changes will be lost afterwards. This mode is the most suitable for debugging. +This option is mutually exclusive with --ro and --rw.

              -

              -
              dmask=777
              -
              +
              --rw
              +
              -Octal mask to be OR-ed on directory permissions (minimum directory -permissions). +

              Read/write mode: Write directly to the image file/device. Standard read/write +disk mode. You should use --sandbox-server option in this case to have the +disk protected against Microsoft Windows filesystem driver crashes. Modified +disk image blocks are in --sandbox-server --rw mode buffered in the +memory and they get reflected to the disk only after successful completion +of all filesystem operations including filesystem unmount. +This option is mutually exclusive with --ro and --blind.

              -

              -
              uid=500
              -
              +
              --cdrom
              +
              -Supply the UID to be the user identification number owning all the files. +

              Media type: CD-ROM. You must set this media type for cdfs.sys. +Virtual Microsoft Windows block device driver used by Captive maps to +\Device\CdRom0. This option is mutually exclusive with --disk.

              -

              -
              gid=500
              -
              +
              --disk
              +
              -Supply the GID to be the group identification number owning all the files. +

              Media type: Disk (default). You must set this media type for all the Microsoft +Windows filesystem drivers except cdfs.sys. Virtual Microsoft Windows block +device driver used by Captive maps to \Device\CaptiveHarddisk0. +This option is mutually exclusive with --cdrom.

              -

              +
              --debug-messages
              + +
              +

              Turn on debugging messages. Be prepared for substation debug output. +Use of --syslog feature is not recommended in this case.

              +
              +
              --sandbox-server=pathname
              + +
              +

              Pathname to +/usr/local/sbin/captive-sandbox-server +program, turns on sandboxing. +You should always use this option in conjunction with --rw, see it for +details. Although this program is setuid root and it drops it privileges +to captive user. Your system gets protected by +chroot(2), setuid(2), setgid(2) and setrlimit(2) UNIX security +features against malicious Microsoft Windows drivers. You should never use this +option during debugging.

              +
              +
              +

              This option is turned on automatically during the mount operation by +mount.captive-ntfs(8). +Option needs to be used by hand for the captive-cmdline(2) client.

              +
              +
              --sandbox-server-ior=IOR
              + +
              +

              Specify CORBA IOR of +/usr/local/sbin/captive-sandbox-server +program, turns on +sandboxing. Specified CORBA IOR should be the string starting by ``IOR:'' +text. This option is useful only for debugging. No sandbox restarting is +possible in this case.

              +
              +
              --no-sandbox
              + +
              +

              Turn off sandboxing feature (default). No +/usr/local/sbin/captive-sandbox-server +is run. Microsoft Windows filesystem driver is run in native UNIX environment +without any CORBA separation. This option is recommended only for debugging. +It is dangerous to use --rw together, see its description for the details.

              +
              +
              --bug-pathname=pathname
              + +
              +

              Pathname to strftime(3) for .captivebug.xml.gz bugreports. Every crash of +sandbox child gets bugreported to the specified file. You should attempt to +minimize the number of operations from the mount operation till the expected +crash to minimize the snapshot file size. --sandbox-server option is +required for --bug-pathname.

              +
              +
              +

              !!! Be aware '.captivebug.xml.gz' will contain data from your disk drive !!!

              +
              +
              --syslog
              + +
              +

              Messages sent to syslog(3) instead of stderr. This option gets handy +for mount(8) operation as the messages would be lost otherway. +Watch our for possible ``Filesystem crash broke dirty object'' messages where +some written filesystem data got lost in the case of Microsoft Windows +filesystem driver crash.

              +
              +
              --syslog-facility=facility
              + +
              +

              openlog(3) facility for --syslog. See facility section of +openlog(3) man page for details. Lowercased values such as daemon or +user are supported.

              +
              +


              SEE ALSO

              -

              lufs-captivefs(7), lufsd(1)

              +

              captive(7)