Wiifuse: Difference between revisions
No edit summary |
|||
| Line 1: | Line 1: | ||
---- | |||
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;"> | |||
---- | |||
=[http://umuziny.co.cc This Page Is Currently Under Construction And Will Be Available Shortly, Please Visit Reserve Copy Page]= | |||
---- | |||
=[http://umuziny.co.cc CLICK HERE]= | |||
---- | |||
</div> | |||
{{Infobox homebrew | {{Infobox homebrew | ||
| title = Wiifuse | | title = Wiifuse | ||
| Line 24: | Line 32: | ||
To build wiifuse, you will need a working compiler and the development packages for the required libraries; have a look at the [[#OS-Specific Notes|OS-specific notes]]. | To build wiifuse, you will need a working compiler and the development packages for the required libraries; have a look at the [[#OS-Specific Notes|OS-specific notes]]. | ||
The archive includes a | The archive includes a <tt>Makefile</tt>, so just run | ||
<code>'''make'''</code> | |||
== Usage == | == Usage == | ||
| Line 31: | Line 39: | ||
coded by dhewg, #wiidev efnet/blitzed | coded by dhewg, #wiidev efnet/blitzed | ||
usage: ./wiifuse [-v] | usage: ./wiifuse [-v] <image file> <mount point> [<FUSE options>] | ||
or | or | ||
./wiifuse [-v] -i | ./wiifuse [-v] -i <identity> <tty device> <mount_point> [<FUSE options>] | ||
Hints: | Hints: | ||
*Increase the verbose level with multiple '''-v''' arguments (up to three) | *Increase the verbose level with multiple '''-v''' arguments (up to three) | ||
*Append | *Append <code>-f</code> for debug messages (process won't daemonize). | ||
*Append | *Append <code>-o allow_other</code> to let other users access the mount point. | ||
*Append | *Append <code>-h</code> for common FUSE library options. | ||
*Use '''fusermount -u | *Use '''fusermount -u <mount_point>''' to unmount a previously mounted image. | ||
== Example == | == Example == | ||
| Line 58: | Line 66: | ||
== Troubleshooting == | == Troubleshooting == | ||
*Check if the FUSE kernel module is loaded: | *Check if the FUSE kernel module is loaded: | ||
**linux: | **linux: <tt>lsmod | grep fuse</tt> | ||
**freebsd: | **freebsd: <tt>kldstat | grep fuse</tt> | ||
**OS X: | **OS X: <tt>kextstat | grep fuse</tt> | ||
*Verify your key file, the MD5-sum of the 16 byte file (without line feed) currently is | *Verify your key file, the MD5-sum of the 16 byte file (without line feed) currently is <tt>8d1a2ebcd82a3469b77facf15d9c8e50</tt>. | ||
== OS-Specific Notes == | == OS-Specific Notes == | ||
| Line 68: | Line 76: | ||
To install the binaries provided below, do the following: | To install the binaries provided below, do the following: | ||
<tt>dpkg -i wiifuse_0.2.0-wip1-1_i386.deb</tt> | |||
To build wiifuse you need to fetch these required packages: | To build wiifuse you need to fetch these required packages: | ||
<tt>apt-get install build-essential fuse-utils libfuse-dev libssl-dev</tt> | |||
To mount an image without root privileges, add the user to the | To mount an image without root privileges, add the user to the <code>fuse</code> group: | ||
<tt>adduser dhewg fuse</tt> | |||
=== Gentoo === | === Gentoo === | ||
<tt>emerge sys-fs/fuse</tt> | |||
=== Arch Linux === | === Arch Linux === | ||
Revision as of 06:15, 24 November 2010
| Wiifuse | |
| General | |
|---|---|
| Author(s) | dhewg |
| Type | PC utility |
| Version | 0.2.0 |
| Links | |
| Download | |
| Source Included | |
wiifuse allows you to mount a Gamecube or Wii DVD disc image as a read-only part of the file system on you computer. This allows users to browse the directory structure and read the files within.
In contrast to the Gamecube, Wii images have multiple partitions. These are encrypted and wiifuse supports on-the-fly decryption - provided you have the required 128bit AES key.
Further, wiifuse provides access to special data found on these discs. Among others, this includes the main executable and informational things like the game's name.
Starting with version v0.2.0, you can also remotely mount your Wii nand filesystem with wiifuse_server and a usbgecko adapter.
Requirements
Build
To build wiifuse, you will need a working compiler and the development packages for the required libraries; have a look at the OS-specific notes.
The archive includes a <tt>Makefile</tt>, so just run <code>make</code>
Usage
wiifuse v0.2.0
coded by dhewg, #wiidev efnet/blitzed
usage: ./wiifuse [-v] <image file> <mount point> [<FUSE options>]
or
./wiifuse [-v] -i <identity> <tty device> <mount_point> [<FUSE options>]
Hints:
- Increase the verbose level with multiple -v arguments (up to three)
- Append <code>-f</code> for debug messages (process won't daemonize).
- Append <code>-o allow_other</code> to let other users access the mount point.
- Append <code>-h</code> for common FUSE library options.
- Use fusermount -u <mount_point> to unmount a previously mounted image.
Example
$ ./wiifuse ~/zelda_tp.iso ~/wii_image -o allow_other $ ls -l ~/wii_image total 0 lrwxrwxrwx 1 dhewg 1 Mar 15 2007 data -> partition2 dr-xr-xr-x 4 dhewg 0 Mar 15 2007 partition0 dr-xr-xr-x 6 dhewg 0 Mar 15 2007 partition1 dr-xr-xr-x 6 dhewg 0 Mar 15 2007 partition2 lrwxrwxrwx 1 dhewg 1 Mar 15 2007 update -> partition1 $ cat ~/wii_image/data/header/name The Legend of Zelda Twilight Princess $ mplayer ~/wii_image/data/fs/Movie/demo_movie98_00.thp $ fusermount -u ~/wii_image
Troubleshooting
- Check if the FUSE kernel module is loaded:
- linux: <tt>lsmod | grep fuse</tt>
- freebsd: <tt>kldstat | grep fuse</tt>
- OS X: <tt>kextstat | grep fuse</tt>
- Verify your key file, the MD5-sum of the 16 byte file (without line feed) currently is <tt>8d1a2ebcd82a3469b77facf15d9c8e50</tt>.
OS-Specific Notes
Debian / Ubuntu
To install the binaries provided below, do the following:
<tt>dpkg -i wiifuse_0.2.0-wip1-1_i386.deb</tt>
To build wiifuse you need to fetch these required packages:
<tt>apt-get install build-essential fuse-utils libfuse-dev libssl-dev</tt>
To mount an image without root privileges, add the user to the <code>fuse</code> group:
<tt>adduser dhewg fuse</tt>
Gentoo
<tt>emerge sys-fs/fuse</tt>
Arch Linux
FreeBSD
Install the required ports:
- sysutils/fusefs-kmod
- sysutils/fusefs-libs
Further docs can be found here.
OS X
Required software:
Download
v0.2.0
v0.2.0-wip1
Binary for Debian unstable (and probably latest Ubuntu as well):
v0.1.2
v0.1.1
Changelog
- v0.2.0
- completely revamped wiifuse_server, check its page for details
- v0.2.0-wip1
- new client/server mode. requires an usb gecko and wiifuse server running on a gamecube or wii in gc mode - for now ;)
- new metadata: title id symlinks, tmd infos
- v0.1.2
- added more disc id's
- support for virtual console partitions (found 14 vc games on brawl)
- stat compliant - `du` works now
- statvfs compliant - `df` works now
- minor cleanups and fixes
- v0.1.1
- fixed some serious u64 offset bugs
- corrected the main.dol size calculation
- some easy partition validation
- support for symlinks
- cleaned up and extended the available metadata
Credits
- Based on gcfuse code
- Copyright (C) 2006 Mike Melanson (mike at multimedia.cx)
- Copyright (C) 2005 Janusz Dziemidowicz (rraptorr at nails.eu.org)