Results 1 to 8 of 8

Thread: Webcam not working in Ubuntu 14.04 32-bit

  1. #1
    Join Date
    Apr 2014
    Beans
    2

    Webcam not working in Ubuntu 14.04 32-bit

    Hi everyone,

    I have recently acquired an older laptop from a friend of mine. I have installed Ubuntu 14.04, however, the webcam does not work and finding additional drivers is proving difficult.

    I followed the webcam page on the Ubuntu wiki just to make sure I wasnt being stupid. However Cheese and vlc cannot find the webcam.

    There are two "video" devices listed in /dev/video*, but neither option works

    It is a built in webcam. lspci returns the following:
    00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 0c)
    00:01.0 PCI bridge: Intel Corporation Mobile PM965/GM965/GL960 PCI Express Root Port (rev 0c)
    00:1a.0 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 03)
    00:1c.2 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 3 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
    00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M-E) LPC Interface Controller (rev 03)
    00:1f.1 IDE interface: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03)
    00:1f.2 RAID bus controller: Intel Corporation 82801 Mobile SATA Controller [RAID mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
    01:00.0 VGA compatible controller: NVIDIA Corporation G84M [GeForce 8600M GT] (rev a1)
    02:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8055 PCI-E Gigabit Ethernet Controller (rev 13)
    06:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02)
    08:03.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller
    08:03.1 FireWire (IEEE 1394): Texas Instruments PCIxx12 OHCI Compliant IEEE 1394 Host Controller
    08:03.2 Mass storage controller: Texas Instruments 5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD)
    08:04.0 Multimedia controller: Philips Semiconductors SAA7131/SAA7133/SAA7135 Video Broadcast Decoder (rev d1)

    The model of the laptop is a Sony Vaio PCG-8Y2M. It also has alot of other buttons etc that dont work but for now just getting the webcam to work would be a great start.

    It would also be great to get this working as I plan to do some gaming on linux videos for youtube and I may need to use the webcam at some stage.

    Thanks,

    James

  2. #2
    Join Date
    Apr 2014
    Beans
    2

    Re: Webcam not working in Ubuntu 14.04 32-bit

    To add an extra layer of confusion the webcam works in skype but in nothing else.

  3. #3
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: Webcam not working in Ubuntu 14.04 32-bit

    Sony makes some of the least Linux-compatible equipment in my experience. Your comment about the buttons is another piece of evidence for that claim.

    If I were you, I'd just buy an outboard USB webcam and use that. Logitech cameras are well supported in Linux. I have a 9000 which is discontinued in favor of the C920, but that may be overkill for your application.

    The fact that the Sony works in Skype probably has to do with the fact that Skype is distributed as a proprietary binary blob and likely has an appropriate driver built in. The last time I looked at Skype it was compiled "statically" meaning it contained all the code it needed and didn't use the Linux libraries and drivers on the machine. That's pretty much the way most proprietary software for Linux is configured.

    I also found this suggestion for a way to build a driver for Sony webcams in Linux. You need to compile it from source by entering these commands at a terminal (adapted from this article):.
    Code:
    cd ~
    mkdir build
    cd build
    sudo apt-get install libglib2.0-dev libusb-dev build-essential gcc automake mercurial
    hg clone http://bitbucket.org/ahixon/r5u87x/
    cd r5u87x
    make
    sudo make install
    sudo r5u87x-loader --reload
    There's no mention about which webcams it supports, but the implication from the article is that it supports any that use the Ricoh R5U87x chipsets.
    Last edited by SeijiSensei; April 26th, 2014 at 06:01 PM.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

  4. #4
    Join Date
    May 2006
    Location
    Milwaukee,WI
    Beans
    6,280
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: Webcam not working in Ubuntu 14.04 32-bit

    i have the C260 and C920 and both work out of the box. C920 is the best, it has a built in hardware encoder for 1080p video.

  5. #5
    Join Date
    Mar 2015
    Beans
    1

    Re: Webcam not working in Ubuntu 14.04 32-bit

    Thank you very much, it really worked after trying so many methods! I have a Sony Vaio VGN-FZ240E and Ubuntu 14.04 64 Bits, and my web can was not recognized after reinstalling Ubuntu 14.04. Now it works. I hope other users can see this. I refer to the following solution by SeijiSensei; April 26th, 2014 at 05:01 PM.:


    cd ~
    mkdir build
    cd build
    sudo apt-get install libglib2.0-dev libusb-dev build-essential gcc automake mercurial
    hg clone http://bitbucket.org/ahixon/r5u87x/
    cd r5u87x
    make
    sudo make install
    sudo r5u87x-loader --reload
    Last edited by juan-valeroch; March 28th, 2015 at 05:22 PM.

  6. #6
    Join Date
    Jul 2011
    Beans
    2

    Re: Webcam not working in Ubuntu 14.04 32-bit

    Error: Failed to find any supported webcams.
    Get this response after trying the above on my sony vaio pro 13 svp13219PGB
    Any one got an idea how to get the webcam working on one of these, or what webcam it actually contains
    Im running ubuntu 14.04 lts if that makes any difference???

    please help

  7. #7
    Join Date
    Oct 2009
    Location
    Reykjavík, Ísland
    Beans
    13,647
    Distro
    Xubuntu

    Re: Webcam not working in Ubuntu 14.04 32-bit

    Yes, it's likely that 14.04 is too old for such new gear. I recommend a fresh install of 15.10 as a first attempt.
    Bringing old hardware back to life. About problems due to upgrading.
    Please visit Quick Links -> Unanswered Posts.
    Don't use this space for a list of your hardware. It only creates false hits in the search engines.

  8. #8
    Join Date
    Jul 2011
    Beans
    2

    Re: Webcam not working in Ubuntu 14.04 32-bit

    Surely its just a matter of adding a repository or some such ? you reallly think this is the best way?

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •