-
Posts
27 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by Jenko22
-
Assuming its the same as we had here, the plastic tubing should unscrew from the cable gland. Then just carefully pull the connectors out of the tube we cut the threaded connector off the tube to use screwing the fibre into the back of the fibre patch panel.
-
Power Laces- the Auto lacing shoe At least some of the technology from the film is here
-
another latecomer here, does anyone have an invite going spare?
-
another vote for WRT54GL. Currently have two of them one has been in near continous use for 5 years minus powercuts and house moves and never had a problem
-
Hi I'm hoping someone can help me solve a problem I'm having with a script I'm running in nagios. #!/bin/bash ## Echo stored procedure name and extension OUTPUT=$(echo Check_Phone_Last_Activity $1 > my.sql | cat my.sql | isql -b -w -v SWYX_Db user pass | awk 'NR==12' | sed -e 's/<.*>//g') echo Last Activity: "$OUTPUT" if [[ "$OUTPUT" < "120" ]]; then exit 0 else exit 2 fi That's the bash script I'm calling as a service. It runs a stored procedure given an extension as a variable and returns the time in seconds since the phone last communicated with the server. The part that's causing trouble is the output, running from the command line i get the desired result e.g Last Activity: 12 however when run in nagios the status information just reads Last Activity and doesn't seem to receive the time in seconds. The if statement is used to determine if the connection has been lost, if the time is less than 120 seconds then it exits with a return code of 0 (ok) or if its longer return code of 2 (critical) this also seems to have no affect in nagios. I'm sure there is something staring me in the face but i dont have much experience with nagios or bash scripting. So any ideas or suggestions are welcome.
-
Student Loans Company Student Finance No idea on the overseas study part, but I imagine if you gave them a call they'd be able to give an answer
-
Free Audio Extractor, Extract audio from video, Convert AVI to MP3, WMV to MP3, MPEG to WAV AC3 was the most obvious one that i came across, also viruadub lets you separate the audio i think
-
How about John The Ripper i'm not sure if that can be run against a .rar
-
Ive not used it so can't comment on it but i came across rarcrack
-
How to prevent password being saved on web?
Jenko22 replied to duncane's topic in How do you do....it?
Just googled "bank prevent stored passwords" on the off chance, this thread is number one. but This looks like it there is a link there with a longer discussion on the same idea. -
i've been using get_iplayer recently. Uses the streams they've set up for the iphone. Theres a plugin for MythTV as well which is nice MythVodka
-
Ive recently done the same thing, I found this thread helpful Ubuntu Forums I followed that and its been working perfectly since.
-
Awesome, never heard of goose neck cables which is probably why all my searches proved useless. problem solved. thanks
-
I'm after a short USB extension that holds its shape, you got them with USB wireless dongles and you could bend the cable to point them in the air. I haven't had any luck searching for one online so far, thought I'd ask here on the off chance
-
Windows Mobile Owners
Jenko22 replied to jc1875's topic in Windows Mobile Owners's Windows Mobile Owners Topics
HTC S730 (Wings) here -
Ive been looking at the Samsung LE-40M87BDX most reviews seem to think quite highly of it http://www.hdtvorg.co.uk
-
XDA-Developers I Just had a search and couldn't see any solutions, but those are the people most likely to know if it can be done. Also some quite useful things about the S730 on there I sorted out a couple of things that were annoying me with the phone thanks to that forum.
- 6 replies
-
- 1
-
-
- drive mapping
- smartphone
-
(and 3 more)
Tagged with:
-
I searched but couldn't see anything that helped. I've set up a web server in a virtual machine and all is working apart from the address its using; 172.16.133.129 Im running VMware server on a Ubuntu machine at the moment. In the past when running on Windows it was assigned an address from the DHCP server in use on the network e.g 192.168.2.XXX I've tried Bridged networking which should of worked I thought but so far I cant get this machine to pick up a address which makes it reachable from other machines on the network. Anyone have any suggestions of where to look or what to do as I'm not sure how to progress *Edit* Solved. VMware was bridging eth0 when i was using eth1 $ sudo vmware-config-network.pl problem solved.
-
Downloading moodle to a LAMP server
Jenko22 replied to Jenko22's topic in Virtual Learning Platforms
Excellent thanks for the quick response Thought it was set during the install but it must not of picked it up. -
I am currently setting up a Ubuntu LAMP server to run moodle, Ubuntu is now installed and working and I see the apache test page if I browse to the IP of the server. However I’m having trouble downloading moodle I’m trying sudo wget [url]http://download.moodle.org/stable18/moodle-latest-18.tgz[/url] I edited /etc/resolv.conf and added my dns servers when I try wget it seems to resolve the address then I get the following connecting to download.moodle.org¦70.84.5.50¦:80 Connection timed out We run a proxy server so it should be 8080 but I’m not sure how to change that. Could anyone point me in the right direction?
-
Thanks for those i had a look at Package Log Monitor and also managed to track down Package Analyser which is exactly what we're looking for. For anyone else who's interested Package Analyser Monitor
-
Just tested this on a copy of some of the files just seems to empty the file. Cant quite get my head around what its doing so not sure where its going wrong.
-
A brief background; We are running an RM CC3 network and have a directory containing an .ini relevant to each machine on the network with a line for each .msi allocated and its installation status (i.e. Installed,Install_pending,install_failed) When an install fails it needs to be deleted from the .ini so the machine can retry the install on the next reboot, searching and deleting every install_failed from these files can be time consuming if there is a problem. I spent a morning in visual basic trying to automate it a bit and made some progress but am now hoping someone with more knowledge can help. I have four command buttons which - create a list box with every .ini from a specified directory. - read the contents of an .ini file into a separate list box - search that list box for any line containing INSTALL_FAILED and remove it - saves the modified list box back to the .ini This works to an extent but obviously requires you to press 3 buttons for every .ini file. Could anyone help me streamline this to run through every file with one click. I've attached the code if anyone thinks they can help, sorry for the length of this code.txt
