我怎样才能回到 GIMP 2.6?

我怎样才能回到 GIMP 2.6?

在旧电脑上,我有 Lubuntu 12.10。在安装 GIMP 期间,安装了最新版本(版本 2.8),但我认为对于像我这样的配备较差的 Intel Celeron CPU(Ram 1GB,VGA 128)的旧机器来说,它有点重

我怎样才能回到 GIMP 2.6?

答案1

尝试执行前向端口方法(不仅适用于 Gimp,还适用于更多软件包):

  1. 将主存储库添加precise到您的系统。

    /etc/apt/sources.list.d/precise-for-gimp.list创建包含以下内容的文件

    deb http://nl.archive.ubuntu.com/ubuntu/ precise main restricted
    deb-src http://nl.archive.ubuntu.com/ubuntu/ precise main restricted
    deb http://nl.archive.ubuntu.com/ubuntu/ precise-updates main restricted
    deb-src http://nl.archive.ubuntu.com/ubuntu/ precise-updates main restricted
    deb http://security.ubuntu.com/ubuntu precise-security main restricted
    deb-src http://security.ubuntu.com/ubuntu precise-security main restricted
    

    将镜子(此处nl.archive.ubuntu.com)替换为您想要使用的镜子。

  2. 添加具有适当固定的文件以允许降级某一组软件包,例如/etc/apt/preferences.d/10-pin-gimp-to-precise

    Package: *gimp*
    Pin: release a=precise-security
    Pin-Priority: 1001
    
    Package: *gimp*
    Pin: release a=precise-updates
    Pin-Priority: 1001
    
  3. 跑步sudo apt-get update

  4. 运行sudo apt-get -s install gimp-s仅用于模拟)

  5. 检查输出是否有意义。如果没有,并且无法满足依赖关系,则考虑恢复上述操作。如果有效,则通过重新运行不带选项的上一个命令来实际运行要执行的操作-s

这种方法将为您提供最佳的灵活性和安全更新支持,因为它只使用存储库而不是特定版本。不过,设置起来可能很麻烦。

答案2

您也可以直接从以下位置下载 gimp 2.6ftp://ftp.gimp.org/pub/gimp/v2.6/然后运行

  tar xvfz gimp-2.6.x.tar.gz   # unpack the sources
  cd gimp-2.6.x                # change to the toplevel directory
  ./configure                  # run the `configure' script
  make                         # build GIMP
  make install                 # install GIMP

您可以更改 url 中的 v2.6 来更改版本。

首先卸载 gimp:

sudo apt-get remove gimp

答案3

试试这个(对我有用):

sudo apt-get install ppa-purge
sudo ppa-purge ppa:otto-kesselgulasch/gimp
sudo apt-get install gimp

相关内容