Quoteand from LinuxMCE's point of view, you have a single big disk.
Correct - except for 12.04 does not show the disk at all. 10.04 and 14.04 both show the disk as 1 big drive which is fine but it does not appear in 12.04...
-herb
Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuoteand from LinuxMCE's point of view, you have a single big disk.
Quoteis the raid setup using mdadm, or is the raid setup using the fakeraid of intel?
@dcerouter:~$ cat /proc/mdstat
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10]
unused devices: <none>
QuoteI couldn't get your test script to work at all.
could I get your help making one for weather.com based
Quotedid this help?No. I added it to the tablet skin and did a quick reload and nada on those commands.
QuoteCan you be more specific?
QuoteReading the thread above I can't see any mention of the registration process - without it you may get intermittent or unreliable control capability.Correct. I did this simply by using php cURL from the command line. The issues I was running into is my particular model does not use the same ports as the Sonys that I could find the protocols for. I did register my core as a device before I began setting up the template for the device itself and I still have some kinks to work out such as hard coding in the magic packet for WOL.
QuoteAny progress on the subject?
QuoteAre we putting this in a wiki page?
06-09-2014 10:05:50 *****sending AAAAAwAAHFoAAAAWAw== ******
06-09-2014 10:05:50 POST /upnp/control/IRCC HTTP/1.1
Host: 192.168.80.151:50001
User-Agent: MediaRemote
Content-Type: text/xml; charset="utf-8"
Content-Length: 374
Content-Transfer-Encoding: text
SOAPAction: "urn:schemas-sony-com:service:IRCC:1#X_SendIRCC"
Connection-Close: close
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:X_SendIRCC xmlns:m="urn:schemas-sony-com:service:IRCC:1"><IRCCCode xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="string">AAAAAwAAHFoAAAAWAw==</IRCCCode></m:X_SendIRCC></SOAP-ENV:Body></SOAP-ENV:Envelope>
06-09-2014 10:05:50 HTTP/1.1 400 Bad Request
Connection: close
Date: Sat, 06 Sep 2014 16:05:49 GMT
Server: Linux/2.6
06-09-2014 10:05:50 UPnP/1.0 Sony-BDP/2.0
def log(word)
logTime = Time.now
timeStr = logTime.strftime("%d-%m-%Y %H:%M:%S ")
$logFile.print(timeStr + word + "\n" )
$logFile.flush()
print(word + "\n")
end
def RemoteKey(key)
soapBody ='<?xml version="1.0"?>'
soapBody ='<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
soapBody+='<SOAP-ENV:Body>'
soapBody+='<m:X_SendIRCC xmlns:m="urn:schemas-sony-com:service:IRCC:1">'
soapBody+='<IRCCCode xmlns:dt="urn:schemas-microsoft-com:datatypes" dt:dt="string">' +key+ '</IRCCCode></m:X_SendIRCC>'
soapBody+='</SOAP-ENV:Body>'
soapBody+='</SOAP-ENV:Envelope>'
s = "POST /upnp/control/IRCC HTTP/1.0 \x0D\x0A"
s+= "User-Agent: MediaRemote \x0D\x0A"
s+= "SOAPAction: \"urn:schemas-sony-com:service:IRCC:1#X_SendIRCC\" \x0D\x0A"
s+= "Content-Type: text/xml; charset=\"utf-8\" \x0D\x0A"
s+= "Content-Length: "+soapBody.length.to_s+" \x0D\x0A"
s+= "Content-Transfer-Encoding: text \x0D\x0A"
s+= "Connection-Close: close \x0D\x0A\x0D\x0A"
s+= soapBody.to_s
log("*****sending " +key+ " ******")
log(s.to_s)
conn_.Send(s.to_s)
end
RemoteKey("AAAAAwAAHFoAAAAWAw==")