Hello, I am new to linux and it is great so far. But I am having one problem, with my built in camera. The laptop that I am using is Lenovo Y700-15ISK, and operating system POP!_OS 18.04 LTS. The OS does not recognize my camera, so when I run apps like cheese and guvcview, I get message "no device found". To solve this problem, I have tried following:
installed following packages:
Code:
sudo apt-get install libsbigudrv2 libsbigudrv0
run these commands:
Code:
sudo modprobe -r uvcvideo && sudo modprobe uvcvideo
I was missing my /dev/video* folder so I made one with following commands:
Code:
sudo mknod /dev/video0 c 81 0
sudo chown root:video /dev/video0
sudo chmod 660 /dev/video0
Found on internet that installing cheese or guvcview and then restarting laptop solved problem for some people.
When I go to bios, I don't have I/O port access (saw on internet that you need to enable intergrated camera) so do not know how to do that.
Running hwinfo --usb gives me:
Code:
03: USB 00.0: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: 4QxB.l148Ao7nQK1
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0
SysFS BusID: 1-11:1.0
Hardware Class: bluetooth
Model: "Intel Bluetooth Device"
Hotplug: USB
Vendor: usb 0x8087 "Intel Corp."
Device: usb 0x0a2a
Revision: "0.01"
Driver: "btusb"
Driver Modules: "btusb"
Speed: 12 Mbps
Module Alias: "usb:v8087p0A2Ad0001dcE0dsc01dp01icE0isc01ip01in00"
Driver Info #0:
Driver Status: btusb is active
Driver Activation Cmd: "modprobe btusb"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #4 (Hub)
04: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0
SysFS BusID: 1-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.04"
Serial ID: "0000:00:14.0"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
06: USB 00.0: 10503 USB Mouse
[Created at usb.122]
Unique ID: ADDn.l4BrjS21SG8
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0
SysFS BusID: 1-1:1.0
Hardware Class: mouse
Model: "Logitech M90/M100 Optical Mouse"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc05a "M90/M100 Optical Mouse"
Revision: "63.00"
Compatible to: int 0x0210 0x0023
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/mice (/dev/input/mouse1)
Device Files: /dev/input/mice, /dev/input/mouse1, /dev/input/event8, /dev/input/by-id/usb-Logitech_USB_Optical_Mouse-event-mouse, /dev/input/by-path/pci-0000:00:14.0-usb-0:1:1.0-event-mouse, /dev/input/by-id/usb-Logitech_USB_Optical_Mouse-mouse, /dev/input/by-path/pci-0000:00:14.0-usb-0:1:1.0-mouse
Device Number: char 13:63 (char 13:33)
Speed: 1.5 Mbps
Module Alias: "usb:v046DpC05Ad6300dc00dsc00dp00ic03isc01ip02in00"
Driver Info #0:
Buttons: 3
Wheels: 2
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #4 (Hub)
07: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.xYNhIwdOaa6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0
SysFS BusID: 2-0:1.0
Hardware Class: hub
Model: "Linux Foundation 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "5.04"
Serial ID: "0000:00:14.0"
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Running lsusb:
Code:
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 8087:0a2a Intel Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
I also searched for camera driver, but it is only for Windows. Any help?