Dork's port

libudev.so.0: cannot open shared object file: No such file or directory 에러 해결 본문

Linux

libudev.so.0: cannot open shared object file: No such file or directory 에러 해결

Dork94 2018. 10. 1. 22:48

프로그램 설치 도중 아래와 같은 에러가 발생하여 해결 방법을 찾아 보았습니다.



 libudev.so.0: cannot open shared object file: No such file or directory




따라서 검색을 해본 결과 libudeb.so.1을 심볼릭 링크를 걸어서 해결할 수 있더군요!

아래와 같이 입력하시면 됩니다.

$ sudo ln -sf /lib/$(arch)-linux-gnu/libudev.so.1 /lib/$(arch)-linux-gnu/libudev.so.0








참고 : https://askubuntu.com/questions/288821/how-do-i-resolve-a-cannot-open-shared-object-file-libudev-so-0-error

Comments