com.canonical.unity.webapps
Unity Tweak Tool이 제대로 작동하려면 필요한 패키지를 설치하는 것이 좋습니다
apt-file search
).
com.canonical.unity.webapps.gschema.xml
; 어쩌면 당신은 실행해야 sudo apt-file update
합니까?
com.canonical.unity.webapps
Unity Tweak Tool이 제대로 작동하려면 필요한 패키지를 설치하는 것이 좋습니다
apt-file search
).
com.canonical.unity.webapps.gschema.xml
; 어쩌면 당신은 실행해야 sudo apt-file update
합니까?
답변:
패키지 설치 unity-webapps-service
jackyzy823의 대답을 수행하는 명령 줄 방법 :
mkdir tweak;cd tweak
sudo apt-get download unity-webapps-service
ar xvf *
tar xvf data*
sudo mv usr/share/glib-2.0/schemas/com.canonical.unity.webapps.gschema.xml /usr/share/glib-2.0/schemas/
sudo glib-compile-schemas /usr/share/glib-2.0/schemas/
cd ..; sudo rm -Rf tweak
notify-osd
패키지가 설치되어 있지 않기 때문에이 오류가 발생했습니다 . xfce4-notifyd
대신 사용 하고 있습니다. 그래서 내 수정은 @mchid가 설명한대로 정확하게 notify-osd
대신에 다운로드 했습니다 unity-webapps-service
. 매력처럼 작동합니다.
에 대한 많은 의존성을 다운로드하고 싶지 않기 때문에 이것을위한 까다로운 방법 unity-webapps-service
.
패키지 com.canonical.unity.webapps.gschema.xml
에서 파일을 추출하고 ( http://packages.ubuntu.com/trusty/amd64/unity-webapps-service/filelist 에서 볼 수 있음 ) unity-webapps-service
이 파일을 /usr/share/glib-2.0/schemas/
넣고 마지막으로 sudo glib-compile-schemas /usr/share/glib-2.0/schemas/
작동합니다.
간단한 해결책.
필요한 패키지 만 설치하십시오.
sudo apt-get install unity-webapps-common
The following packages have unmet dependencies: unity-webapps-common : Depends: unity-webapps-service (>= 2.3.8-0ubuntu3) but it is not going to be installed E: Unable to correct problems, you have held broken packages.
시냅틱은 손상된 패키지가 없다고 말합니다.
unity-webapps-common
습니까? OP에 표시된 오류 화면에는 전혀 언급되어 있지 않습니다. 잘 때 당신에게 오는 신비한 지식입니까?
간단하고 효과적인 유형
sudo apt-get install unity-webapps-common unity-webapps-service
터미널에
webapps 서비스 및 webapps 공통 설치에 문제가 없었습니다. 내 정확한 문제는 패키지였습니다
com.canonical.unity.FileLens
누락되었습니다. 나는이 질문의 스크린 샷을 잘못 읽었으며 유니티 webapps 서비스와 webapps 공통이 설치되어 있는데도 unity tweak 도구가 작동하지 않는 이유를 알아내는 데 30 분 이상을 보냈습니다. 마지막으로 스크린 샷에서 언급 한 패키지 대신 위의 패키지가 누락되었음을 알았습니다.
이 오류를 해결하려면 unity-lens-files
패키지를 설치하십시오
sudo apt-get install unity-lens-files
그게 다야. Unity Tweak Tool이 작동합니다! (드디어!)