In the following I show how you connect to the Fritz!Box USB media formatted with the reiserfs file system.
For the time being only available for kernels:
- For mipsel-Fritz!Boxes (e.g. 7270, 7170 et al.):
- 2.6.32.41 (e.g. Fritz!Box 7270 fw 54.05.21)
- 2.6.32.21 (e.g. Fritz!Box 7270 fw 54.05.05)
- 2.6.19.2 (e.g.. Fritz!Box 7270 fw 54.04.76)
- 2.6.13.1-ohio (e.g. Fritz!Box 7170 fw 29.04.70)
- For mips-Fritz!Boxes (e.g. 7390, 7340 et al.):
- 2.6.32.60 (e.g. Fritz!Box 7490 fw 05.59)
- 2.6.32.41 (e.g. Fritz!Box 7320 fw 100.05.20)
- 2.6.28.10 (e.g. Fritz!Box 7390 fw 84.05.05)
- 2.6.19.2 (z.B. Fritz!Box 7390 fw 84.04.91)
Fritz!Box without USB memory
1. Run the following commands in the console. having done that mount the new partition with read/write access to $REISERFSNAME.
2. If everything works ok you can add the commands to debug.cfg (comapre chapter. “debug.cfg”).
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
TEMP=/var/tmp DOWNLOADPAGE='https://fritzmod.net/download/mipsel/2.6.32.41' # for kernel 2.6.32.41 mipsel # DOWNLOADPAGE='https://fritzmod.net/download/mipsel/2.6.32.21' # for kernel 2.6.32.21 mipsel # DOWNLOADPAGE='https://fritzmod.net/download/mipsel/2.6.19.2' # for kernel 2.6.19.2 mipsel # DOWNLOADPAGE='https://fritzmod.net/download/mipsel/2.6.13.1-ohio' # for kernel 2.6.13.1-ohio mipsel # DOWNLOADPAGE='https://fritzmod.net/download/mips/2.6.32.60' # for kernel 2.6.32.60 mips # DOWNLOADPAGE='https://fritzmod.net/download/mips/2.6.32.41' # for kernel 2.6.32.41 mips # DOWNLOADPAGE='https://fritzmod.net/download/mips/2.6.28.10' # for kernel 2.6.28.10 mips # DOWNLOADPAGE='https://fritzmod.net/download/mips/2.6.19.2' # for kernel 2.6.19.2 mips REISERFSNAME=/var/media/reiserfs # any name while !(ping -c 1 www.google.de); do sleep 5; done cd $TEMP wget $DOWNLOADPAGE/reiserfs.ko /sbin/insmod reiserfs.ko mkdir $REISERFSNAME mount -t reiserfs /dev/sda2 $REISERFSNAME # sda2 can be replaced by another partition if you want so |
Fritz!Box with USB memory
1. Download the files below and save them on the USB memory in directory “module”:
- For mipsel-Fritz!Boxes (e.g. 7270, 7170 et al.):
- For mips-Fritz!Boxes (e.g. 7390, 7340 et al.):
Advanced users may want to use another directory. Don’t forget to adapt the code accordingly.
2. Run the following commands in the console. having done that mount the new partition with read/write access to $REISERFSNAME.
3. If everything works ok you can add the commands to debug.cfg (compare chapter. “debug.cfg”)
NOTE: a fat partition MUST exist for the verification of the existence of USB memory.
Code
1 2 3 4 5 6 7 8 9 |
HDD='Hitachi-HTS543216L9A300-01' # ATTENTION: this must be adapted! HDD_ABSOLUT='/var/media/ftp/'$HDD REISERFSNAME=/var/media/reiserfs # any name while ! [ -d $HDD_ABSOLUT ] ; do sleep 5; done /sbin/insmod $HDD_ABSOLUT/module/reiserfs.ko mkdir $REISERFSNAME mount -t reiserfs /dev/sda2 $REISERFSNAME # sda2 may be replaced by another partition |