我已经尝试过这个网站上的解决方案https://medium.com/@racter/how-to-install-ubuntu-16-04-on-a-retina-macbook-11-2-74e7779c0e47:
$ cd /etc/local/src
$ git clone https://github.com/patjak/bcwc_pcie.git
$ cd bcwc_pcie/firmware
$ sudo make
$ sudo make install
$ cd ..
$ sudo make
$ sudo install
$ sudo depmod
$ sudo modprobe -r bdc_pci
$ sudo modprobe facetimehd
然而,在第一次之后我得到了以下错误sudo 制作。
Checking dependencies for driver download...
/usr/bin/xzcat
/bin/cpio
Makefile:34: recipe for target 'AppleCameraInterface' failed
make: *** [AppleCameraInterface] Error 1
答案1
更新
固件存储库已移至单独的存储库。现在的流程是
cd /etc/local/src
git clone https://github.com/patjak/bcwc_pcie.git
cd bcwc_pcie/firmware
git clone https://github.com/patjak/facetimehd-firmware
cd facetimehd-firmware
sudo make
sudo make install
cd ../..
sudo make
sudo make install # (Update with make install for 18.04)
sudo depmod
sudo modprobe -r bdc_pci
sudo modprobe facetimehd
答案2
尝试安装 curl。我也遇到了同样的问题,然后我发现这是因为 Ubuntu 18.04 中未默认安装 curl。
sudo apt-get install curl
答案3
可以确认这在 2014 年中期的 Macbook Pro 13 上有效。我的 src 文件夹位于 /usr/local
重启后无法运行。显然需要更新 /etc/modules 文件,但我不知道该输入什么??
编辑:为了使网络摄像头在启动后工作,在终端中:
- sudo nano -w /etc/modules 或 sudo gedit /etc/modules
- 在新行上添加“facetimehd”(不带引号)。
- 保存并重新启动..
答案4
如果仍然出现错误,请尝试以下针对 ubuntu 18.04 的操作,Macbook pro 运行良好
cd /etc/local/src
$ git clone https://github.com/patjak/bcwc_pcie.git
$ cd bcwc_pcie/firmware
$ sudo make
$ sudo make install
$ cd ..
$ sudo make
$ sudo make install (Update with make install for 18.04)
$ sudo depmod
$ sudo modprobe -r bdc_pci
$ sudo modprobe facetimehd