hi
ich habe folgendes problem immer wenn auf die festplatte (die ich mit mount -o bind) eingebunden habe muß ich eine neue indexierung durch laufen lassen gibt´s eine möglichkeit das entweder zu Automatisieren oder anderes zu lösen
nur zur info es sind mkv mp3 divx wmv dateien und sind mittlerweile 1.5tb und das dauert!!!!!!
ich habe mal was gelesen über ls befehl womit mount befehl womit jedes mal neue einbinden über flüssig machen soll und das unterfahren und umount wesentlich schneller gehen soll ?
so sieht meine mount datei aus
#!/bin/sh
# S99mount.sh
# mount/bind some folders on startup
# and umount them on shutdown/reboot
case $1 in
start)
/bin/mount -o bind /volumeSATA/satashare/Serien /volume1/video/Serien
/bin/mount -o bind /volumeSATA/satashare/wmvhd /volume1/video/wmvhd
/bin/mount -o bind /volumeSATA/satashare/wiicisogames /volume1/public/konsole/wii/games
/bin/mount -o bind /volumeSATA/satashare/xbla /volume1/public/konsole/xbox360/xbla
/bin/mount -o bind /volumeSATA/satashare/mkvhd /volume1/video/mkvhd
;;
stop)
/bin/umount /volumeSATA/satashare/Serien
/bin/umount /volumeSATA/satashare/wmvhd
/bin/umount /volumeSATA/satashare/wiicisogames
/bin/umount /volumeSATA/satashare/xbla
/bin/umount /volumeSATA/satashare/mkvhd
;;
*)
echo "Usage: $0 [start|stop]"
;;
esac
cu
ich habe folgendes problem immer wenn auf die festplatte (die ich mit mount -o bind) eingebunden habe muß ich eine neue indexierung durch laufen lassen gibt´s eine möglichkeit das entweder zu Automatisieren oder anderes zu lösen
nur zur info es sind mkv mp3 divx wmv dateien und sind mittlerweile 1.5tb und das dauert!!!!!!
ich habe mal was gelesen über ls befehl womit mount befehl womit jedes mal neue einbinden über flüssig machen soll und das unterfahren und umount wesentlich schneller gehen soll ?
so sieht meine mount datei aus
#!/bin/sh
# S99mount.sh
# mount/bind some folders on startup
# and umount them on shutdown/reboot
case $1 in
start)
/bin/mount -o bind /volumeSATA/satashare/Serien /volume1/video/Serien
/bin/mount -o bind /volumeSATA/satashare/wmvhd /volume1/video/wmvhd
/bin/mount -o bind /volumeSATA/satashare/wiicisogames /volume1/public/konsole/wii/games
/bin/mount -o bind /volumeSATA/satashare/xbla /volume1/public/konsole/xbox360/xbla
/bin/mount -o bind /volumeSATA/satashare/mkvhd /volume1/video/mkvhd
;;
stop)
/bin/umount /volumeSATA/satashare/Serien
/bin/umount /volumeSATA/satashare/wmvhd
/bin/umount /volumeSATA/satashare/wiicisogames
/bin/umount /volumeSATA/satashare/xbla
/bin/umount /volumeSATA/satashare/mkvhd
;;
*)
echo "Usage: $0 [start|stop]"
;;
esac
cu