Seite 25 von 28

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Sa 21. Apr 2012, 23:31
von BPanther
Naja, HDDs sollen wohl auch nicht mehr so lange halten. Wenn ich an die 2TB WD denke... Die erste hat sich schon nach 1 Monat verabschiedet, eine weitere nach ca. 6 Monaten. Die nächste braucht wohl auch nicht mehr lange den Geräuschen nach zu urteilen. Schade, die WDs waren sonst eigentlich recht gut.

Re: Experimentelle Images/Dateien (stm22)

Verfasst: So 22. Apr 2012, 01:18
von BPanther
Wegen den fehlenden Übersetzungen, sieht dann ab rev4004 (oder höher) so aus.

Re: Experimentelle Images/Dateien (stm22)

Verfasst: So 22. Apr 2012, 11:25
von Hulkster66
Bei mir bei der 912 ist die Einstellmöglichkeit für die Helligkeit gar nich vorhanden sondern da steht ne Fehlermeldung.(siehe Bild)
Vielleicht is das ja der Grund warum es bei der 912 nicht so richtig geht mit dem LCD.

Re: Experimentelle Images/Dateien (stm22)

Verfasst: So 22. Apr 2012, 11:30
von BPanther
Klar ist die da, sind die beiden "Internal Error". Funktionstechnisch ist da nichts anders. ;)
Hatte ich zum testen erstmal so gemacht - sind aber einstellbar, die 8 und 5 im Standard sind auch (etwas schlecht durch den Text) zu sehen.

Hatte Franenstone hier nämlich schon mal geschrieben, und hier hatte ich darauf geantwortet.

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 22:01
von wodnik7
Hallo BPanther,

hast schauen wollen/können wegen des HDD-Sleeps? meine HDD ist nicht ganz so leise, es stört bisschen im Schalzimmer; wäre schön, wenn es wieder liefe..

DANKE!

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 22:19
von BPanther
Es gibt evtl. eine Möglichkeit die Du testen kannst, ist von dbox-all oder DBoxOldie rausgefunden worden.

Zeile 8 in der /var/tuxbox/config/standby.on:

Code: Alles auswählen

echo "Standby ON - `sdparm -C stop /dev/$device`" >> /tmp/test.txt
Ändern in:

Code: Alles auswählen

echo "Standby ON - `(sleep 60; sdparm -C stop /dev/$device) &`" >> /tmp/test.txt
Wirkt sofort, kein Neustart erforderlich. Die HDD sollte damit dann nach 1 Min. in den Standby gehen.

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 22:29
von wodnik7
Danke,

aber meine standby.on lautet

Code: Alles auswählen

#!/bin/sh                                                                                                                            
#echo "Standby ON." >> /tmp/test.txt                                                                                                 
# rote LED an                                                                                                                        
/bin/fp_control -l 2 1                                                                                                               
for device in `cat /proc/partitions | awk '{print $4}' | grep "^sd[a-z]$"`; do                                                       
        echo "Standby ON - device: /dev/$device" >> /tmp/test.txt                                                                    
        AAFparm -C stop /dev/$device                                                                                                 
done                                                                                                                                 
EMU_STANDBY_OFF=$(grep -i "EMU_STANDBY_OFF=" /var/etc/miscsettings.conf | cut -d "=" -f 2)                                           
if [ "$EMU_STANDBY_OFF" == "1" ]; then                                                                                               
        /usr/bin/bpanther 2 stopemu &                                                                                                
fi                                                                                                                                   
# gelbe LED an (wenn eingebaut)                                                                                                      
/bin/fp_control -l 3 1                                                                                                               
exit 0        

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 22:39
von BPanther
Dann hast du noch ne alte, da ist es Zeile 6.

EDIT: Die ist viel zu alt, das kann nicht funktionieren. Bitte die vom aktuellen Image benutzen. Genau das hatte ich damals beim Backup befürchtet und hier zeigt sich das wieder. Weniger ist oft mehr, deswegen werden diese Dateien auch nicht mehr ins aktuelle Backup gepackt.

Erstelle ein neues Backup, mach ein Update des Images und spiele das neu erstellte Backup zurück. Dann sollte die richtige Datei auch da sein und der Standby funktionieren ohne jegliche Änderung.

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 22:50
von wodnik7
Soll heißen,

im neuen Backup wird diese Datei nicht mehr gesichert, dh. mit neuem Backup wird alles außer dieser gesichert, nach Update wieder die richtige zurückgespielt, richtig?

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 23:10
von BPanther
Richtig, im neuen Backup ist die nicht mit bei und bei Wiederherstellung bleibt so die richtige erhalten.

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 23:14
von wodnik7
Hallo,

habe es also so gemacht, aber beim Drücken auf den Standby Knopf auf der FB kommt Fehler 134 und neutrino startet neu (aber kein Bild auf TV)

