Ubuntu 17.10의 nvidia 드라이버에 버그가 발생한 것 같습니다.
를 사용하여 nvidia-384를 제거하면 sudo apt remove nvidia*
colord가 내 모니터를 감지할 수 없는 것 같습니다.
nvidia-384를 다시 설치했는데 다시 설치하려고 할 때 다음 오류가 발생했습니다.
dpkg: error: version '-' has bad syntax: revision number is empty
이것이 무엇을 의미하는지 잘 모르겠지만 설치 중 터미널의 일부는 다음과 같습니다.
update-alternatives: using /usr/share/nvidia-384/glamor.conf to provide /usr/share/X11/xorg.conf.d/glamoregl.conf (glamor_conf) in auto mode
dpkg: error: version '-' has bad syntax: revision number is empty
update-initramfs: deferring update (trigger activated)
INFO:Enable nvidia-384
며칠 전 17.10을 다시 포맷한 후 해당 오류가 발생한 것은 이번이 두 번째입니다. 'colormgr get-devices'는 장치를 반환하지 않습니다.
또한 'colormgr create-device D2757 임시 디스플레이'는 다음을 반환합니다.
could not check org.freedesktop.color-manager.create-device for auth: GDBus.Error:org.freedesktop.PolicyKit1.Error.NotAuthorized: Only trusted callers (e.g. uid 0 or an action owner) can use CheckAuthorization() for subjects belonging to other identities
이 문제를 해결할 수 있는 것은 여기까지입니다. 더 이상 문제를 해결할 능력이 없습니다.
답변1
Nvidia 드라이버를 제거할 때 --purge 옵션을 사용해 보셨나요? 또한 구성 파일도 삭제됩니다. 작동하지 않으면 다음을 시도해 볼 수 있습니다.
sudo apt-get install lightdm
sudo dpkg-reconfigure gdm
다른 포스팅에서 말했듯이
답변2
같은 오류가 발생했는데 "nvidia-384-dev"를 설치하면 문제가 해결되는 것 같았습니다... (종속성에 문제가 있는 것일 수도 있습니다.)
sudo apt install nvidia-384-dev
sudo apt install --reinstall nvidia-384
답변3
Nvidia 드라이버에서도 동일한 문제가 발생했습니다. 제 경우에는 xanmod
지원되는 Nvidia 드라이버 없이 커널을 설치했습니다 .
sudo apt install nvidia-340
, sudo apt install -f
, sudo ubuntu-drivers autoinstall
명령 실행 중에 다음이 발생합니다.
Setting up nvidia-340 (340.108-0ubuntu0.19.10.1) ...
dpkg: error: version '-' has bad syntax: revision number is empty
dpkg: error: version '-' has bad syntax: revision number is empty
dpkg: error: version '-' has bad syntax: revision number is empty
dpkg: error: version '-' has bad syntax: revision number is empty
update-initramfs: deferring update (trigger activated)
.......
Building initial module for 5.5.4-xanmod3
ERROR (dkms apport): kernel package linux-headers-5.5.4-xanmod3 is not
supported
Error! Bad return status for module build on kernel: 5.5.4-xanmod3 (x8
6_64)
Consult /var/lib/dkms/nvidia-340/340.108/build/make.log for more infor
mation.
dpkg: error processing package nvidia-340 (--configure):
installed nvidia-340 package post-installation script subprocess retu
rned error exit status 10
이 문제를 해결하기 위해 지원되는 커널을 설치 4.19.100-xanmod48
하고 지원되지 않는 커널을 제거했습니다.
sudo apt install linux*4.19.100-xanmod48
sudo apt remove --purge *5.5.4-xanmod3*
따라서 귀하의 경우 이전 버전의 nvidia 호환 커널을 설치하려고 시도할 수 있으며 OS로 부팅되면 업그레이드 시 지원되지 않는 새로 설치된 커널을 제거하십시오.