打算要给252加上自动解压缩的功能,主要因为我们年级一个同学是玩0day之类的。所以FXP过来的电影都是分卷压缩的,对用户来说不方便。他也跟我提了好多次了,这次也算是给他个答复吧
这些电影的分卷压缩都会有个sfv文件用作校验,sfv和md5的性质一样,不过更简单。它记录了一个目录下所有正常文件的sfv值。
要做自动解压缩,首先需要通过sfv校验来确认用户已经完成上传。然后再调用解压缩程序
所以第一个要完成的就是给proftpd 加上sfv校验,偷懒参考了张微波的BLOG
- 1。先下载一个sfv的插件
- 到http://www.bunker-werk.net/proftpd/下载http://www.bunker-werk.net/ftpsfv/ftpsfv-0.1.5.tar.bz2。
- 2。编译安装
- tar jvxf ftpsfv-0.1.5.tar.bz2
- cd ftpsfv
- ./configure
- make
- make install
- #默认安装在/usr/local/ftpsfv 你可以通过--prefix来指定安装地址
- 3。ftpsfv设置
- vi /usr/local/ftpsfv/etc/ftpexecd.conf
- User = root
- Group = root
- #启用ftpexec服务的用户和用户组,你也可以指定为nobody,但前提是你是对sfv.fifo文件有写的权限
- fifoFile = /var/log/sfv.fifo
- logFile = syslog
- # 如果设置为"none",则不写入log日志
- # 设置为"syslog", 写入log日志
- Exec = /usr/local/ftpsfv/bin/ftpsfvcheck.pl
- #默认设置就行
- vi /usr/local/ftpsfv/bin/ftpsfvcheck.pl
- 根据你的需要设置,比如
- my $user = "root"
- my $group = "root"
- #设置成跟conf文件一样就行,
- my $sitename = "ftpSFV";
- #设置成你要显示的ftp站名就行
- my @exclude_dirs = ("");
- #这是设置哪些目录可以不用检验sfv文件。默认都检测
- 4。proftpd设置
- vi /usr/local/proftpd/etc/proftpd.conf
- 加入如下设置
- Logformat sfv "%m %f
- ExtendedLog /var/log/sfv.fifo WRITE sfv
- 保存退出
- 5。启用ftpsfv
- 启动ftpxsfv
- /etc/rc.d/init.d/ftpexecd start
- 然后重启一下proftpd
- /etc/rc.d/init.d/proftpd restart
- 好了,上传一个sfv文件试验一下,应该能看到信息。
- 总体感觉这个sfv插件还不是很稳定,我试验了几下,有时成功,有时没反应,不知什么原因。还请大家指教
前面玩得都很顺利,但是修改proftpd配置后。测试了下,怎么都没有发生校验。于是翻来覆去搞了几回,最后无奈的看了一遍源码包中的INSTALL,sigh~~~~~问题瞬间解决
- ftpsfv (an sfv checker for proftpd)
- Version: 0.1.3
- Copyright (C) 2003 by Thomas Lachmann <TL@bunker-werk.net>
- 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; either version 2 of the License, or
- (at your option) any later version.
- 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., 675 Mass Ave, Cambridge, MA 02139, USA.
- DESCRIPTION
- ===========
- ftpsfv monitors a fifo that is filled by the proftpd daemon and starts a
- script to verify the uploaded sfv files.
- If the verify result is ok, an adjustable directory is created.
- Also missing and bad files are reported via filenames.
- Now reduces the load on the system, because it checks files only once.
- Also a ignore directory option is available.
- Requirements:
- ============
- - ftpexecd (a daemon which monitors a proftpd log fifo and
- executes an external program/script after a file is uploaded),
- provided by ftpsfv
- - a script called ftpsfvcheck.pl
- provided by ftpsfv
- - ftpsfv a sfv file checker
- provided by ftpsfv
- INSTALL NOTES
- =============
- install steps:
- - run "./configure"
- NOTE:
- the default install path for ftpsfv is '/usr/local/ftpsfv',
- if you want to change this, run "./configure --prefix=dir_to_install"
- - run "make"
- - run "make install"
- - edit /usr/local/ftpsfv/etc/ftpexecd.conf
- The following directives are used in ftpexecd.conf
- User = root
- # this defines the user the daemon runs as, it's advisable NOT to use root for security reasons
- # if changed, make sure this user has the permissions to access the files on the ftp
- Group = root
- # this defines the group the daemon runs as, it's advisable NOT to use root for security reasons
- # if changed, make sure this group has the permissions to access the files on the ftp
- fifoFile = /var/log/sfv.fifo
- # points to the named pipe/fifo of the logfile defined in proftpd
- logFile = syslog
- # points to a file where to log all messages from ftpexecd
- # if value == "none", no logging is done
- # if vaiue == "syslog", all logging is done via syslog
- Exec = /usr/local/ftpsfv/bin/ftpsfvcheck.pl
- # point to a program/script which is run after each file upload
- # it's called with one argument: filename
- remarks begin with a #
- all file references have to be ABSOLUTE paths
- - you may change the user/group uses by ftpexecd, since all other
- scripts called from ftpexecd will executed under this user/group
- Using nobody/nobody is a better choice when using RedHat for example.
- NOTE: this user/group MUST HAVE READ PERMISSION to the files beeing checked
- and WRTITE PERMISSION to the direcotory where the files are
- THIS IS IMPORTANT ELSE ftpsfv WILL NOT WORK!
- - create a fifo in your proftpd log file directory, e.g. "mkfifo /path/to/proftpd/logs/sfv.fifo"
- - add the line "Logformat sfv "%m %f" to the server config
- - add the line "ExtendedLog /path/to/sfv_fifo WRITE sfv" to the server config / virtual host config
- - edit /usr/local/ftpsfv/bin/ftpsfvcheck.pl to change different options regarding ftpsfv
- see ftpsfvcheck.pl for the options
- - start ftpexecd with /etc/init.d/ftpexecd start
- - restart proftpd
- - it is important to run ftpexecd _BEFORE_ proftpd, else proftpd will hang until ftpexecd is started
- if chkconfig is available ftpexecd will be registered as systems ervice, which is
- started at boot
- Test if the sfv checker works...
- If it doesn't work, check your log you defined in ftpexecd.conf, ftpexecd will log all errors to it.
- If you want more debugging output, stop ftpexecd with /etc/init.d/ftpexecd stop and run it
- from the installed dir with the argument -n (e.g. /usr/local/ftpsfv/sbin/ftpexecd -n), with this
- option ftpexecd will not run as a daemon and output debug informations to stderr.
注意到上面第86行,ExtendLog需要加到VitualHost配置段下面才能起作用。而我原来只是把这个配置加到GLobal配置段。抓狂……一个这么小的问题浪费了我这么多时间
SFV校验搞定之后,下面就找个时间写个小程序来解压缩就好了:)
周四, 2008-07-24 10:08
[URL=http://www.gil-ffxi.com]ffxi gil[/URL]
[URL=http://www.cheapmesos.com]Maple Story Mesos[/URL]
[URL=http://www.wowgoldlive.com]wow gold[/URL]
[URL=http://www.wowgold.ws]wow gold[/URL]
[URL=http://www.wowgoldlive.de]wow gold[/URL]
[URL=http://www.aoc-gold.net.cn]age of conan gold[/URL]
[URL=http://www.aoc-gold.net.cn]age of conan[/URL]
[URL=http://www.aoc-gold.net.cn]age of conan power leveling[/URL]
[URL=http://www.aoc-gold.net.cn]age conan gold[/URL]
[URL=http://www.aoc-gold.org.cn]age of conan gold[/URL]
[URL=http://www.aoc-gold.org.cn]age of conan power leveling[/URL]
[URL=http://www.aoc-gold.org.cn]age conan gold[/URL]
[URL=http://www.ageofconangold.com.cn]age of conan gold[/URL]
[URL=http://www.ageofconangold.com.cn]age of conan power leveling[/URL]
[URL=http://www.ageofconangold.com.cn]age conan gold[/URL]
[URL=http://www.ageofconangold.net.cn]age of conan gold[/URL]
[URL=http://www.ageofconangold.net.cn]age of conan power leveling[/URL]
[URL=http://www.ageofconangold.net.cn]age conan gold[/URL]
[URL=http://www.ageofconangold.org.cn]age of conan gold[/URL]
[URL=http://www.ageofconangold.org.cn]age of conan power leveling[/URL]
[URL=http://www.ageofconangold.org.cn]age conan gold[/URL]
[URL=http://www.age-of-conan-gold.com.cn]age of conan gold[/URL]
[URL=http://www.age-of-conan-gold.com.cn]age of conan power leveling[/URL]
[URL=http://www.age-of-conan-gold.com.cn]age conan gold[/URL]
[URL=http://www.age-of-conan-gold.net.cn]age of conan gold[/URL]
[URL=http://www.age-of-conan-gold.net.cn]age of conan power leveling[/URL]
[URL=http://www.age-of-conan-gold.net.cn]age conan gold[/URL]
[URL=http://www.age-of-conan-gold.org.cn]age of conan gold[/URL]
[URL=http://www.age-of-conan-gold.org.cn]age of conan power leveling[/URL]
[URL=http://www.age-of-conan-gold.org.cn]age conan gold[/URL]
[URL=http://www.forvault.com/age-of-conan-eur-gold-1494.html]age of conan gold[/URL]
[URL=http://www.forvault.com/age-of-conan-eur-gold-1494.html]aoc gold[/URL]
[URL=http://www.forvault.com/age-of-conan-eur-gold-1494.html]age conan gold[/URL]
[URL=http://www.forvault.com/age-of-conan-usa-gold-1256.html]age of conan power leveling[/URL]
[URL=http://www.forvault.com/age-of-conan-usa-gold-1256.html]aoc power leveling[/URL]
[URL=http://www.forvault.com/age-of-conan-usa-gold-1256.html]age conan gold[/URL]
[URL=http://www.runemall.com]Runescape Money[/URL]
[URL=http://www.runemall.com]Runescape Gold[/URL]
[URL=http://www.runemall.com]Runescape Items[/URL]
[URL=http://www.runescapemoney-gold.com]Runescape Money[/URL]
[URL=http://www.runescapemoney-gold.com]Runescape Gold[/URL]
[URL=http://www.runelevel.com]Runescape Power leveling[/URL]
[URL=http://www.runelevel.com]Runescape Money[/URL]
[URL=http://www.runelevel.com]Runescape Gold[/URL]
[URL=http://www.rs2lostcity.com]Runescape gold[/URL]
[URL=http://www.rs2lostcity.com]runescape money[/URL]
[URL=http://www.runescape-money.net]Runescape Money[/URL]
[URL=http://www.runescape-money.net]Runescape[/URL]
[URL=http://www.rs2powerleveling.com]Runescape Money[/URL]
[URL=http://www.rs2powerleveling.com]Runescape Power leveling[/URL]
[URL=http://www.runeitem.com]Runescape Items[/URL]
[URL=http://www.runeitem.com]runescape money[/URL]
[URL=http://www.money-runescape.com]money runescape[/URL]
[URL=http://www.runescapedaddy.com]Runescape Gold[/URL]
[URL=http://www.ageofconanmall.com]age of conan gold[/URL]
[URL=http://www.ageofconanmall.com]age conan gold[/URL]
[URL=http://www.ageofconanmall.com]aoc gold[/URL]
[URL=http://www.ageofconanmall.com]age of conan power leveling[/URL]
[URL=http://www.ageofconanmall.com]aoc power leveling[/URL]
[URL=http://www.ageofconanmall.com]aoc leveling[/URL]
[URL=http://www.archlord-golds.com]archlord gold[/URL]
[URL=http://www.anarchymoney.com]anarchy online credits[/URL]
[URL=http://www.cabal-alz.org]cabal alz[/URL]
[URL=http://www.city-of-heroes-sale.com]city of heroes influence[/URL]
[URL=http://www.city-of-heroes-sale.com]coh influence[/URL]
[URL=http://www.city-of-heroes-sale.com]city of heroes[/URL]
[URL=http://www.city-of-villains-sale.com]city of villains infamy[/URL]
[URL=http://www.city-of-villains-sale.com]cov infamy[/URL]
[URL=http://www.city-of-villains-sale.com]city of villains[/URL]
[URL=http://www.dofusvault.com]dofus kamas[/URL]
[URL=http://www.dofusvault.com]kamas dofus[/URL]
[URL=http://www.dofusvault.com]dofus[/URL]
[URL=http://www.daoc-sale.com]daoc gold[/URL]
[URL=http://www.daoc-sale.com]daoc plat[/URL]
[URL=http://www.eve-online-isk.cn]eve isk[/URL]
[URL=http://www.eve-online-isk.cn]eve online isk[/URL]
[URL=http://www.eve-online-isk.cn]eve online[/URL]
[URL=http://www.eq2platgold.com]everquest 2 gold[/URL]
[URL=http://www.eq2platgold.com]eq2 plat[/URL]
[URL=http://www.eq2platgold.com]Ever Quest 2[/URL]
[URL=http://www.gil-ffxi.com]final fantasy xi gil[/URL]
[URL=http://www.gil-ffxi.com]Final Fantasy XI[/URL]
[URL=http://www.gil-ffxi.com]buy ffxi gil[/URL]
[URL=http://www.gaia-online-gold.com]gaia online gold[/URL]
[URL=http://www.gaia-online-gold.com]gaia gold[/URL]
[URL=http://www.gold-gw.com]guild wars gold[/URL]
[URL=http://www.gold-gw.com]gw gold[/URL]
[URL=http://www.gold-gw.com]guild wars[/URL]
[URL=http://www.hellgatemall.com]hellgate london palladium[/URL]
[URL=http://www.hellgatemall.com]Hellgate London[/URL]
[URL=http://www.dofushq.com]dofus kamas[/URL]
[URL=http://www.dofushq.com]dofus gold[/URL]
[URL=http://www.dofushq.com]dofus[/URL]
[URL=http://www.dofusmax.com]dofus kamas[/URL]
[URL=http://www.dofusmax.com]dofus[/URL]
[URL=http://www.forvault.com/world-of-warcraft-usa-gold-2.html]wow gold[/URL]
[URL=http://www.forvault.com/world-of-warcraft-usa-gold-2.html]world of warcraft gold[/URL]
[URL=http://www.forvault.com/world-of-warcraft-usa-gold-2.html]buy wow gold[/URL]
[URL=http://www.forvault.com/world-of-warcraft-eur-gold-3.html]cheap wow gold[/URL]
[URL=http://www.forvault.com/world-of-warcraft-eur-gold-3.html]wow power leveling[/URL]
[URL=http://www.forvault.com/ever-quest-gold-1421.html]eq plat[/URL]
[URL=http://www.forvault.com/ever-quest-gold-1421.html]EverQuest gold[/URL]
[URL=http://www.forvault.com/maple-story-us-gold-20.html]Maple Story Mesos[/URL]
[URL=http://www.forvault.com/maple-story-us-gold-20.html]MapleStory mesos[/URL]
[URL=http://www.forvault.com/maple-story-eu-gold-173.html]MapleStory Meso[/URL]
[URL=http://www.forvault.com/final-fantasy-xi-gold-11.html]Final Fantasy XI gil[/URL]
[URL=http://www.forvault.com/final-fantasy-xi-gold-11.html]ffxi gil[/URL]
[URL=http://www.forvault.com/final-fantasy-xi-gold-11.html]buy ffxi gil[/URL]
[URL=http://www.forvault.com/dofus-gold-10.html]dofus kamas[/URL]
[URL=http://www.forvault.com/dofus-gold-10.html]kamas dofus[/URL]
[URL=http://www.forvault.com/the-lord-of-the-ring-us-gold-29.html]lotro gold[/URL]
[URL=http://www.forvault.com/the-lord-of-the-ring-us-gold-29.html]lotr gold[/URL]
[URL=http://www.forvault.com/the-lord-of-the-ring-eu-gold-1140.html]lord of the ring gold[/URL]
[URL=http://www.forvault.com/lineage-i-gold-18.html]Lineage adena[/URL]
[URL=http://www.forvault.com/lineage-i-gold-18.html]Lineage 1 adena[/URL]
[URL=http://www.forvault.com/silkroad-online-gold-27.html]Silkroad gold[/URL]
[URL=http://www.forvault.com/silkroad-online-gold-27.html]buy silkroad gold[/URL]
[URL=http://www.forvault.com/fly-for-fun-gold-1363.html]flyff penya[/URL]
[URL=http://www.forvault.com/fly-for-fun-gold-1363.html]buy flyff gold[/URL]
[URL=http://www.forvault.com/fly-for-fun-gold-1363.html]flyff money[/URL]
[URL=http://www.forvault.com/eve-online-gold-7.html]eve online isk[/URL]
[URL=http://www.forvault.com/eve-online-gold-7.html]eve isk[/URL]
[URL=http://www.forvault.com/2moons-gold-1222.html]2moons dil[/URL]
[URL=http://www.forvault.com/2moons-gold-1222.html]2moons gold[/URL]
[URL=http://www.forvault.com]eq2 plat[/URL]
[URL=http://www.forvault.com]EverQuest 2 gold[/URL]
[URL=http://www.cheapmesos.com]maplestory Mesos[/URL]
[URL=http://www.cheapmesos.com]MapleStory meso[/URL]
[URL=http://www.cheapmesos.com]maple story[/URL]
[URL=http://www.buymsmesos.com]Maple Story Mesos[/URL]
[URL=http://www.buymsmesos.com]maplestory Mesos[/URL]
[URL=http://www.buymsmesos.com]MapleStory meso[/URL]
[URL=http://www.buymsmesos.com]Maple Story[/URL]
[URL=http://www.lieageadena.com]Lineage adena[/URL]
[URL=http://www.lieageadena.com]Lineage 1 adena[/URL]
[URL=http://www.lieageadena.com]Lineage 1[/URL]
[URL=http://www.lotrolive.com]lotro gold[/URL]
[URL=http://www.lotrolive.com]lotr gold[/URL]
[URL=http://www.lotrolive.com]The Lord Of The Ring[/URL]
[URL=http://www.lotrolive.com]lord of the ring gold[/URL]
[URL=http://www.granadoespadavis.com]ge money[/URL]
[URL=http://www.granadoespadavis.com]granado espada vis[/URL]
[URL=http://www.granadoespadavis.com]granado espada gold[/URL]
[URL=http://www.granadoespadavis.com]Granado Espada[/URL]
///////////////////////////////////////////////
[URL=http://www.wowgold-pl.com]wow gold[/URL]
[URL=http://www.wowgold-pl.com]wow leveling[/URL]
[URL=http://www.heroonlinemoney.com]hero online gold[/URL]
[URL=http://www.lastchaoshop.com]last chaos gold[/URL]
[URL=http://www.ragnarok-zeny.com]ragnarok zeny[/URL]
[URL=http://www.ragnarok-zeny.com]ro zeny[/URL]
[URL=http://www.rappelzrupees.com]rappelz rupee[/URL]
[URL=http://www.rappelzrupees.com]rappelz gold[/URL]
[URL=http://www.silkroad-online-gold.com]Silkroad gold[/URL]
[URL=http://www.silkroad-online-gold.com]buy silkroad gold[/URL]
[URL=http://www.star-war-galaxies-credits.com]SWG Credits[/URL]
[URL=http://www.star-war-galaxies-credits.com]star wars galaxies credits[/URL]
[URL=http://www.talesofpiratesmoney.com]tales of pirates gold[/URL]
[URL=http://www.mmoz.org/age-conan]age of conan[/URL]
[URL=http://www.forvault.com/age-of-conan-gold-1256.html]age of conan gold[/URL]
[URL=http://www.forvault.com/age-of-conan-gold-1256.html]aoc gold[/URL]
[URL=http://www.forvault.com/age-of-conan-gold-1256.html]aoc power leveling[/URL]
[URL=http://www.forvault.com/aion-gold-1253.html]aion gold[/URL]
[URL=http://www.forvault.com/aion-gold-1253.html]buy aion gold[/URL]
[URL=http://www.forvault.com/anarchy-online-gold-8.html]anarchy online credits[/URL]
[URL=http://www.forvault.com/anarchy-online-gold-8.html]anarchy online credit[/URL]
[URL=http://www.forvault.com/archlord-gold-9.html]archlord gold[/URL]
[URL=http://www.forvault.com/archlord-gold-9.html]buy archlord gold[/URL]
[URL=http://www.forvault.com/city-of-heroes-gold-1321.html]City of Heroes Infamy[/URL]
[URL=http://www.forvault.com/city-of-heroes-gold-1321.html]coh influence[/URL]
[URL=http://www.forvault.com/city-of-villains-gold-1324.html]City of Villains infamy[/URL]
[URL=http://www.forvault.com/city-of-villains-gold-1324.html]cov infamy[/URL]
[URL=http://www.forvault.com/gaia-online-gold-12.html]Gaia Online Gold[/URL]
[URL=http://www.forvault.com/gaia-online-gold-12.html]gaia gold[/URL]
[URL=http://www.forvault.com/gods-and-heroes-gold-1224.html]Gods and Heroes[/URL]
[URL=http://www.forvault.com/gods-and-heroes-gold-1224.html]gods and heroes gold[/URL]
[URL=http://www.forvault.com/granado-espada-gold-1228.html]ge money[/URL]
[URL=http://www.forvault.com/granado-espada-gold-1228.html]granado espada vis[/URL]
[URL=http://www.forvault.com/granado-espada-gold-1228.html]granado espada gold[/URL]
[URL=http://www.forvault.com/hellgate-london-gold-1255.html]hellgate london palladium[/URL]
[URL=http://www.forvault.com/hero-online-gold-15.html]Hero online gold[/URL]
[URL=http://www.forvault.com/hero-online-gold-15.html]buy hero gold[/URL]
[URL=http://www.forvault.com/last-chaos-gold-17.html]Last Chaos Gold[/URL]
[URL=http://www.forvault.com/last-chaos-gold-17.html]buy Last Chaos Gold[/URL]
[URL=http://www.forvault.com/guild-wars-gold-16.html]gw gold[/URL]
[URL=http://www.forvault.com/guild-wars-gold-16.html]Guild Wars Gold[/URL]
[URL=http://www.forvault.com/lineage-ii-gold-19.html]Lineage 2 adena[/URL]
[URL=http://www.forvault.com/lineage-ii-gold-19.html]buy lineage 2 adena[/URL]
[URL=http://www.forvault.com/tales-of-pirates-online-gold-1226.html]Tales of Pirates Gold[/URL]
[URL=http://www.forvault.com/tales-of-pirates-online-gold-1226.html]Tales Of Pirates Online[/URL]
[URL=http://www.forvault.com/rappelz-gold-23.html]rappelz rupee[/URL]
[URL=http://www.forvault.com/rappelz-gold-23.html]rappelz gold[/URL]
[URL=http://www.forvault.com/guild-wars-gold-16.html]Hellgate London[/URL]
[URL=http://www.forvault.com/guild-wars-gold-16.html]hellgate london palladium[/URL]
[URL=http://www.forvault.com/second-life-gold-26.html]Second Life Linden[/URL]
[URL=http://www.forvault.com/second-life-gold-26.html]second life money[/URL]
[URL=http://www.forvault.com/vanguard-gold-30.html]Vanguard money[/URL]
[URL=http://www.forvault.com/vanguard-gold-30.html]Buy Vanguard Gold[/URL]
[URL=http://www.forvault.com/tabula-rasa-gold-1358.html]Tabula Rasa Credit[/URL]
[URL=http://www.forvault.com/tabula-rasa-gold-1358.html]tabula rasa credits[/URL]
[URL=http://www.cheapcdkey.com/diablo-2-cd-key.html]diablo 2 cd key[/URL]
[URL=http://www.cheapcdkey.com]diablo 2 cd key[/URL]
[URL=http://www.digitalcdkey.com/diablo-2-cd-key-p-3.html]diablo 2 cd key[/URL]
周三, 2008-06-04 10:16
wow gold portal site showing which gold sellers have the cheap wow gold price. Compare and save next time you buy world of warcraft gold to our loyal and reliable customers.
周四, 2007-06-28 10:01
86行的问题,请问是把Extendlog加在apache的conf文件里的VitualHost下吗?
周四, 2007-06-28 18:16
嗯……不是的,是加入proftpd的vitual配置当中去
发表新评论