Was mag nun das wieder sein?

:(

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 23:39
von BPanther
Hä? Dann stimmt was nicht in der Datei, hast Du da was dran verändert?

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Mo 23. Apr 2012, 23:43
von wodnik7
Nein,

frisch von rev4004, dann Sicherung eingespielt..

hier der Inhalt:

Code: Alles auswählen

#!/bin/sh                                                                                                                            
#echo "Standby ON." >> /tmp/test.txt                                                                                                 
# rote LED an                                                                                                                        
/bin/fp_control -l 2 1 > /dev/null                                                                                                   
HDDFOUND=0                                                                                                                           
for device in `cat /proc/partitions | awk '{print $4}' | grep "^sd[a-z]$"`; do                                                       
        if [ `cat /sys/block/$device/removable` == "0" ]; then                                                                       
                echo "Standby ON - `sdparm -C stop /dev/$device`" >> /tmp/test.txt                                                   
                HDDFOUND=1                                                                                                           
        else                                                                                                                         
                echo "KEIN Standby - `sdparm -i /dev/$device`" >> /tmp/test.txt                                                      
        fi                                                                                                                           
done                                                                                                                                 
EMU_STANDBY_OFF=$(grep -i "EMU_STANDBY_OFF=" /var/etc/miscsettings.conf | cut -d "=" -f 2)                                           
if [ "$EMU_STANDBY_OFF" == "1" ]; then                                                                                               
        /usr/bin/bpanther 2 stopemu &                                                                                                
fi                                                                                                                                   
# gelbe LED an (wenn eingebaut)                                                                                                      
if [ "$HDDFOUND" == "1" ]; then                                                                                                      
        /bin/fp_control -l 3 1 > /dev/null                                                                                           
fi                                                                                                                                   
# VFD-Wetter ein                                                                                                                     
if [ -e /var/plugins/vfdwetter ]; then                                                                                               
        touch /tmp/.vfdwetter                                                                                                        
        /var/plugins/vfdwetter &                                                                                                     
fi                                                                                                                                   
exit 0       
PS. Der 134er kommt immer, da hilft nur kompletter Neustart (aber beim OK und 4x Aus kommt auch 134, startet aber doch neu)..

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Di 24. Apr 2012, 00:10
von BPanther
Die Datei selbst scheint OK zu sein. Dann muß man mal seriell schauen, wo der bei Dir absemmelt. Irgendwo scheint da ein Dateiformat nicht zu stimmen.

Re: Experimentelle Images/Dateien (stm22)

Verfasst: Di 24. Apr 2012, 17:52
von wodnik7
Hi,

habe mit setconsole beim Drücken auf Standby dies erhalten:

Code: Alles auswählen

malformed VPD response, VPD pages probably not supported
> SuspendSubtitles
[dvb-sub] paused
< SuspendSubtitles
Error: No matching USB device found!
[GLCD] - ERROR: Init error.
CVFD::setlcdparameter dimm 2 power 1
video_cs.cpp:Standby - bOn=1
[pmt] stop update filter
stopPlayBack: standby 1 forced 0
dmx_cs.cpp:Stop (type=DMX_PCR_ONLY_CHANNEL) Pid 610
dmx_cs.cpp:Stop (type=DMX_AUDIO_CHANNEL) Pid 620
dmx_cs.cpp:Stop (type=DMX_VIDEO_CHANNEL) Pid 610
audio_cs.cpp:Stop
video_cs.cpp:Stop
[dvb-sub] paused
[fe0] diseqc standby
[fe0] Diseqc cmd: 0xE0 0x10 0x2 
[fe0] voltage OFF high 0
[frontend] uni_scr=-1
[fe0] FE_SET_VOLTAGE took: 9 msec (min 9 max 19)
[frontend] uni_scr=-1
[fe0] tone off
[fe0] FE_SET_TONE took: 329 msec (min 249 max 329)
Deleting EPG at /var/epg....
rm: can't stat '/var/epg/00030c9651e0.xml': Input/output error
rm: can't stat '/var/epg/00030c995212.xml': Input/output error
rm: can't stat '/var/epg/00030c995217.xml': Input/output error
rm: can't stat '/var/epg/00030c99521c.xml': Input/output error
rm: can't stat '/var/epg/00030c995221.xml': Input/output error
rm: can't stat '/var/epg/00030c995226.xml': Input/output error
rm: can't stat '/var/epg/00030c99522b.xml': Input/output error
rm: can't stat '/var/epg/00030c995230.xml': Input/output error
rm: can't stat '/var/epg/00711ce81c85.xml': Input/output error
rm: can't stat '/var/epg/00711ce81c86.xml': Input/output error
rm: can't stat '/var/epg/0085000b0076.xml': Input/output error
rm: can't stat '/var/epg/0085000b0077.xml': Input/output error
rm: can't stat '/var/epg/0085000c0069.xml': Input/output error
rm: can't stat '/var/epg/0085000c006a.xml': Input/output error
rm: can't stat '/var/epg/0085000c006b.xml': Input/output error
rm: can't stat '/var/epg/0085000c006c.xml': Input/output error
rm: can't stat '/var/epg/0085000c00f2.xml': Input/output error
rm: can't stat '/var/epg/008500110024.xml': Input/output error
rm: can't stat '/var/epg/008500110137.xml': Input/output error
rm: can't stat '/var/epg/008500110138.xml': Input/output error
rm: can't stat '/var/epg/008500110139.xml': Input/output error
rm: can't stat '/var/epg/008500110141.xml': Input/output error
rm: can't stat '/var/epg/008500110142.xml': Input/output error
rm: can't stat '/var/epg/008500110143.xml': Input/output error
rm: can't stat '/var/epg/00850011014b.xml': Input/output error
rm: can't stat '/var/epg/00850011014c.xml': Input/output error
rm: can't stat '/var/epg/00850011014d.xml': Input/output error
rm: can't stat '/var/epg/008500110206.xml': Input/output error
rm: can't stat '/var/epg/008500210020.xml': Input/output error
rm: can't stat '/var/epg/008500210028.xml': Input/output error
rm: can't stat '/var/epg/008500210033.xml': Input/output error
rm: can't stat '/var/epg/00850021003f.xml': Input/output error
rm: can't stat '/var/epg/00850021004d.xml': Input/output error
rm: can't stat '/var/epg/008500210295.xml': Input/output error
rm: can't stat '/var/epg/008500210381.xml': Input/output error
rm: can't stat '/var/epg/008500210384.xml': Input/output error
rm: can't stat '/var/epg/013e00c8360a.xml': Input/output error
rm: can't stat '/var/epg/013e00c83636.xml': Input/output error
rm: can't stat '/var/epg/013e012c3b62.xml': Input/output error
rm: can't stat '/var/epg/013e012c3b63.xml': Input/output error
rm: can't stat '/var/epg/013e012c3b65.xml': Input/output error
rm: can't stat '/var/epg/013e012c3b66.xml': Input/output error
rm: can't stat '/var/epg/013e012c3b67.xml': Input/output error
rm: can't stat '/var/epg/013e019032dc.xml': Input/output error
rm: can't stat '/var/epg/013e019032de.xml': Input/output error
rm: can't stat '/var/epg/013e019032df.xml': Input/output error
rm: can't stat '/var/epg/013e019032e1.xml': Input/output error
rm: can't stat '/var/epg/013e019032e2.xml': Input/output error
rm: can't stat '/var/epg/013e019032e3.xml': Input/output error
rm: can't stat '/var/epg/013e01903318.xml': Input/output error
rm: can't stat '/var/epg/013e03e810d7.xml': Input/output error
rm: can't stat '/var/epg/013e03e810d8.xml': Input/output error
rm: can't stat '/var/epg/013e03e810d9.xml': Input/output error
rm: can't stat '/var/epg/013e03e810dd.xml': Input/output error
rm: can't stat '/var/epg/013e03e810de.xml': Input/output error
rm: can't stat '/var/epg/013e03e810df.xml': Input/output error
rm: can't stat '/var/epg/013e03e810e0.xml': Input/output error
rm: can't stat '/var/epg/013e03e810e2.xml': Input/output error
rm: can't stat '/var/epg/013e044c3779.xml': Input/output error
rm: can't stat '/var/epg/013e044c377a.xml': Input/output error
rm: can't stat '/var/epg/013e044c377b.xml': Input/output error
rm: can't stat '/var/epg/013e044c377c.xml': Input/output error
rm: can't stat '/var/epg/013e044c377d.xml': Input/output error
rm: can't stat '/var/epg/013e044c377e.xml': Input/output error
rm: can't stat '/var/epg/013e044c377f.xml': Input/output error
rm: can't stat '/var/epg/013e044c3780.xml': Input/output error
rm: can't stat '/var/epg/013e044c3781.xml': Input/output error
rm: can't stat '/var/epg/013e044c3782.xml': Input/output error
rm: can't stat '/var/epg/013e05dc13ee.xml': Input/output error
rm: can't stat '/var/epg/013e05dc13f0.xml': Input/output error
rm: can't stat '/var/epg/013e05dc13f7.xml': Input/output error
rm: can't stat '/var/epg/013e05dc13f8.xml': Input/output error
rm: can't stat '/var/epg/013e196401e7.xml': Input/output error
rm: can't stat '/var/epg/013e1c201c54.xml': Input/output error
rm: can't stat '/var/epg/013e1d4d0011.xml': Input/output error
rm: can't stat '/var/epg/013e1e140069.xml': Input/output error
rm: can't stat '/var/epg/013e1fa43a3e.xml': Input/output error
rm: can't stat '/var/epg/013e1fa43a3f.xml': Input/output error
rm: can't stat '/var/epg/013e1fa43a40.xml': Input/output error
rm: can't stat '/var/epg/013e24b8200c.xml': Input/output error
rm: can't stat '/var/epg/013e24b82011.xml': Input/output error
rm: can't stat '/var/epg/013e24b82013.xml': Input/output error
rm: can't stat '/var/epg/013e2af81134.xml': Input/output error
rm: can't stat '/var/epg/013e2af81136.xml': Input/output error
rm: can't stat '/var/epg/013e2af81137.xml': Input/output error
rm: can't stat '/var/epg/013e2af81139.xml': Input/output error
rm: can't stat '/var/epg/013e2af8113d.xml': Input/output error
rm: can't stat '/var/epg/013e2af8113e.xml': Input/output error
rm: can't stat '/var/epg/013e2af8114d.xml': Input/output error
rm: can't stat '/var/epg/013e2af8114e.xml': Input/output error
rm: can't stat '/var/epg/013e2af8114f.xml': Input/output error
rm: can't stat '/var/epg/013e2af81150.xml': Input/output error
rm: can't stat '/var/epg/013e2af81163.xml': Input/output error
rm: can't stat '/var/epg/013e2af81164.xml': Input/output error
rm: can't stat '/var/epg/013e2af81167.xml': Input/output error
rm: can't stat '/var/epg/013e2af81168.xml': Input/output error
rm: can't stat '/var/epg/013e2af81169.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d55.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d57.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d59.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d5a.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d5b.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d5d.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d5e.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d5f.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d60.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d61.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d62.xml': Input/output error
rm: can't stat '/var/epg/013e2c883d63.xml': Input/output error
rm: can't stat '/var/epg/013e2d500e06.xml': Input/output error
rm: can't stat '/var/epg/013e2d500e09.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12c1.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12c2.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12c4.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12c5.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12c6.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12c7.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12c8.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12c9.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12ca.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12cb.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12e3.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12e4.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12e5.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12e8.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12ea.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12ec.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12f0.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12f1.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12f2.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12f6.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12f7.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12f8.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c12f9.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c1307.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c1308.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c130d.xml': Input/output error
rm: can't stat '/var/epg/013e2e7c130e.xml': Input/output error
rm: can't stat '/var/epg/013e2fa81d2a.xml': Input/output error
rm: can't stat '/var/epg/013e2fa81d2b.xml': Input/output error
rm: can't stat '/var/epg/013e2fa81d2c.xml': Input/output error
rm: can't stat '/var/epg/013e32000001.xml': Input/output error
rm: can't stat '/var/epg/013e32000006.xml': Input/output error
rm: can't stat '/var/epg/013e32000007.xml': Input/output error
rm: can't stat '/var/epg/013e32000016.xml': Input/output error
rm: can't stat '/var/epg/013e32000018.xml': Input/output error
rm: can't stat '/var/epg/013e32000019.xml': Input/output error
rm: can't stat '/var/epg/013e3200001e.xml': Input/output error
rm: can't stat '/var/epg/013e32c8390a.xml': Input/output error
rm: can't stat '/var/epg/013e32c8390b.xml': Input/output error
rm: can't stat '/var/epg/013e32c83912.xml': Input/output error
rm: can't stat '/var/epg/013e32c83914.xml': Input/output error
rm: can't stat '/var/epg/013e32c83915.xml': Input/output error
rm: can't stat '/var/epg/013e332c1c9a.xml': Input/output error
rm: can't stat '/var/epg/013e332c1c9c.xml': Input/output error
rm: can't stat '/var/epg/013e3d542982.xml': Input/output error
rm: can't stat '/var/epg/index.xml': Input/output error
Saving EPG to /var/epg....
Error: No matching USB device found!
[GLCD] - ERROR: Init error.
[sectionsd] Writing Information to file: /var/epg/index.tmp
poll: Interrupted system call
data error
data error
[sectionsd] Writing Information finished
cp: can't stat '/var/epg/index.xml': Input/output error
Error: No matching USB device found!
[GLCD] - ERROR: Init error.
CEventServer::sendEvent >
CEventServer::sendEvent2Client >
CEventServer::sendEvent2Client <
CEventServer::sendEvent <
pwrmngr.cpp:SetStandby
pwrmngr.cpp:SetCpuFreq
Error: No matching USB device found!
[GLCD] - ERROR: Init error.
Allerdings ging die HDD problemlos schlafen.. Seltsam, gestern nacht immer der Fehler.. naja.

Was nur wundert ist, dass der EPG nicht geschrieben werden kann.. Seltsam! Weißt Du dazu Rat?