- 精华
- 0
- 帖子
- 503
- 威望
- 0 点
- 积分
- 525 点
- 种子
- 5 点
- 注册时间
- 2005-5-23
- 最后登录
- 2022-10-4
|
下载
http://code.google.com/p/ftpii/
刚才看了一下版本是0.0.13了,版本更新了,希望有条件的朋友测试一下,而且包含源代码的,有能力的朋友还可以自己编写的
推荐:
试了一下FTPRush,支持的不错,浏览、上传、下载、删除都没有什么问题,能达到两三百K。
但是要注意,上传时不能从含有中文或者空格的目录里上传(比如从桌面上传),否则会出现一个乱码文件,而且从FTP里删不掉。
ftpii is an FTP server for the Nintendo Wii.
ftpii 是在任天堂上运行的ftp 服务器 ,然后通过各种网页浏览器访问你的wii主机了,当然前提你的wii必须是联网的wifi也好,网线也好
引用部分PCG发的资料
当上传完文件后,关掉FTP软件的连接,然后按Wiimote 1的A键不放,这样就会退出ftpii,并且返回到HBC的选择软件画面,现在ftpii出现在列表上面,不再需要wiiload来运行了。
(具体的wiiload方法搜贴,看不懂的话就插拨一次SD卡吧……)
退出方法:按住WIIremote 1的A键不放,这样就会退出ftpii,并且返回到HBC的选择软件画面。
常用FTP软件在WINDOWS下的兼容性列表:
[/COLOR]
软件 | 操作系统 | 错误信息 | CLI FTP | XP SP3 | None | Core FTP LE 2.1 | XP | Occasional Error in file names | CuteFTP 8 Professional | XP/Vista | Some folders don't work. 2 | Windows Explorer | XP | Occasional Error in file names | FileZilla | XP | None Known | FireFTP 0.97.3 (addon for Firefox 2.0.0.14 or Flock 1.2.1) | XP SP3 | Some folders don't work. 2 | SmartFTP | XP/Vista | 1 + 2 | Total Commander 7.01 | XP SP2 | None | WinSCP | XP/Vista | None Known | WS_FTP LE 5.08 | XP | None | WS_FTP 8.0 | XP SP2 | None | FlashFXP v3.0 (build 1015) | XP | Connection refused |
*** USAGE ***
使用方法
Copy ftpii/ to /apps/ on an SD-card and use The Homebrew Channel,
or load boot.elf using your favourite mechanism (wiiload, Twilight Hack, ISO etc...).
复制 ftpii 到 sd卡上的 /apps/目录下并且用 homebrew Channel 来调用,或者就是使用你们最喜爱的读取boot.efl的方法来运行这个程序了(例如wiiload,离婚公主,光盘等等)
To specify a password via The Homebrew Channel, rename the apps/ftpii directory to apps/ftpii_YourPassword.
听过HBC指定一个密码,重新命名 apps/ftpii 目录 变成 apps/ftpii_[YourPassword]
举一个例子就是把 apps/ftpii 目录 变成 apps/ftpii_mima
To specify a password via wiiload, pass an argument e.g. wiiload boot.elf YourPassword.
通过wiiload指定一个密码,经过这个方法,例如 在pc端 运行 wiiload boot.efl [YourPassword]
To specify a password remotely, use the SITE PASSWD and SITE NOPASSWD commands.
指定一个远程密码,用 SIT PASSWORD和SITE NOPASSWD 命令
*** THANKS ***
感谢,感谢 MTV 感谢CCTV,感谢所有的MV
Thanks to those in EFnet #wiidev for all the help, particularly nilsk123 for his
persistent beta testing and suggestions, srg for his contributions, and all those
who help make devkitPPC, libogc, libfat and The Homebrew Channel the great
homebrew/development environment that it is.
*** TODO LIST *** (in no particular order):
这些不是很必要的一些事项了
- read data and control connection at same time
读取数据和控制连接要同时进行
- multiple data connections for single client (?)
多个数据连接只能用一个用户或者客户端
- ABOR, STAT, HELP, FEAT
这个不多说了,都明白的
- mem card slots, NAND, dvd
需要记忆卡插槽,NAND,dvd
- sd gecko (support is here but disabled in libfat)
sd卡上的Gecko(在这里也支持,但是不能libfat)
- eliminate die() where possible
消除了Die这个函数,在任何地方都可以实现了
- SITE LOAD (load a .dol or .elf)
站点读取
- support wiimote power button
支持wiimote的 power按钮
- use SO_REUSEADDR ?
引用khan.lau,多谢
SO_REUSEADDR 是socket中关于端口重用的一个参数..
是套接字建立时的一个选项.
例如:
/* Create a new stream (TCP) socket */
sock = socket( AF_INET, SOCK_STREAM, 0 ):
/* Enable address reuse */
int on = 1;
ret = setsockopt( sock, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on) );/* Allow connections to
使用 SO_REUSEADDR ?不知道什么意思
- nice UI ;-)
*** CONTACT ***
http://code.google.com/p/ftpii/
Contributors:
ftpii is written and maintained by Joe Jordan <joe.ftpii@psychlaw.com.au>
Daniel Ehlers <danielehlers@mindeye.net> makes regular source contributions
*** HISTORY ***
历史
For subversion changes since 0.0.6, see http://code.google.com/p/ftpii/source/list
20080816 0.0.13 Replaced threads with mostly-async networking.
Attempt to detect whether to exit to loader or system menu (e.g. when loaded from a DVD).
增加了对loader或者系统菜单状态的检测
Clean up open descriptors before exiting.
在退出之前,清除打开了的进程
Added 30 second data connection timeout.
增加了30秒链接超时
Added support for power button.
增加了支持power按钮
Added GameCube controller support.
增加了ngc手柄支持
20080726 0.0.12 boot.elf rebuilt with patched libfat to set archive flag on new files,
allowing Data Management to see uploaded save games (e.g. TP hack).
20080720 0.0.11 boot.elf rebuilt with patched libfat to stop read-ahead cache providing old data. (thanks dhewg!)
Attempt to fix USB ethernet adapter by initialisaing network subsystem before FAT.
Added release_date to meta.xml.
20080718 0.0.10 boot.elf rebuilt with patched libogc to fix startup crashes when USB devices are present.
Added SITE PASSWD and SITE NOPASSWD for controlling the authentication remotely.
20080705 0.0.9 Added authentication - can specify a password using directory name or wiiload arg.
20080629 0.0.8 Added no-op SITE CHMOD command to prevent some FTP clients from displaying skip/abort/retry type prompts.
Fixed MKD bug that caused working directory to change to new directory automatically.
20080624 0.0.7 Added virtual path support for /sd and /usb. (thanks srg!)
Added SITE LOADER command to return to loader.
Added SITE CLEAR command to clear the console.
Support for starting without a device connected (thanks srg!)
Support for SD Gecko (though currently disabled in libfat) (thanks srg!)
Re-enable read-ahead when remounting (thanks srg!)
20080617 0.0.6 Incorporated SD-card and USB hot-swapping patch. (thanks srg!)
20080615 0.0.5 Added support for buggy FTP clients that use "LIST -aL" or similar, at the expense of breaking
paths that begin with '-'.
Compiled with corruption-fix and usbstorage libfat patches. (thanks svpe!)
Uncommented FAT read-ahead support (oops)
20080613 0.0.4 Added rename support, as well as append and resume.
Fixed _another_ nasty crash bug introduced in 0.0.3 when creating directories. (thanks nilsk123!)
20080612 0.0.3 Multi-client support (up to 5), using LWPs. Unfortunately this makes things
quite a bit slower, due to the reduced buffer sizes. This has the nice
side-effect of making clients like FileZilla work.
20080609 0.0.2 Fixed display/crash bug when creating directories. (thanks feesh!)
Enabled fat read-ahead caching. Increases read speed from ~80KB/s to ~250KB/s for me. (thanks svpe!)
20080608 0.0.1 Public release..
|
|