I have a Dell Latitude 7640. I am running on this Laptop Ubuntu 23.04 and Windows 11. So the problem is, that Windows does find my integrated camera, but when I open cheese in Ubuntu, then it does say "No device found". I also tried to find my camera in terminal with couple of commands but nothing seems to recognize a webcam. What can I do?
Edit:
I can not see any camera devices, when I run sudo journalctl -b 0
After typing this command sudo lshw -C video
I get this output:
*-display
Beschreibung: VGA compatible controller
Produkt: Raptor Lake-P [Iris Xe Graphics]
Hersteller: Intel Corporation
Physische ID: 2
Bus-Informationen: pci@0000:00:02.0
Logischer Name: /dev/fb0
Version: 04
Breite: 64 bits
Takt: 33MHz
Fähigkeiten: pciexpress msi pm vga_controller bus_master cap_list rom fb
Konfiguration: depth=32 driver=i915 latency=0 mode=1920x1200 resolution=1920,1200 visual=truecolor xres=1920 yres=1200
Ressourcen: iomemory:600-5ff iomemory:400-3ff irq:201 memory:6055000000-6055ffffff memory:4000000000-400fffffff ioport:3000(Größe=64) memory:c0000-dffff memory:4010000000-4016ffffff memory:4020000000-40ffffffff
With this command ls -l /dev/vid*;id
I get:
crw-rw----+ 1 root video 81, 0 Mai 30 10:07 /dev/video0
uid=1000(nathan) gid=1000(nathan) Gruppen=1000(nathan),4(adm),24(cdrom),27(sudo),30(dip),46(plugdev),100(users),118(lpadmin)
sudo journalctl -b 0
will let you page through the logs. Also,sudo lshw -C video
. Is it a permission/group issue?ls -l /dev/vid*;id
. Please [edit] your post to new information, properly formatted. Information added via comments is hard for you to format, hard for us to read and ignored by future readers (who have better answers). Please don't use Add Comment, since that's our way to help you improve your question. All facts about your system and problem should go in the Question. Help us help you. – waltinator May 30 '23 at 00:36sudo lshw -C Video
will not show the camera. Just runsudo lshw
and look for the camera in the results, or you can usesudo lshw | grep Webcam
– Raffles Jun 08 '23 at 16:18