Something weird has happened to the camera in my PC

  • Thread starter Thread starter billtodd
  • Start date Start date
  • Tags Tags
    Camera
AI Thread Summary
A user reported an issue with their GPlus camera connected to a PC, where the camera's light remained on after inserting a CD into a Blu-Ray player, and the on/off button was ineffective. Suggestions included checking camera settings and using Linux, but the user expressed limitations due to their OS. Discussions shifted to experiences with Linux, particularly Ubuntu, highlighting its command line interface (CLI) advantages over Windows, such as command history and process automation. A retired programmer shared insights on using Linux effectively, including the power of piping commands and the utility of the 'find' command for file management. The conversation also touched on a separate user's camera malfunction, which resulted in a psychedelic effect, leading to IT recommending a replacement. Additional troubleshooting advice included using Device Manager to uninstall and reinstall the camera and Blu-Ray player.
billtodd
Messages
136
Reaction score
33
I entered a CD to my Blu-Ray and the camera's light (signaling if it's on or off) was sent on, and it seems I can't turn it off with the on/off button.
Unless of course I disconnect it from the PC.

It's a simple GPlus camera, I guess made from china.... :oldbiggrin:
 
Computer science news on Phys.org
I'm not sure what exactly you mean with "on/off" button but there must be some camera controls within settings. Unfortunately I'm using *Linux so that's the extent of help I can provide right now.
 
sbrothy said:
I'm not sure what exactly you mean with "on/off" button but there must be some camera controls within settings. Unfortunately I'm using *Linux so that's the extent of help I can provide right now.
You actually have a pc which is solely run by a linux OS?
My experience of Linux is with Ubuntu and I can't recommend it to anyone.
 
billtodd said:
You actually have a pc which is solely run by a linux OS?
My experience of Linux is with Ubuntu and I can't recommend it to anyone.
I’m a retired programmer, I have no problems with it. In fact I like the complete control I have the from the command line interface. But it may not be for everyone. At one point I even (masochistically) ran the developer version for the occasional challenge when something obscure broke and I’d have to fix it with no clues. That became a little much though.

In my opinion, Ubuntu have matured to the point where it’s almost like Windows, apart from the different suite of software (which on the other hand is free). I’ve even managed to run FruityLoops using Wine.
 
  • Like
Likes FactChecker
sbrothy said:
I’m a retired programmer, I have no problems with it. In fact I like the complete control I have the from the command line interface. But it may not be for everyone.
People who have never programmed on Unix/Linux machines can not appreciate the huge benefits of their command line. For instance, using the history file to record every command and have reliable, repeatable processes is a capability that is long gone from Windows.
 
FactChecker said:
People who have never programmed on Unix/Linux machines can not appreciate the huge benefits of their command line. For instance, using the history file to record every command and have reliable, repeatable processes is a capability that is long gone from Windows.

Yeah. Linux's CLI is simply a ton of small programs all doing one specific task really well. In this context the pipe (|) command is ingenius. Piping output from one program to the next is nothing short of brilliant, a couple of simple examples but the sky is the limit:

history | grep sudo | less
apropos internet | less

Also, find is a stroke of brilliance:

find . -type f -name "*.txt" -exec mv {} ~/{}_backup \;

When I for worked for Maersk Data (now IBM), a system admin was told to backup all files between two specific dates. I was then told to feed them to a program, which was simply a matter of moving them to a folder where a program would then process them. I wrote a "simple" find command to find the files matching the date interval and moving them to the folder.

The sysadmin came back with somewhat of a smirk on his face and told my boss (not me, like a good coworker might) that my "command didn't work". I told my boss, with complete confidence, that if it didn't work then they effed something up. His face cracked into a smile, fetched a jester's hat (complete with bells and everything!) standing on one of my coworker's table (12 man offices. This jester's hat I learned there and then was an internal joke which got placed on the table of the latest person to do something stupid. So, understandably, he was happy to get it out of his office!).

When we entered the other office he led me to the sysadmin who in the meantime had returned to his place and we proceeded to find the explanation:

The i.... had copied the files (giving them all new dates) instead of packaging them using a zip-tool or similar preserving their dates. So a bunch of containers somewhere had in effect "vanished" in thin air!

My boss then dumped the hat on the sysadmin's table, waved to the boss of that office and dragged me back to our own office. He was beaming for the rest of that day. Pretty harsh environment. :)
 
Last edited:
  • Like
Likes FactChecker
billtodd said:
I entered a CD to my Blu-Ray and the camera's light (signaling if it's on or off) was sent on, and it seems I can't turn it off with the on/off button.
Unless of course I disconnect it from the PC.

It's a simple GPlus camera, I guess made from china.... :oldbiggrin:
My TEAMs camera messed up a while ago, creating a psychedelic effect.

I went from this.


1717674794672.png


To this

1717674880944.png


I contacted IT who sort this stuff and was curious about the effect.

ME: Do you know what's wrong with it?

I.T: Yes. You need a new camera.
 
billtodd said:
I entered a CD to my Blu-Ray and the camera's light (signaling if it's on or off) was sent on, and it seems I can't turn it off with the on/off button.
Unless of course I disconnect it from the PC.

It's a simple GPlus camera, I guess made from china.... :oldbiggrin:
Maybe try the Device Manager; uninstall and reinstall?
 
WWGD said:
Maybe try the Device Manager; uninstall and reinstall?
Both the camera and the Blu-Ray player.
 

Similar threads

Replies
54
Views
7K
Replies
7
Views
2K
Replies
2
Views
3K
Replies
8
Views
1K
Replies
6
Views
8K
Replies
4
Views
3K
Back
Top