3

I have Ubuntu 14.04 installed on Surface Pro 3. The integrated cameras/webcams are not working. Applications that need access to the cameras cannot detect them and throw errors that no supported device has been found.

How can I get the camera of this device working on Ubuntu?

Zanna
  • 72,312
usman
  • 81

1 Answers1

5

OK, so after a lot of hit and trial, I narrowed down the problem to the native uvc driver not supporting the integrated webcams. The solution is to build the updated drivers from source. Open a terminal and do the following:

git clone git://linuxtv.org/media_build.git
cd media_build
./build
sudo make install 

Restart and you are done :)

Ref:

http://www.ideasonboard.org/uvc/

https://git.linuxtv.org/media_build.git/about/

Charles Green
  • 21,859
usman
  • 81