Jump to content

twin--turbo

Members
  • Posts

    2,863
  • Joined

  • Last visited

Everything posted by twin--turbo

  1. try firefox
  2. ICMP will probably be blocked by your firewall. Rob
  3. looking at the manual there is a serial/usb RJ45 and some surge protected RJ45's The backups is also an ( or was ) off-line rather than line-interactive UPS. Not ideal for servers unless they are not critical. Rob
  4. Looking again, as the are BACKUPS they are unlikly to have any monitoring/network and jsut have simple signaling.
  5. So two Boxes built ready for production. Now building the Test Box Rob
  6. Note: I built the second box yesterday and had a faf again getting the BIOS to show. to boot freedos fisrt use 9600 Baud , and flash the bios. power off pull the serial cable kill putty connect at 19200 baud, connect cable power on. Bios Should Display. Rob
  7. Not sure such a thing exists. Possibly a RIPE list but I don't think it would be uk specific. But ask RIPE. Rob
  8. What servers as 900Va sounds quite low. If it has a network port it will be for configuration and not signaling which will be via USB with powerchute in control. Depending on the version of powerchute it may be able to have attached agents taht it can tell to shut down. Rob
  9. have a loog at bginfo BgInfo may do what you want.
  10. Are you using their downloader, it's more reliable. Rob
  11. The way things go.. That will be in the shops for christmass 2013 for £150 And in the shops for christmass 2014 for £15.. And the latter broken by january 2015. COOL.
  12. When we were an RBC school we never used the filtering, we always did it in house with a squid/squidguard filter. that way we could adapt and react quickly when needed. The RBC actualy has some code credited for squid (long time ago) and way way back I was asked (with a few other techs) by the fledgling RBC to look at deploying squid in some primary schools , we fired out some boxes to them with squid on old PC's connected to their ISDN2.... Couple of years later CrashPilots were being rolled out. Filtering is impossible to get even close to 100% right , especialy as ISP where each customer may have very different requirements. Even as an I.T. Support department it's tricky keeping everyone happy ( or unhappy ) all the time. what seriously does not help is staff allowing kids to play java games on dodgy websites..... Rob
  13. If it was a Yank Muscle... There is only one for me... 1969 Dodge Charge RT440 hemi. Or A dodge Daytona.
  14. My TDCI won't even spit the codes usualy as I have the Twin ECU.... Getting sold anyway now that I have a Proper engine facing the right way Rob
  15. I would not trust the DASH codes. Sounds like they probably replaced the EPT (or equiv). Rob Instrument Cluster Self-Diagnostic Mode - www.FordWiki.co.uk
  16. We have Elmo L1-ex, Think they have passthrough. We tested them against AVER and the AVER software was just too clunky and difficult to give to staff. Rob
  17. Because they don't have test data, and no car apart from possibly volvo had ISOfix. A basic Britax or similar seat should fit any car ( which is a bonus if you need to put it in a family/friends car ) Don't get sucked into the Designer brands. Rob
  18. If you have low voltage I would not trust any error code to be genuine until a stable stable voltage of ~12.7 or above is achieved. what car is it and who told you it was error 0209 as it's rather unusual if it's a stock OBD2 code. and "misfunctioning solenoid that measures the exhaust fumes" A solenoid is an actuator , not a sensor. If that was their exact words then they don't know what they are talking about. TT
  19. I have team viewer client on the virtual XP machine. So I can access my systems from anywhere on a PC/Tablet... Need to get a physical cable from the Mythbox back to the router though as I cant's WOL it in order to set new recordings when it's off either have to wait for it to power on for a scheduled recording or go and press the button. TT
  20. No, and if I were the person that set up the website I would be very worried, and if I were the person in charge of data protection and child protection I would be asking some massivly searching questions! Rob
  21. I forgot the iMac... Kids use it to go on Cbeebies website ( when Safari is not crashing ).. and the Original XBOX Crystal.
  22. So what do you run at home... 1) ESXi server on quad core old desktop with 8gb Ram. a) XP test VM b) My old Suse Server now virtualised c) VortexBox Media Server for Music (Super!!!!) d) Test XP box e) Test Linux Box 2) Old Acer X2 AMD, Old ubuntu Desktop 3) Old acer X2 AMD . Runing Myth TV for PVR Recording (This is GR8!) 4) Old Dell D520 laptop. My laptop running Ubuntu 5) Old Dell D505 Laptop. Wifes ubuntu Laptop. 6) Old Dell D505 laptop. Eldest son (8) XP laptop. 7) I also have a windows laptop for the rare ocasion I need to read car diagnostics.. All routed on a Cisco 877W router.. Mythtv has been through 4 HW builds the first was a massive desktop case running an old P4.. Noisy but did the job Then had a super nice little Acer Veriton, but that died then a Dell SX280... But that died.. The Acer T180 has run for 18 months now. Standard pedastal but it does a good job.. Mainly recording Kids TV! Rob
  23. tried to do that just as I was leaving but it seemd to fail.. May haveanother go on Monday ... However lateral thinking may have solved it. select ticket,sum(type) as utp from glpi_tickets_users group by ticket; Gets me a sum of the user type per ticket. So a ticket from a user will be "1" a ticket with no user opend by a supporter will be "2" a ticket in progress with a user and supporter will be "3" or more with extra users. So if we wrap that query to find just the "1" select * from ( select ticket,sum(type) as utp from glpi_tickets_users group by ticket) as jobs where utp = 1; returns just the jobs with an end user Job Jobed hopefully. Rob
  24. I know the baisc query. I need to pull out tickets with no type 2 user. SELECT * FROM glpi_tickets_users WHERE TYPE != 2 (or any of the other sugestions) would result in 1900 -- 50 ------- 10 ----- 1 1902 -- 51 ------- 11 ----- 1 1903 -- 55 ------- 11 ----- 1 which is incorrect as tickets 50 & 55 do have a type 2 user. the only result should be 1902 -- 51 ------- 11 ----- 1 as this is the only ticket that does not have a type 2 user. Rob
  25. SQL Query help. We want to auto generate a refreshing webpage to show our NEW un-assigned helpdesk tickets. There is a table in GLPI helpdesk "glpi_tickets_users" this contains a list fo ID's Each ID has a ticket number and a user type ( type 2 semes to be a supporter ) Snippet example ID -- TICKET -- USER -- TYPE 1900 -- 50 ------- 10 ----- 1 1901 -- 50 ------- 05 ----- 2 1902 -- 51 ------- 11 ----- 1 1903 -- 55 ------- 11 ----- 1 1904 -- 55 ------- 04 ----- 2 ticket 50 has 2 users ( 5 and 10) a supporter and a normal user ticket 51 has 1 users ( 11 ) a normal user ticket 55 has 2 users ( 4 and 11) a supporter and a normal user I need an sql query that will pull out just those tickets with no type 2 user ( supporter) My SQL knowledge has deminished considerably over the last 20 years since uni... Anyone help with a query???? Cheers Rob
×
×
  • Create New...