OverIQ.com

Enable Edit Button in Shutter In Linux Mint 19 and Ubuntu 18.04

Last updated on July 27, 2020


Shutter is a screen capturing software. It allows you to take screenshot of a specific area, window and even the entire screen.

Shutter also comes with a few editing tools, however these tools are not enabled by default. To enable these tools we'll have to install some additional packages.

All the instructions mentioned in this post is tested on Linux Mint 19 and Ubuntu 18.04.

Let's start!

Enabling the Edit button #

As you can see in the above image the Edit button is disabled. To enable the Edit button, you need following three packages:

  1. libgoo-canvas-perl
  2. libgoocanvas-common
  3. libgoocanvas3

We can download these packages from the following links:

  1. https://launchpad.net/ubuntu/+source/libgoo-canvas-perl
  2. https://launchpad.net/ubuntu/xenial/amd64/libgoocanvas-common/1.0.0-1
  3. https://launchpad.net/ubuntu/bionic/amd64/libgoocanvas3/1.0.0-1

If you prefer command line, you can download all these packages via the wget command as follows:

1
2
3
wget -q http://mirrors.kernel.org/ubuntu/pool/universe/g/goocanvas/libgoocanvas-common_1.0.0-1_all.deb
wget -q http://mirrors.kernel.org/ubuntu/pool/universe/g/goocanvas/libgoocanvas3_1.0.0-1_amd64.deb
wget -q http://mirrors.kernel.org/ubuntu/pool/universe/libg/libgoo-canvas-perl/libgoo-canvas-perl_0.06-2ubuntu3_amd64.deb

Once you have downloaded all the necessary packages, install them using the following command:

sudo dpkg -i libgoocanvas-common_1.0.0-1_all.deb ; sudo apt-get -f install ; sudo dpkg -i libgoocanvas3_1.0.0-1_amd64.deb ; sudo apt-get -f install; sudo dpkg -i libgoo-canvas-perl_0.06-2ubuntu3_amd64.deb ; sudo apt-get -f install

Now kill any any running instance of Shutter and then start it again.

sudo killall shutter

You should now have Edit button enabled.

Enabling Edit button on Linux Mint 17, 18 or Ubuntu 16.04 #

To enable Edit button on Linux Mint 17, 18 or Ubuntu 16.04, the fix is comparatively simple. All you need to do is install libgoo-canvas-perl using the following command:

sudo apt-get install libgoo-canvas-perl

Enabling the Web button #

Just like the Edit button, the Web button is also disabled by default. The Web button allows us to take a screenshot of a website by providing a URL.

To enable the Web button we'll need a package called gnome-web-photo. Download gnome-web-photo from the following link: [

https://launchpad.net/ubuntu/+source/gnome-web-photo/0.10.6-1/+build/5854031](!https://launchpad.net/ubuntu/+source/gnome-web-photo/0.10.6-1/+build/5854031)

Or simply, execute the following command to download the gnome-web-photo package.

wget -q https://launchpad.net/ubuntu/+source/gnome-web-photo/0.10.6-1/+build/5854031/+files/gnome-web-photo_0.10.6-1_amd64.deb

Once the package is downloaded install it by typing:

1
2
sudo dpkg -i gnome-web-photo_0.10.6-1_amd64.deb
sudo apt-get -f install

Kill any running instance of Shutter and start the application again. The Web button should be enabled now.

Restart the shutter and now you should be able to take screenshots of websites.

Next, we will see how to enable the Web button on shutter.

Enabling the Web button on Linux Mint 17, 18 or Ubuntu 16.04 #

To install gnome-web-photo on Linux Mint 17, 18 or Ubuntu 17.06, simply execute the following command:

sudo apt-get install gnome-web-photo

That's all there is to it.

Let's us know how this tip worked out for you in comments.