我已经用Linux预装了一个月的戴尔XPS 13 (9315)。在交付测试之后,我安装了Ubuntu的最新版本(LTS 22.04.1)。从那时起,这台电脑内置的网络摄像头就没有被系统识别出来。在升级之前我已经测试过它了,它起了作用。我如何重新配置它?我已经联系了戴尔的支持部门,没有发现任何身体问题,谢谢。
发布于 2023-05-09 20:54:32
奇怪的是我也有这个问题。奶酪不起作用,谷歌会议也不行。然后我尝试了Zoom,它成功了!然后Google Meet也起了作用。奶酪还是不起作用。
发布于 2023-05-23 17:13:57
嗨,对于使用Ubuntu22.04.2LTS x86_64的戴尔xps 9315来说,使用intel-ipu6软件包是不够的。我还需要手动安装ipu6摄像头的驱动程序。所以这条路适用于我:
sudo add-apt-repository ppa:oem-solutions-group/intel-ipu6
sudo apt update
sudo apt install libcamhal-ipu6ep0
构建驱动程序,我使用dkms,但是有更多的可能性:https://github.com/intel/ipu6-drivers
##install driver using dkms then the driver
# install dkms https from ://github.com/dell/dkms, use the readme
git clone https://github.com/intel/ipu6-drivers
make install # ubuntu
## install ipu6 to load the driver https://github.com/intel/ipu6-drivers#3-build-with-dkms
git clone https://github.com/intel/ipu6-drivers.git
cd ipu6-drivers
git clone https://github.com/intel/ivsc-driver.git
cp -r ivsc-driver/backport-include ivsc-driver/drivers ivsc-driver/include .
rm -rf ivsc-driver
sudo dkms add .
sudo dkms autoinstall ipu6-drivers/0.0.0
reboot
在重新启动后,相机在中工作,相机在启动pc时也会闪烁以进行测试。
https://askubuntu.com/questions/1428961
复制相似问题