有没有一种方法可以使Software Updater将apt-fast用作后端?


13

我已经在命令行中使用apt-fast一段时间了,并且通过并行下载软件包来享受如何加快升级的速度。

如果Software Updater也可以从apt-fast获得更新/升级下载速度的提升,那就太好了。

Software Updater似乎只是该命令的gui sudo apt-get update && sudo apt-get dist-upgrade,是否有办法将apt-get切换为apt-fast?


会正式推出吗?
fleamour

Answers:


5

对的,这是可能的。您必须为Software Updater(update-manager软件包)编写一个apt-fast后端(在Python中)。看一下Synaptic后端。该后端还调用可执行文件(突触式)。也许只需稍微更改命令行选项就可以了。

将其安装到/usr/lib/pythonX/dist-packages/UpdateManager/backend/YourBackend.py并加载到.../backend/__init__.py文件中(“ get_backend”方法)。


update-manager是否已经具有可以编辑的后端?/usr/lib/python3/dist-packages/UpdateManager/backend__init__.py?
Insperatus

这是后端的初始化方法(使用“ get_backend”方法选择后端)。
拉萨尔

我头顶
恐慌

1

我从Pascal(目标P)获得的这个初始化和析构函数,我还没过时,但是我使用FPC ...但是它的python实现有点困惑。

您是说py呼叫呼叫者来呼叫软件包mananger?只需使用shell os.system调用直接调用它...有时我想知道是谁写的这些东西...

can=object
    coffee=record;
        liquid:array[1..x] of caffeine;
        caffeine:variable;
        sugar:constant;
        creamer:variable;
   end;
nextCan:^can;
prevCan:^can;
init()
drink.can()
throw.can()
destroy()
end;

或类似的东西。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.