次のコマンドでgetdebをインストールしました
echo "Downloading GetDeb and PlayDeb" &&
wget http://archive.getdeb.net/install_deb/getdeb-repository_0.1-1~getdeb1_all.deb http://archive.getdeb.net/install_deb/playdeb_0.3-1~getdeb1_all.deb &&
echo "Installing GetDeb" &&
sudo dpkg -i getdeb-repository_0.1-1~getdeb1_all.deb &&
echo "Installing PlayDeb" &&
sudo dpkg -i playdeb_0.3-1~getdeb1_all.deb &&
echo "Deleting Downloads" &&
rm -f getdeb-repository_0.1-1~getdeb1_all.deb &&
rm -f playdeb_0.3-1~getdeb1_all.deb
今、シナプティックパッケージマネージャーを開くと、次のエラーが表示され、開きません
E: The value 'trusty-getdeb' is invalid for APT::Default-Release as such a release is not available in the sources
E: _cache->open() failed, please report.
何をすればいいですか?助けてください!!
答え1
これを使用して修正できます:
gksudo gedit /root/.synaptic/synaptic.conf
「trusty」を検索し、それをYour Ubuntu codenameに置き換えました。
次のコマンドを実行すると、Ubuntu のコード名を取得できます。
lsb_release -sc
完了したら、次のコマンドを実行します。
sudo apt-get update
ここで、シナプスを再度実行する必要があります。
ソース:https://answers.launchpad.net/ubuntu/+source/synaptic/+question/213406