以前有一个教程用于安装imapsync,但现在当我运行以下命令时:
aptitude install imapsync 我收到以下错误消息:
Couldn't find any package matching "imapsync". However, the following
packages contain "imapsync" in their description:
imapcopy imapcopy:i386
Couldn't find any package matching "imapsync". However, the following
packages contain "imapsync" in their description:
imapcopy imapcopy:i386
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.用来单词的命令。那么,为什么会发生这种情况,我该如何解决呢?
我有Ubuntu 14.04 LTS,64位。
发布于 2015-01-20 14:01:05
包imapsync已经不在存储库中了。您可以使用imapcopy代替。
发布于 2015-01-20 14:01:41
你确定以前起作用了吗?根据其wiki.ubuntuusers页面,它自11.10以来就不在回购中了?
无论如何,为了建造它:
安装依赖关系:
sudo apt-get install build-essential devscripts debhelper cdbs libdigest-hmac-perl libterm-readkey-perl libio-socket-ssl-perl libdate-manip-perl libmail-imapclient-perl 创建tmp目录:
mkdir ~/tmp; cd ~/tmp 下载:资料来源
dget -xu http://snapshot.debian.org/archive/debian/20100707T160604Z/pool/main/i/imapsync/imapsync_1.315%2Bdfsg-1.dsc
cd imapsync-1.315+dfsg 修改:在第3行的asteriks *后面添加rebuild:
dch -l +local
* rebuild汇编:
dpkg-buildpackage -us -uc 并安装:
sudo dpkg -i ../imapsync_1.315+dfsg-1+local1_all.deb
apt-get -f install 这是在Ubuntu14.10上实现的。参考资料:http://wiki.ubuntuusers.de/imapsync(德语)
https://askubuntu.com/questions/575776
复制相似问题