#56094 - 26/01/10 02:54 PM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
fijn tooltje hoor  ik had de vorige zelf al aangepast met second stageloader 76 is al veelvuldig gebruikt hier ivm testen van allerlei software en plugins grtz razors
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#56185 - 26/01/10 08:33 PM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
 grtz razors
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#56254 - 27/01/10 02:52 PM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
Frequente bezoeker
Registered: 15/10/07
Posts: 58
Loc: Druten
|
Hallo Freesat,ik heb deze bestandjes ingebracht,wat nu om de backup te maken,ik heb het eens ergens gezien hoe het moet maar waar??? Kun je me helpen? Groet jo
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#56281 - 27/01/10 05:05 PM
Re: E2-Backup NFI tool
[Re: jubke]
|
FreeSat Freak
Registered: 10/04/06
Posts: 777
Loc: Eindhoven e.o.
|
Kopieer de file: E2-Backup.FreeSat-20100126.tar.gz naar /tmp (Met DCC/FTP) Open een telnet sessie en type: cd / tar zxvf /tmp/E2-Backup.FreeSat-20100126.tar.gz cd /etc ./build-nfi-image.sh /hdd Nu wordt er (in ongeveer 3 minuten) een backup gemaakt van je DreamBox DM800, DM7025 DM8000 op je HDD De file heet dan: backup-image-dmxxxxx-datum_xxx.nfi Copieer deze file daarna met FTP naar je PC en je kunt deze nu gewoon met DreamUp flashen... (of de box in de stopmode zetten en dan flashen via de webinterface) Bron FreeSat Grts, Euromuis
_________________________
Dreambox DM8000 HD PVR met 2x DVB-S2 + DVB-C + DVB-T, 1Tb HDD Xtrend ET 5000 HD, 320Gb USB HDD, PCTV Nano DVB-T USB-Stick Solo 73e SE Triax 110cm, Draaibaar + A1,A2,A3 & HB en een Visiosat Bi Satellite, A1,2,3 & HB Philips 46PFL9705H12 Full HD (3D) LED TV en een Philips 9000 series Blu-ray Disc-player
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#59530 - 02/03/10 09:11 AM
Re: E2-Backup NFI tool
[Re: NSR]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
Dit staat in het bestand "build-nfi-image.sh" kan je open met een editor #!/bin/sh DIRECTORY=$1 MTDBOOT=2 MTDROOT=3 if grep -qs 7020 /proc/bus/ DreamBox ; then BOXTYPE=dm7020 VSND=35 OPTIONS="--eraseblock=0x4000 -n -b" elif grep -qs DM600PVR /proc/bus/ DreamBox ; then BOXTYPE=dm600pvr VSND=54 OPTIONS="--eraseblock=0x4000 -n -b" elif grep -qs DM500PLUS /proc/bus/ DreamBox ; then BOXTYPE=dm500plus VSND=54 OPTIONS="--eraseblock=0x4000 -n -b" elif grep -qs 'ATI XILLEON HDTV SUPERTOLL' /proc/cpuinfo ; then BOXTYPE=dm7025 VSND=61 OPTIONS="--eraseblock=0x4000 -n -l" elif grep -qs 'dm8000' /proc/stb/info/model ; then BOXTYPE=dm8000 VSND=76 OPTIONS="--eraseblock=0x20000 -n -l" elif grep -qs 'dm800' /proc/stb/info/model ; then BOXTYPE=dm800 VSND=75 OPTIONS="--eraseblock=0x4000 -n -l" else echo "Box not found !!!" exit 0 fi echo $BOXTYPE " found" echo "***" DATE=`date +%Y%m%d_%H%M%S` MKFS=/usr/bin/mkfs.jffs2 BUILDIMAGE=/usr/bin/buildimage BACKUPIMAGE=$DIRECTORY/backup-image-$BOXTYPE-$DATE.nfi SND=secondstage-$BOXTYPE-$VSND.bin if [ ! -f $MKFS ] ; then echo $MKFS" not found" exit 0 fi if [ ! -f $BUILDIMAGE ] ; then echo $BUILDIMAGE" not found" exit 0 fi rm -rf $DIRECTORY/bi mkdir -p $DIRECTORY/bi mkdir -p /tmp/bi/root mkdir -p /tmp/bi/boot mount -t jffs2 /dev/mtdblock/$MTDROOT /tmp/bi/root mount -t jffs2 /dev/mtdblock/$MTDBOOT /tmp/bi/boot echo "download " $SND wget -q http://sources.dreamboxupdate.com/download/7020/$SND -O /tmp/secondstage.bin > /dev/null if [ -s /tmp/secondstage.bin ] ; then echo "create boot.jffs2" $MKFS --root=/tmp/bi/boot --faketime --output=$DIRECTORY/bi/boot.jffs2 $OPTIONS echo "create root.jffs2" $MKFS --root=/tmp/bi/root --faketime --output=$DIRECTORY/bi/root.jffs2 $OPTIONS echo "create secondstage" if [ $BOXTYPE = "dm800" -o $BOXTYPE = "dm8000" ] ; then cp /tmp/secondstage.bin $DIRECTORY/bi/main.bin.gz else gzip -c /tmp/secondstage.bin > $DIRECTORY/bi/main.bin.gz fi rm /tmp/secondstage.bin echo "create" $BOXTYPE "nfi-image" if [ $BOXTYPE = "dm7025" ] ; then $BUILDIMAGE $DIRECTORY/bi/main.bin.gz $DIRECTORY/bi/boot.jffs2 $DIRECTORY/bi/root.jffs2 $BOXTYPE > $BACKUPIMAGE elif [ $BOXTYPE = "dm800" ] ; then $BUILDIMAGE $DIRECTORY/bi/main.bin.gz $DIRECTORY/bi/boot.jffs2 $DIRECTORY/bi/root.jffs2 $BOXTYPE 64 > $BACKUPIMAGE elif [ $BOXTYPE = "dm8000" ] ; then $BUILDIMAGE $DIRECTORY/bi/main.bin.gz $DIRECTORY/bi/boot.jffs2 $DIRECTORY/bi/root.jffs2 $BOXTYPE 64 large > $BACKUPIMAGE elif [ $BOXTYPE = "dm7020" ] ; then $BUILDIMAGE $DIRECTORY/bi/main.bin.gz $DIRECTORY/bi/boot.jffs2 $DIRECTORY/bi/root.jffs2 > $BACKUPIMAGE elif [ $BOXTYPE = "dm600pvr" ] ; then $BUILDIMAGE $DIRECTORY/bi/main.bin.gz $DIRECTORY/bi/boot.jffs2 $DIRECTORY/bi/root.jffs2 $BOXTYPE > $BACKUPIMAGE elif [ $BOXTYPE = "dm500plus" ] ; then $BUILDIMAGE $DIRECTORY/bi/main.bin.gz $DIRECTORY/bi/boot.jffs2 $DIRECTORY/bi/root.jffs2 $BOXTYPE > $BACKUPIMAGE fi if [ -f $BACKUPIMAGE ] ; then echo "Image create on" $BACKUPIMAGE fi else echo "download error" fi echo "***" umount /tmp/bi/root umount /tmp/bi/boot #rm -rf /tmp/bi rm -rf $DIRECTORY/bi exit het gaat om deze regel elif grep -qs 'dm8000' /proc/stb/info/model ; then BOXTYPE=dm8000 VSND=76 dit stond in de eerdere versie nog op 75 als je dan een backup maakt zet hij de oude 75 terug ipv de 76 als je dat niet aanpast grtz razors
Edited by razors (02/03/10 09:14 AM)
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#63187 - 04/04/10 12:02 PM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
Hobbyloos
Registered: 07/06/05
Posts: 10337
Loc: Netherlands
|
Ik zal eens kijken of ik hem daarvoor kan aanpassen,.. thnx voor de tip Zou mooi zijn..  voor de 500hd is er nog geen backup plugin/tool.. Er is wel een nfi bakup plugin wat goed op de 800 werkt, maar bij de 500hd werkt dat niet (melding box not found) uitvoerig getest door DJDakman..
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#65049 - 22/04/10 06:45 PM
Re: E2-Backup NFI tool
[Re: razors]
|
FreeSat verslaafd
Registered: 09/10/05
Posts: 3377
Loc: Oudewater
|
Kan je dit inplaats van op de harde schijf ook op de cardflach card zetten.
Edited by ccdk (22/04/10 07:11 PM)
_________________________
Dreambox 8000 Triax 80cm 23,5 GREG 55 CM
|
|
Top
|
|
|
|
#65051 - 22/04/10 07:48 PM
Re: E2-Backup NFI tool
[Re: ccdk]
|
FreeSat verslaafd
Registered: 09/10/05
Posts: 3377
Loc: Oudewater
|
Ja dat kan. Ik heb dit gedaan. ./build-nfi-image.sh /cf
_________________________
Dreambox 8000 Triax 80cm 23,5 GREG 55 CM
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#65052 - 22/04/10 07:50 PM
Re: E2-Backup NFI tool
[Re: ccdk]
|
FreeSat verslaafd
Registered: 09/10/05
Posts: 3377
Loc: Oudewater
|
Cf is te klein. No space left on divice.
Jammer jammer.
_________________________
Dreambox 8000 Triax 80cm 23,5 GREG 55 CM
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#65066 - 22/04/10 08:20 PM
Re: E2-Backup NFI tool
[Re: Dj Pelleboer]
|
FreeSat verslaafd
Registered: 09/10/05
Posts: 3377
Loc: Oudewater
|
Ik had hem geformateerd. En was leeg 4GB. Alles is fout gegaan. Er vald niks meer te backuppen. Ik moet alles er opnieuw in gaan zetten. Harde schijf is geformateerd. Alles kwijt.
_________________________
Dreambox 8000 Triax 80cm 23,5 GREG 55 CM
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#65070 - 22/04/10 08:26 PM
Re: E2-Backup NFI tool
[Re: Dj Pelleboer]
|
FreeSat verslaafd
Registered: 09/10/05
Posts: 3377
Loc: Oudewater
|
Waarschijnlijk heeft het niet goed op de harde schijf gestaan.
_________________________
Dreambox 8000 Triax 80cm 23,5 GREG 55 CM
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#71148 - 26/06/10 02:05 PM
Re: E2-Backup NFI tool
[Re: Dj Pelleboer]
|
Frequente bezoeker
Registered: 09/10/04
Posts: 73
|
iemand een idee of dat ook lukt met filezilla ftp en of je die backup daarna lokaaal kan terug kan zetten naar je hardeschijf op de pc.
|
|
Top
|
|
|
|
#71150 - 26/06/10 02:26 PM
Re: E2-Backup NFI tool
[Re: rog]
|
P
No life than FreeSat life
Registered: 24/12/04
Posts: 8615
Loc: verweg
|
Je bedoeld een backup maken met behulp van het tooltje op je interne harddisk en dan copieeren mbv van ftp naar je pc. Ja zeker kan dat. Je kan ook de backup direct naar je pc laten schrijven. Daarvoor moet je wel eerst een mount locatie maken op je DreamBox. En die dan ingeven tijdens de instructies.
_________________________
Who who whoBezoek ook eens de DreamBoxSupport webshop.Als je er geen verstand van hebt dan wordt het tijd om er aan te beginnen.
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#79775 - 29/09/10 04:42 PM
Re: E2-Backup NFI tool
[Re: piet12]
|
Beheerder
Hobbyloos
Registered: 16/05/03
Posts: 15819
Loc: zichtloos leven
|
Nieuwe versie Changelog - DM800 update secondstage > 76 - DM500HD with secondstage 79 Usage: copy alle files to destined directories and chmod them all 755. Start like: cd /etc ./build-nfi-image.sh /hdd For this tool to be working use a harddrive with at least 80Mb of free space. Support forum: www.freesat.nlRob
Attachments
BackUP-E2-20100929.tar.gz (29 downloads)Description: Versie 20100929
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#79815 - 29/09/10 08:50 PM
Re: E2-Backup NFI tool
[Re: NSR]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
thnx Rob, een onmisbaar tool als je veel test  grtz razors
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#80219 - 05/10/10 03:41 PM
Re: E2-Backup NFI tool
[Re: euromuis]
|
Frequente bezoeker
Registered: 15/10/07
Posts: 58
Loc: Druten
|
hallo, ik heb telnet nog nooit gebruikt,als ik een sessie open en type CD/ dan geeft hij aan not found. Moet ik dan unmount en mount? mijn vraag is als je unmount mound,veranderd er dan niets wat betrefd opnemen en zo. Of is het boeltje dan ontregeld??
|
|
Top
|
|
|
|
#80220 - 05/10/10 03:48 PM
Re: E2-Backup NFI tool
[Re: jubke]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
je kan ook deze regels in het telnet venster copieeren
cd / tar zxvf /tmp/backupE2.tar.gz
is die klaar met installeren
dan deze regel in copieeren
cd /etc ./build-nfi-image.sh /hdd
voorkomt meteen typ fouten
grtz
razors
Edited by razors (05/10/10 03:49 PM)
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#80248 - 05/10/10 08:55 PM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
daarom zeg ik ook copieeren plakken  zo doe ik het tenminste  grtz razors
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
#80294 - 06/10/10 12:10 PM
Re: E2-Backup NFI tool
[Re: razors]
|
Frequente bezoeker
Registered: 15/10/07
Posts: 58
Loc: Druten
|
tar: can't open '/tmp/backupE2.tar.gz': No such file or directory
dit zegt hij??
Groet Jo
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#80296 - 06/10/10 12:43 PM
Re: E2-Backup NFI tool
[Re: jubke]
|
P
No life than FreeSat life
Registered: 24/12/04
Posts: 8615
Loc: verweg
|
Dat kan wel kloppen! Het progje dat je in /tmp gekopieerd hebt heet anders dan backupE2.tar.gz Dus je renamed de file naar backupE2.tar.gz of je past de tar opdracht aan.
_________________________
Who who whoBezoek ook eens de DreamBoxSupport webshop.Als je er geen verstand van hebt dan wordt het tijd om er aan te beginnen.
|
|
Top
|
|
|
|
#80297 - 06/10/10 01:12 PM
Re: E2-Backup NFI tool
[Re: piet12]
|
Frequente bezoeker
Registered: 15/10/07
Posts: 58
Loc: Druten
|
TMP map nu snap ik het niet meer,dakman schreef een tijdje terug dit:bestand moet je in etc en die andere twee in usr/bin zetten en chmod 755 geven , dan doe je telnet ........
dat heb ik gedaan dus niets in tmp gezet??
groet jo
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#80298 - 06/10/10 01:14 PM
Re: E2-Backup NFI tool
[Re: jubke]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
klopt zo schrijft Rob het hier boven ook
dan hoef je alleen dit nog maar te doen met telnet
cd /etc ./build-nfi-image.sh /hdd
enter
grtz
razors
Edited by razors (06/10/10 03:59 PM)
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
#80299 - 06/10/10 01:29 PM
Re: E2-Backup NFI tool
[Re: razors]
|
Frequente bezoeker
Registered: 15/10/07
Posts: 58
Loc: Druten
|
nu is hij bezig.... waar vind ik straks de image?
Groet Jo
opgelost gevonden,super..... wel de emu opnieuw op moeten starten,was zijn cccam kwijt
bedankt Piet razors
Edited by jubke (06/10/10 02:14 PM)
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#80685 - 11/10/10 11:26 AM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
FreeSatter
Registered: 13/05/04
Posts: 152
Loc: ?????
|
Hi Rob
Werkt hier ook over het netwerk
Bunyip
_________________________
DM 8000 SS/CC Triax 110 cm Draaibaar
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#80764 - 12/10/10 07:00 AM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
FreeSatter
Registered: 13/05/04
Posts: 152
Loc: ?????
|
Ik heb een map op de PC gemount Die staat er dan als keuze bij
Bunyip
_________________________
DM 8000 SS/CC Triax 110 cm Draaibaar
|
|
Top
|
|
|
|
#82608 - 02/11/10 01:39 PM
Re: E2-Backup NFI tool
[Re: Bunyip]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
werkt niet meer op newnigma 3.1
krijg een melding dat newnigma geen backups laat maken???????
grtz
razors
Attachments
Description: screenshot
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#82612 - 02/11/10 02:32 PM
Re: E2-Backup NFI tool
[Re: razors]
|
FreeSatter
Registered: 13/05/04
Posts: 152
Loc: ?????
|
@razors
Heb je dat filetje vervangen wat hierboven in een post staat
Gr Bunyip
_________________________
DM 8000 SS/CC Triax 110 cm Draaibaar
|
|
Top
|
|
|
|
#82617 - 02/11/10 03:10 PM
Re: E2-Backup NFI tool
[Re: Bunyip]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
hoi Bunyip, ja heb ik gedaan als ik met telnet werk lukt het wel via plugin menu niet dan krijg ik die melding die in de vorige post staat maar zo lukt het ook  grtz razors
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#82712 - 03/11/10 08:29 AM
Re: E2-Backup NFI tool
[Re: Bunyip]
|
Out of control
Registered: 30/04/04
Posts: 1817
Loc: Hutje op de Heide
|
En wat zit er dan in die backup. Ik denk alles dus alle instellingen en ook de kanalenlijst. Of heb ik dit mis???
_________________________
Leven en laten leven.
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#82730 - 03/11/10 02:36 PM
Re: E2-Backup NFI tool
[Re: Johan1945]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
je moet deze instaleren post hierboven van bunyip
enigma2-plugin-extensions-gp2flashbackup_1.4.6-r0-03.09.2010_mipsel.ipk.zip
naar instalatie
herstarten van de DM
dan in telnet
cd /etc ./build-nfi-image.sh /hdd
dan werkt het bij mij wel
grtz
razors
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
#82747 - 03/11/10 05:24 PM
Re: E2-Backup NFI tool
[Re: razors]
|
Out of control
Registered: 30/04/04
Posts: 1817
Loc: Hutje op de Heide
|
Hallo razors
Ik heb dat ook al eens gedaan want ik dacht dan is het probleem opgelost. Maar bij mij is dan het image in de box naar de klote en blijft de box na een herstart in de booting hangen en gaat niet verder. Dus ik heb een voledige flash gedaan met de nieuwe 3.1 versie en nu draait het weer. Dus zodoende heb ik nog steeds geen backup helaas.
_________________________
Leven en laten leven.
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#82776 - 03/11/10 08:27 PM
Re: E2-Backup NFI tool
[Re: Dj Pelleboer]
|
Out of control
Registered: 30/04/04
Posts: 1817
Loc: Hutje op de Heide
|
Ik heb inmiddels de versie 3.02 erop gezet en alle problemen zijn opgelost. Dus ik denk dat de oorzaak het image 3.1 is en de internne hdd waar ik van dacht dat die stuk was werkt weer als de beste. Zo zijn we weer helemaal tevreden en de backups werken ook weer goed met Rob zijn tooltje  .
_________________________
Leven en laten leven.
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#83344 - 09/11/10 10:40 PM
Re: E2-Backup NFI tool
[Re: Johan1945]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
de backups die ik gemaakt heb zijn allemaal naar de kl@te
ze zijn gemaakt en de grote van het bestand klopt maar als ik een backup terug zet van newnigma 3.1 dan gebeuren er rare dingen bv geen geluid of blijven hangen in de boot
zelfde als bij johan
heb je al een backup terug gezet DJ? en werkt die dan goed?
grtz
razors
Edited by razors (09/11/10 10:41 PM)
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
#84369 - 20/11/10 12:22 PM
Re: E2-Backup NFI tool
[Re: razors]
|
Hobbyloos
Registered: 07/06/05
Posts: 10337
Loc: Netherlands
|
Backup maken met de laatste EDG-Nemesis lukt hier nu ook niet. Er word eerst een dir aangemaakt op de hdd met de naam: (bi) wat voorheen niet zo was.  Krijg daarna de volgende melding root@dm8000:~# cd / root@dm8000:/# tar zxvf /tmp/E2-Backup.FreeSat-20100126.tar.gz usr/bin/mkfs.jffs2 usr/bin/buildimage etc/build-nfi-image.sh root@dm8000:/# cd /etc root@dm8000:/etc# ./build-nfi-image.sh /hdd dm8000 found *** download secondstage-dm8000-76.bin wget: cannot connect to remote host (82.149.226.174): Connection timed out download error *** root@dm8000:/etc#
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#84407 - 20/11/10 07:42 PM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
Hobbyloos
Registered: 07/06/05
Posts: 10337
Loc: Netherlands
|
Lijkt erop of de Second stage die gedownload moet worden niet (meer) beschikbaar is of server offline... Zoiets zal het wel zijn ja, want als ik naar pakketbeheer of extensie beheer ga dan gebeurt daar ook helemaal nix. Een pakketen lijst vernieuwen/downloaden werkt op dit moment ook niet....hopenlijk dat dit niet zo blijft.
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#90774 - 11/01/11 03:49 PM
Re: E2-Backup NFI tool
[Re: NSR]
|
Startend lid
Registered: 11/01/11
Posts: 1
Loc: NL
|
Klopt het dat de resulterende NFI file groter is dan de oorspronkelijke image (de oorspronkelijke was iets groter dan 40mb, het resultaat met de tool is iets meer dan 50 mb)?
Peter
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#91218 - 14/01/11 04:45 PM
Re: E2-Backup NFI tool
[Re: FreeSat]
|
Frequente bezoeker
Registered: 15/10/07
Posts: 58
Loc: Druten
|
ik heb een nieuwe image geplaatst nieuw enigma 2 3.1.2 en geupdate naar 1.3 allemaal gelukt maar nu probeer ik een backup te maken maar dat doet hij niet,en laat dit zien met telnetten?? Weten jullie wat het probleem is?
root@dm8000:~# cd /etc root@dm8000:/etc# ./build-nfi-image.sh /hdd dm8000 found *** mount: mounting /dev/mtdblock/3 on /tmp/bi/root failed: No such file or directory download secondstage-dm8000-76.bin create boot.jffs2 create root.jffs2 create secondstage create dm8000 nfi-image Image create on /hdd/backup-image-dm8000-20110114_163735.nfi *** umount: can't umount /tmp/bi/root: Invalid argument mount: mounting /dev/mtdb
Edited by jubke (14/01/11 04:45 PM)
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#91223 - 14/01/11 05:15 PM
Re: E2-Backup NFI tool
[Re: NSR]
|
Frequente bezoeker
Registered: 15/10/07
Posts: 58
Loc: Druten
|
Bedankt NSR voor de info,is wel kl...te, was zo gemakkelijk.
Groet Jo
Edited by jubke (14/01/11 05:15 PM)
|
|
Top
|
|
|
|
#113658 - 25/08/11 10:52 AM
Re: E2-Backup NFI tool
[Re: NSR]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
Ja dat weten we wel.. Newngma2 kan je niet meer backuppen dat hebben ze afgeschermd. er is weer een backup plugin die ook werkt op newnigma2 3.x.x en wel dflash werkt ook in combinatie met DCC_E2 dflash staat, als deze is geinstaleerd, in het menu "instellingen" wel even de DB opnieuw opstarten als de plugin geinstaleerd is getest, backup gemaakt duurt ongeveer 3 to 5 minuten, backup terug gezet met de webbrowser  grtz razors
Attachments
enigma2-plugin-extensions-dflash_0.97_mipsel.rar (11 downloads)Description: dflash
Edited by razors (25/08/11 10:56 AM)
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#113854 - 27/08/11 01:33 PM
Re: E2-Backup NFI tool
[Re: Dj Pelleboer]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
vond ik ook DJ
vooral voor de testers onder ons die graag hobbyen met nieuwe pluggins etc
grtz
razors
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#113935 - 28/08/11 11:44 AM
Re: E2-Backup NFI tool
[Re: razors]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
update
grtz
razors
Attachments
enigma2-plugin-extensions-dflash_0.100_mipsel.rar (2 downloads)Description: dflash 0.100
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
#113939 - 28/08/11 12:02 PM
Re: E2-Backup NFI tool
[Re: razors]
|
FreeSat verslaafd
Registered: 11/04/09
Posts: 3588
Loc: Het Westland
|
Die jongens gaan snel.  dflash_0.101 On the first page is now also the version of dFlash Dalmatians (0101) where the command line when Webif ALWAYS in English, no matter what language is set in enigma2. This means that the people who have backup shell scripts made ??with wget command just once to be replaced by backup, but the DCC BernyR can modify the integration dFlash on the English syntax of the command web interface to make it so it goes in any language. And after there were no complaints because the statically linked writenfi I have just left inside. LG gutemine dflash_0.102 25.08.2011 Fixed File by gutemine dflash_0.103 OK, now is the 0103 all the functionality to check the flash with the built in dFlash nand_check fix as it was previously available only as an independent check on flash plugin. Man only needs to press the Info button when you are in dFlash :-) When flashing itself is still being distributed / dev/mtd1 therefore checked the room for the SSL and possibly denied. Only I do not think that will change now because what :-( LG gutemine
Attachments
enigma2-plugin-extensions-dflash_0.103_mipsel.rar (7 downloads)Description: dflash_0.103
_________________________
DM8000 met T90 en Moteck draaibaar Laatste OpenPLI DM7020 Gregorian 120 Echostar7000 met chaparral 2.4Mtr C-band
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#113941 - 28/08/11 12:59 PM
Re: E2-Backup NFI tool
[Re: vogelaar]
|
Erelid
FreeSat verslaafd
Registered: 17/05/05
Posts: 4821
Loc: thuis, op het werk en in de kr...
|
Inderdaad Vogelaar, Thnx voor de upload grtz razors
_________________________
No body is perfect, my name is "RAZORS" DM8000sstc 500GB HD, 4GB CF, DVD burner Newnigma2 3.3.2 DM500HDs 1TB esata Newnigma2 3.3.2 DM7000s 250GB + 256mb ( nu ff PLI-JADE ) A.C.Ryan Playon!HD2 mini in combinatie met DS211 2x wave t55 dual nlb's 13-19.2-23.5-28.2
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
#115006 - 11/09/11 12:31 PM
Re: E2-Backup NFI tool
[Re: NSR]
|
FreeSat verslaafd
Registered: 11/04/09
Posts: 3588
Loc: Het Westland
|
enigma2-plugin-extensions-dflash_0.107_mipsel Voor je deze versie gebruikt eerst dit lezen.  I now have time to test the new build image with the-B flag is used for boxes where now the broadcom NAND Flash is installed in a 0104. Please pass this first time on the boxes where there are new images using (se 800.800, 8000.500 hd) ONLY for those new images, it ensures that an old image because it will not boot kernel / loader / driver for the missing image! For the old images continue to use the secure so 0103! Only when we have extensively tested and it works properly with the new images I'm considering whether I install a corresponding recognition that there is again a dflash image types for both! LG gutemine
_________________________
DM8000 met T90 en Moteck draaibaar Laatste OpenPLI DM7020 Gregorian 120 Echostar7000 met chaparral 2.4Mtr C-band
|
|
Top
|
|
|
|
You are a non-registered user? Please apply for an account!!! By logging in this banner will disappear. If you log in, you have many more functions like more forums, you can download attachements and you can use the search function.
|
|
| Inverto -=IDLR-QUTL40=- Premium |  | € 24.95 |
|
|
11012 Members
94 Forums
43850 Topics
135486 Posts
172 Posts past hours
Max Online: 1955 @ 19/03/2009
|
|
|
79 registered (ccdk, bever, byJEFF, Bunyip, astrasat, BRUUT-DREAM, angilo, Bumzel, BLACKBIRD, afred, ayoub, brugsewitte, bobelen1, atlantic, azul, en meer...),
671
Guests and
27
Spiders online. |
|
|
|
|