有没有软件中心的替代品?

有没有软件中心的替代品?

是否有任何 Ubuntu 软件中心的 GUI 替代品

  • 应用程序加载速度快/启动时间短
  • 快速搜索
  • 重量轻/尺寸小
  • 应用程序购买设施

答案1

是的,Ubuntu 软件中心还有另一个替代品,名为appgrid。它是 Ubuntu 的一个非常轻量级的应用程序中心,它还允许您购买应用程序。您可以使用以下命令在 Ubuntu 中安装它:

sudo add-apt-repository ppa:appgrid/stable
sudo apt-get update
sudo apt-get install appgrid

对我来说只需要下载 100KB。

appgrid与 Ubuntu 软件中心的比较:

Feature                                                | appgrid  | Ubuntu Software Center
-------------------------------------------------------+----------+-----------------------
Programming language                                   | Python 3 | Python 2
Warm start to home screen                              | 2.7s     | 20s
Warm start to details screen (eg opening an apt: link) | 2.3s     | 30s
Full database build                                    | 58s      | 6min24
Initial database size                                  | 36.7MB   | 96.5MB
Memory usage after startup to home screen              | 20MB     | 53.6MB
Lines of code (including tests)                        | 5900     | 56960

您也可以使用 Ubuntu One ID 登录:

Ubuntu One 登录屏幕截图

appgrid 屏幕截图

答案2

您可以使用synaptic ,的前端apt-get

答案3

是的。试试 Lubuntu 软件中心。它非常快而且轻量。

sudo apt-get install lubuntu-software-center

在此处输入图片描述

答案4

您可以尝试熟悉命令行:搜索:

apt-cache search wesnoth 

这通常会产生许多结果,因此通过管道传输到 less 或使用 grep 进行进一步搜索很有用:

apt-cache search wesnoth |less

在所有描述中搜索 FTP,仅显示包描述中包含 FTP 的匹配项

apt-cache search FTP |grep FTP |less

安装:

sudo apt-get install wesnoth

移除:

sudo apt-get remove wesnoth

相关内容