Create a Cheap and Effective Monitoring System with Ubuntu Linux and webcam_server
Create a Cheap and Effective Monitoring System with Ubuntu Linux and webcam_server
Mar 8, 2011, 14 :35 UTC (0 Talkback[s]) (1392 reads)
(Other stories by Jack Wallen)
"On a tight budget, but want to monitor your business, home, or maybe just your baby's room? Using Linux and the webcam_server project, you can set up a poor man's monitoring solution quickly and easily.
"Setting up a system to broadcast pics or video from a Webcam may sound like quite a challenge. Believe it or not, it's really fairly easy to get up and running. All you need is a Linux machine (In this case, Ubuntu), a Web server (Apache), a webcam, and a little tool called webcam_server. Once you are done, you can point that Webcam to your target and then view it from within a browser. If your machine housing the server is available to the outside world, you can share that link or view it from anywhere you have access to a Web browser, including your mobile device!
"Let's get this up and running."
Complete Story
Related Stories:
Secure Video Surveillance: Camera Shy(Mar 02, 2011)
Using Linux ZoneMinder For Video Surveillance(Jan 11, 2011)
Web Cam Setup In Debian(Dec 02, 2010)
5 of the Best Free Linux Webcam Tools(Nov 08, 2010)
12:16 PM | Labels: Cheap, Create, Effective, Linux, Monitoring, System, Ubuntu, webcamserver | 0 Comments
Deep System Discovery on your Linux Server With /proc
Deep System Discovery on your Linux Server With /proc
Dec 10, 2010, 19 :34 UTC (0 Talkback[s]) (181 reads)
(Other stories by Juliet Kemp)
"/proc is a virtual filesystem generated at boot and updated regularly by the kernel. With /proc you can investigate exactly what hardware your Linux kernel sees, what processes it is running, boot options, and also manipulate kernel events.
"With Linux, everything is a file ? and that includes devices, processes, and system information. /proc allows you to take a look at these 'files'. /proc (short for "process filesystem") isn't 'real'; it's a virtual filesystem, generated at boot and updated regularly by the kernel. Instead of storing information on disk, when you look at something in /proc, it fetches the information from the kernel to output as a file. This is great both for system communication (utilities can operate in userspace, rather than in kernel space), and for investigating your system's innards.
"/proc and processes
"If you type ls /proc, you'll see a set of numbered directories. These are your processes: one directory per process ID. Look at your process list with ps -A, and pick one to investigate. (Note that unless you have root/sudo access, you're best off choosing a process that you own.) Here's a sample process from my ps output:"
Complete Story
Related Stories:
Linux Server Troubleshooting With strace(Nov 22, 2010)
Byobu: Like Screen, but Better(Oct 05, 2010)
Open Source Software Shortcut -- Escaping SSH With '~'(Sep 28, 2010)
Single vs. Double Quotes in Bash(Aug 26, 2010)
Linux Multi-Distro Package Manager Cheatsheet (Jul 09, 2010)
4:35 AM | Labels: Discovery, Linux, Server, System | 0 Comments