玩物不丧志

一个主要用来记录某人折腾过程的地方

File and Image Uploader

官方网站:

http://z-o-o-m.eu/

下载分流:
File & Image Uploader 5.x (5.3.8)

http://www.easy-share.com/1910192011/FileUploader5.exe
http://rapidshare.com/files/385903849/84967fileuploader5.exe.html
http://www.filefactory.com/file//n/84967fileuploader5.exe
http://www.megaupload.com/?d=z929fvt8

DLL’s necessary for some hosts

http://www.easy-share.com/1910192010/dll.rar
http://rapidshare.com/files/385907138/38510dll.rar.html
http://www.filefactory.com/file//n/38510dll.rar
http://www.megaupload.com/?d=pv9uoc0l

很好用,不用盯着光标傻等了

dd if=a/ffnew.img of=/dev/hda bs=4k

另外一个终端里输入

while killall -USR1 dd; do sleep 5; done

切回去就可以看到进度了,5秒刷新一次 说明嘛,见man ddman kill

最近在rg100a上折腾openwrt… 参考dev上的信息,强化了下自动mount的脚本 顺便又学习了下shell script,嗯,玩中学,学中玩^^ /etc/hotplug.d/block/10-mount

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh

# Copyright (C) 2009 OpenWrt.org

blkdev=`dirname $DEVPATH`
if [ `basename $blkdev` != "block" ]; then

device=`basename $DEVPATH`
case "$ACTION" in
add)
mkdir -p /mnt/$device
# vfat & ntfs-3g check
if [ `which fdisk` ]; then
isntfs=`fdisk -l grep $device grep NTFS`
isvfat=`fdisk -l grep $device grep FAT`
isfuse=`lsmod grep fuse`
isntfs3g=`which ntfs-3g`
else
isntfs=""
isvfat=""
fi

# mount with ntfs-3g if possible, else with default mount
if [ "$isntfs" -a "$isfuse" -a "$isntfs3g" ]; then
ntfs-3g -o nls=utf8 /dev/$device /mnt/$device
elif [ "$isvfat" ]; then
mount -o iocharset=utf8 /dev/$device /mnt/$device
else
mount /dev/$device /mnt/$device
fi
;;
remove)
umount /dev/$device
;;
esac

fi
0%