6

I run Ubuntu 22.04 on a MacBook Air and the internal webcam does not work. I tried following this link but it worked at first (I could see the webcam working) and then it stopped again. I tried going through the instructions above again but with no luck.

Is there any way I can fix this? Thanks!

VanPiro
  • 119

4 Answers4

3

Have you first installed the driver from Apple AppleUSBVideoSupport? I have found it here (at the very end) as attachment.

Download the archive, extract it.

sudo apt install isight-firmware-tools

when prompted select AppleUSBVideoSupport path

(if you need to do that again, first purge: sudo apt-get --purge remove isight-firmware-tools)

Have you followed the latest instructions from here? The ones you followed for 18.04 might be outdated.

git clone https://github.com/patjak/facetimehd-firmware.git

enter the facetime-firmware folder and do:

make

sudo make install

reboot

The script for ubuntu (https://github.com/patjak/facetimehd/wiki/Installation) didn't work for me in Kubuntu 22.04, sept. 2022, Macbook Air ca. 2013: the above did.

Cheese didn't work. Kamoso did.

UPDATE:

As the OP said, guvcview also works (present in Ubuntu repos), and it looks more advanced. Video recording is much better than Kamoso's on this machine.

Webcamoid is a camera software that did not worked here either.


Update after upgrade to Kubuntu 22.10, plasma 5.25:

The solution above stopped working.

cipricus
  • 4,066
  • 4
  • 47
  • 106
0

After converting my 2017 Macbook air to Ubuntu 22.04, I was able to install the driver using sudo apt install isight-firmware-tools, and I correctly entered the path to the AppleUSBVideoSupport path. I was able to follow the "new" instructions suggested here on this post, but only in combination with other older instructions as posted by the original person who asked the question. I'm not sure how it worked, but it did somehow. But it would be good to have a definitive and comprehensive procedure.

0

I was having problems with cheese crashing on a fresh install of ubuntu 22.04 and discovered at ubuntu software center that there is a snap store's cheese. After removing the distribution one and tried the snap store one it worked.

-1

I found this workaround here that allows you to use your Android phone as an external camera via WiFi (assuming your phone and computer are connected to the same network).

Briefly:

  1. Download the DroidCam app on your android device via the Play Store, here
  2. Install adb on your Ubuntu machine via the following command

sudo apt install adb

  1. Follow the instructions to install the DroidCam Linux client on your computer
  2. Start droidcam client from the Gnome launcher menu or via the Terminal
  3. On your phone open DroidCam app and follow the instructions (you'll see the phone IP address and you'll have to input that on DroidCam client side)

Done, it works for now! Hope this helps

VanPiro
  • 119