Debian
永無止境的“執行核心快照的配置掛鉤(如果存在)”
我正在使用帶有 KDE Plasma 的 Debian 9 來工作和娛樂,我只是想安裝 Krita 圖形應用程序。它成為一個嘗試稱為“snap”的新安裝系統的機會。所以我安裝了 snapd 並呼叫了 (as root)
/home/user# snap install krita
。我沒有安裝新程序,而是收到以下消息:
2017-08-09T23:47:17+02:00 INFO snap "core" has bad plugs or slots: core-support-plug (unknown interface) [|] Run configure hook of "core" snap if present
而且
[|] Run configure hook of "core" snap if present
似乎永遠執行:(如何修復這個問題?
更新:
重新執行
/home/user# snap install krita
會帶來另一個問題:error: cannot perform the following tasks: - Setup snap "core" (2462) security profiles (cannot setup seccomp for snap "core": fork/exec /usr/lib/snapd/snap-seccomp: no such file or directory) - Setup snap "core" (2462) security profiles (fork/exec /usr/lib/snapd/snap-seccomp: no such file or directory)
PS:我會送出一個錯誤報告,但是……我真的厭倦了設置和維護另一個登錄名/密碼只是為了報告它。10年前,我可以做到,但現在太多了。如果項目不在 Github 上,我會通過。
根據此錯誤報告評論,如果您同時安裝核心和任何快照,則 snapd 將失敗。
為避免該錯誤,您必須清除並重新安裝 snapd:
# apt purge snapd # apt install snapd
安裝核心卡扣:
# snap install --edge core
安裝你想要的 snap,在本例中為 krita:
# snap install krita