Difference between revisions of "Libntfs"
m |
(Update to current version with all the fixes and change of source trunk) |
||
Line 5: | Line 5: | ||
| type = ported library | | type = ported library | ||
| author = Numerous | | author = Numerous | ||
− | | maintainer = [[User:Rhys|shareese]] | + | | maintainer = [[User:Rhys|shareese]], [[User:Dimok|Dimok]] |
| contributor = [[User:rodries|rodries]] | | contributor = [[User:rodries|rodries]] | ||
− | | version = | + | | version = October 02, 2010 |
| licence = GNU GPL v2 | | licence = GNU GPL v2 | ||
− | | source = http:// | + | | source = http://code.google.com/p/libntfs-wii/ |
}} | }} | ||
'''libntfs''' is a port of the [http://www.ntfs-3g.org/ NTFS-3G] driver to the Nintendo GameCube/Wii, modeled on the [[libfat]] interface. | '''libntfs''' is a port of the [http://www.ntfs-3g.org/ NTFS-3G] driver to the Nintendo GameCube/Wii, modeled on the [[libfat]] interface. | ||
Line 37: | Line 37: | ||
To grab the latest and greatest copy of the sources just type: | To grab the latest and greatest copy of the sources just type: | ||
− | + | svn checkout http://libntfs-wii.googlecode.com/svn/trunk/ | |
== Compiling and Installing == | == Compiling and Installing == | ||
Line 57: | Line 57: | ||
== Changelog == | == Changelog == | ||
+ | === December 28, 2010 === | ||
+ | Lot's of changes which completed the lib. For full change log see the change log of libntfs in the WiiXplorer branches.<br> | ||
+ | Here is a list of the main changes: | ||
+ | * Update to NTFS-3G version 2010.10.2 | ||
+ | * Fix of the complete write functionality | ||
+ | * Fix corrupting partitions when writing | ||
+ | * Fixes in some read functions | ||
+ | * Fix of volume size determination | ||
+ | * Additional flag to ignore case sensitivity | ||
+ | * Lot's of small bug fixes | ||
+ | |||
=== August 19, 2009 === | === August 19, 2009 === | ||
* Initial release, based on NTFS-3G 2009.4.4AR.16 | * Initial release, based on NTFS-3G 2009.4.4AR.16 |
Revision as of 16:38, 28 December 2010
libntfs | |
![]() | |
General | |
---|---|
Author(s) | Numerous |
Maintainer(s) | shareese, Dimok |
Contributor(s) | rodries |
Type | Ported Libraries |
Version | October 02, 2010 |
Licence | GNU GPL v2 |
Links | |
Source |
libntfs is a port of the NTFS-3G driver to the Nintendo GameCube/Wii, modeled on the libfat interface.
Features
- Full read/write, files of any size can be created, modified, renamed, moved, or deleted.
- Compression, read/write support for compressed files
- Symbolic link and directory junction walking
- Partial journaling (see below)
NTFS-3G only supports partial journaling, so unexpected crashes or power loss can leave the file system in an inconsistent state. The only way to (correctly) fix it is to boot into Windows and let NTFS replay the journal; However, in most situations (read: it is not 100% guaranteed) this is not required and the file system can be remounted without problem. In situations where there has been heavy disc activity prior to the crash or power loss it is recommended you let Windows replay the journal before remounting with libntfs in order to prevent possible data lose and/or corruption.
Unsupported
- Encryption, read/write support for encrypted files
- Security (will probably never be implemented, cripples library functionality)
Implementation Specific Features
The following describes some of the differences between libntfs and other implementations of NTFS-3G.
Symbolic Links
Symbolics links are supported by the NTFS filesystem and are therefore supported in libntfs; however, whenever libntfs encounters a symbolic link it will (transparently) resolve it first. The effect of this is that when you open a symbolic link you in instead open what it is linked to. Creation of symbolic links is still supported, however once created you cannot actually tell it apart from a standard hard link due to the transparent symbloic link resolution.
This was a design choice and not a defect. I may change this behaviour in the future if it turns out to be troublesome.
Getting the latest sources
To grab the latest and greatest copy of the sources just type:
svn checkout http://libntfs-wii.googlecode.com/svn/trunk/
Compiling and Installing
Make sure you have devKitPPC and the latest libogc installed. Then from the sources root directory, type:
make make install # or 'sudo make install' if you aren't root.
Usage
NTFS related routines can be accessed by adding the following line to your source file(s).
#include <ntfs.h>
When compiling you must also link against libntfs. To do this, add -lntfs to the LIBS section of your application Makefile; for example:
LIBS := -lwiiuse -lbte -lntfs -lfat -logc -lm
For a more practical example of using NTFS in your application, see the included 'example' folder.
Changelog
December 28, 2010
Lot's of changes which completed the lib. For full change log see the change log of libntfs in the WiiXplorer branches.
Here is a list of the main changes:
- Update to NTFS-3G version 2010.10.2
- Fix of the complete write functionality
- Fix corrupting partitions when writing
- Fixes in some read functions
- Fix of volume size determination
- Additional flag to ignore case sensitivity
- Lot's of small bug fixes
August 19, 2009
- Initial release, based on NTFS-3G 2009.4.4AR.16
Credits
A big thanks to all the authors of NTFS-3G, of which this library makes use of. Thanks also to the following: