~ubuntu-branches/ubuntu/warty/linux-ntfs/warty

« back to all changes in this revision

Viewing changes to libntfs/libntfs-gnomevfs.8.in

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2004-03-12 00:03:30 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040312000330-xv94ve7yg6bwplwu
Tags: 1.9.0-1
* New upstream release:
  - Merged Debian diff with upstream.
  - Fixed mkntfs for large volumes.
  - Add relocation support to ntfsresize. This modifies the command line
    options a little as well as the returned output so applications using
    ntfsresize might need modifications before they will work with the
    updated ntfsresize.
  - Revamped the build system completely.
  - Provide always own byteswap constant versions in order to avoid the mess
    that some architectures define only some of them (read m68k, ppc,
    mips...).
  - Made the warnings on 64 bit architectures go away.
  - Fixed lots of typos in the documentation.
  - Lots of fixes in general.
* Resolved several FTBFS (Fail To Build From Source) bugs (closes: #226989,
  #234104). With this, all the architectures go in sync again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.\" -*- nroff -*-
 
2
.\" Copyright (c) 2003 Anton Altaparmakov. All Rights Reserved.
 
3
.\" This file may be copied under the terms of the GNU Public License.
 
4
.\"
 
5
.TH NTFSPROGS 8 "November 2003" "Linux-NTFS version @VERSION@"
 
6
.SH NAME
 
7
libntfs-gnomevfs \- Module for GNOME VFS that allows access to NTFS filesystems.
 
8
.SH OVERVIEW
 
9
The GNOME virtual filesystem (VFS) provides universal access to different filesystems.
 
10
The
 
11
.BR libntfs-gnomevfs
 
12
module enables GNOME VFS aware clients to seamlessly utilize the NTFS library
 
13
.BR libntfs .
 
14
 
 
15
So you can access an NTFS filesystem without needing to use the NTFS utilities themselves
 
16
(at least in theory anyway).  In practice this is probably more useful for programs and
 
17
programmers to make using
 
18
.BR libntfs
 
19
easier, more generic, and to allow easier debugging of
 
20
.BR libntfs .
 
21
 
 
22
.SH Examples
 
23
.SS Prerequisites
 
24
.PP
 
25
To be able to follow these examples you will need to have installed the test utilities
 
26
from the gnome-vfs-2.4.x package.  The easiest way to do this is to download and compile
 
27
the gnome-vfs-2 package, e.g. download from:
 
28
 
 
29
http://ftp.gnome.org/pub/GNOME/desktop/2.4/2.4.0/sources/gnome-vfs-2.4.0.tar.gz
 
30
 
 
31
Then run ./configure followed by make and make install (as root).  This will install
 
32
it into /usr/local so it should not conflict with your existing installation from 
 
33
rpm or deb packages which will be in /usr.
 
34
 
 
35
Note you may also need to add /usr/local/lib to /etc/ld.so.conf and then run ldconfig
 
36
(as root) to let your system see the installed gnome-vfs-2.4.x libraries.
 
37
 
 
38
Then run ./configure followed by make and make install (as root) in the main
 
39
.BR ntfsprogs
 
40
directory to build and install the
 
41
.BR libntfs-gnomevfs
 
42
module and
 
43
.BR libntfs
 
44
library which is used by the module.
 
45
 
 
46
.SS Copying a file from an NTFS partition
 
47
.PP
 
48
To copy the file autoexec.bat from the main directory of an NTFS partition (/dev/hda1)
 
49
to the /tmp directory on your system you could run:
 
50
 
 
51
/path/to/gnome-vfs-2.4.x/test/test-xfer file:///dev/hda1#libntfs:/autoexec.bat /tmp/autoexec.bat
 
52
 
 
53
To copy a file from a directory inside the NTFS partition you would just specify the full path.
 
54
So for example to copy the file win.ini from the Windows directory you would run:
 
55
 
 
56
/path/to/gnome-vfs-2.4.x/test/test-xfer file:///dev/hda1#libntfs:/Windows/win.ini /tmp/win.ini
 
57
 
 
58
.SS Shell access to an NTFS partition
 
59
.PP
 
60
For debugging it is most useful to be able to do various things to the NTFS partition while it
 
61
is being operated upon by
 
62
.BR libntfs .
 
63
This is achieved using the test-shell utility (from the gnome-vfs-2.4.x package) by running:
 
64
/path/to/gnome-vfs-2.4.x/test/test-shell
 
65
 
 
66
This drops you into the GNOME VFS shell from where you can now cd into the NTFS partition (/dev/hda1)
 
67
by typing: cd file:///dev/hda1#libntfs:/
 
68
 
 
69
You are now in the root directory of the NTFS partition.  The first thing you will probably want to
 
70
do is to type "ls" to display the directory contents.
 
71
 
 
72
You could then change directories using the "cd" command, e.g. to enter the Windows directory you
 
73
would type: cd Windows
 
74
 
 
75
You can then open files, seek inside files, read from files (write is not enabled at present), etc
 
76
thus exercising large portions of the NTFS library.
 
77
 
 
78
Use the "help" command while in the shell to see the available commands.
 
79
 
 
80
.SH BUGS
 
81
.PP
 
82
No bugs are known but there are several limitations at the moment:
 
83
 
 
84
You cannot get information about files other than what the "ls" command 
 
85
in the test-shell can give you, i.e. the "info" command in the test-shell
 
86
does not work.
 
87
 
 
88
Further access to the partition is read-only and hence you cannot write
 
89
to files.  This will be changed in the future once the module has had
 
90
more wide testing.
 
91
 
 
92
There may be other limitations and possibly bugs.  Please report any
 
93
problems to the NTFS mailing list: linux-ntfs-dev@lists.sourceforge.net
 
94
 
 
95
.SH AUTHORS
 
96
.PP
 
97
The
 
98
.BR libntfs-gnomevfs
 
99
module was written by Jan Kratochvil.  This man page was written by Anton Altaparmakov.
 
100
 
 
101
.SH AVAILABILITY
 
102
The
 
103
.BR ntfsprogs
 
104
package which contains the
 
105
.BR libntfs-gnomevfs
 
106
module can be downloaded from http://linux-ntfs.sourceforge.net/downloads.html
 
107
.BR
 
108
These manual pages can be viewed online at http://linux-ntfs.sourceforge.net/man/ntfsprogs.html
 
109
 
 
110
.SH SEE ALSO
 
111
.BR ntfsprogs (8)
 
112