Ubuntu 12.04 下安装 GIMP 2.8 正式版

得知 GIMP 2.8 发布的消息Androidj就立马当先的冲了!没想到的是部份软件与原先的版本有冲突,在安装失败以后导致软件库整个锁住(Lock),经过一翻苦战后终于搞定了,强烈建议想升级的伙伴先手动移除 GIMP 再试。

GIMP 2.8最大的特性,是自我有印象起许许多多人都提出过需求的:单窗口模式。你不再受制于停靠窗口(Palette)或对话框(当然除非你选择这么做)。这是开发组一项了不起的工作!

特别值得关注的包括:

图层分组功能。
单窗口的 UI,不过仍旧在讨论当中,尚未最终决定。
直接在画布上编辑文字。
新一代核心 GEGL 的整合进度也非常不错,图层模式和图层混合的功能已经通过 GEGL 来处理了。
还有一个很有意思的贴心功能:输入框支持计算功能,不错 :)

下面详细说说如何在Ubuntu 12.04 下安装 GIMP 2.8 正式版,不当之处敬请指出。

相关阅读:
GIMP 2.8 正式发布(GIMP 2.8 正式版 PPA 可用) ttp://www.linuxidc.com/Linux/2012-05/59763.htm

GIMP 2.8 启动信息

GIMP 2.8 启动信息/图1

1. 安装及升级 GIMP

1.1. 未安装或先行移除 GIMP 后再升级

1.1.1. 添加软件来源。

sudo add-apt-repository ppa:otto-kesselgulasch/gimp

Ubuntu 12.04 下安装 GIMP 2.8 正式版

 图2

sudo apt-get update

Ubuntu 12.04 下安装 GIMP 2.8 正式版

 图3

1.1.2. 安装 GIMP。

sudo apt-get install gimp gimp-plugin-registry gimp-data-extras

Ubuntu 12.04 下安装 GIMP 2.8 正式版

 图4

1.2. 已安装 GIMP 直接升级

1.2.1. 新增软件来源。

sudo add-apt-repository ppa:otto-kesselgulasch/gimp [Enter]

1.2.2. 更新软件来源并升级 (若升级失败再接着看 1.2.3, 若成功请略过 1.2.3 ~ 1.2.6)。

sudo apt-get update && sudo apt-get dist-upgrade [Enter]
The following NEW packages will be installed:
    libbabl-0.1-0{a} libgegl-0.2-0{a} libopenraw1{a}
The following packages will be REMOVED:
    libbabl-0.0-0{u} libgegl-0.0-0{u}
The following packages will be upgraded:
    gimp gimp-data libgimp2.0 Python-central
4 packages upgraded, 3 newly installed, 2 to remove and 0 not upgraded.
Need to get 23.6 MB of archives. After unpacking 42.6 MB will be used.
Do you want to continue? [Y/n/?]

1.2.3. 修复软件库 (可能无法修复成功)。

sudo apt-get install -f [Enter]
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
    gimp
Suggested packages:
    gimp-data-extras
The following packages will be upgraded:
    gimp
1 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/6,086 kB of archives.
After this operation, 2,121 kB of additional disk space will be used.
Do you want to continue [Y/n]?

1.2.4. 手动强制移除 gimp。

$ cd /var/lib/dpkg/info/ [Enter]

[ @linuxidc: /var/lib/dpkg/info/ ]
$ sudo rm -rf gimp.postinst gimp.postrm gimp-gmic.list gimp-gmic.md5sums gimp-plugin-registry.list gimp-plugin-registry.md5sums [Enter]

[ @linuxidc: ~ ]
$ sudo aptitude purge gimp [Enter]

1.2.5. 更新软件库。

[ @linuxidc: ~ ]
$ sudo apt-get update; sudo apt-get dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages will be upgraded:
    python-central
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/41.4 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y

1.2.6. 安装 GIMP。

[ @linuxidc: ~ ]
$ sudo aptitude install gimp gimp-plugin-registry gimp-data-extras [Enter]

linux

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/21445.html