6

I'd like to install massif-visualizer on Ubuntu 14.04.

By default, there's no such package on that release. Which repository contains that package?

$ sudo apt-get install massif-visualizer
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package massif-visualizer
miluz
  • 235
  • 4
  • 11
  • http://packages.ubuntu.com/utopic/massif-visualizer No Trusty... – Rinzwind Sep 10 '14 at 07:39
  • If I look at this: https://launchpad.net/ubuntu/trusty/+package/massif-visualizer " Run your application in Valgrind with --tool=massif and then open the generated massif.out.%pid in the visualizer. Gzip or Bzip2 compressed Massif files can also be opened transparently." I would assume you need http://packages.ubuntu.com/trusty/valgrind – Rinzwind Sep 10 '14 at 07:43
  • Rinzwind, your link solved the issue. I downloaded the .deb file and it's working. – miluz Sep 10 '14 at 07:53
  • 1
    Gratz! :) If you want you can post what you did as an answer and gain some rep ;) – Rinzwind Sep 10 '14 at 09:07

5 Answers5

12

massif-visualizer is available on 3rd Party Repository: Kubuntu-ppa Backports

Install by following command:

sudo add-apt-repository ppa:kubuntu-ppa/backports 
sudo apt-get update
sudo apt-get install massif-visualizer
Pandya
  • 34,843
  • 42
  • 126
  • 186
  • http://www.ubuntuupdates.org/package/kubuntu-ppa_backports/trusty/main/base/massif-visualizer – Pandya Sep 13 '14 at 02:07
3

On Ubuntu 18.04 I just needed to install it with:

sudo apt-get install massif-visualizer

In case it is relevant to anyone.

Guy Avraham
  • 145
  • 7
3

I have a working massif-visualizer on Ubuntu 14.04, thanks Rinzwind!

Here is what made it work:

  1. Go to launchpad page for massif visualizer.

  2. Under 'Published versions' section select the correct arch, and then download the .deb package.

  3. Install the package (thanks Pandya):

    sudo gdebi -i massif-visualizer_0.3-0ubuntu2_amd64.deb
    
miluz
  • 235
  • 4
  • 11
  • 1
    Suggestion:Using `sudo gdebi` instead of only `sudo dpkg` is helpful for getting any dependencies if required.(future-help) – Pandya Sep 10 '14 at 12:53
0

For me the link to the launchpad page for massif-visualizer yields a page that tells me it is not available for trusty.

So the answer is unhelpful/wrong, at least now. (It may have been valid when it was written, who knows.)

nzc
  • 113
  • 5
0

I downloaded the package for 64-bit from this page provided by Pandya: https://www.ubuntuupdates.org/package/kubuntu-ppa_backports/trusty/main/base/massif-visualizer

Put the package in the directory then followed the instructions:

sudo add-apt-repository ppa:kubuntu-ppa/backports 
sudo apt-get update
sudo apt-get install massif-visualizer

It works as a charm!

earthmeLon
  • 11,042
  • 1
  • 36
  • 60
R35H
  • 1
  • Welcome to Ask Ubuntu! Please don't add 'thanks' as answers. Invest some time in the site and you will gain sufficient [privileges](http://askubuntu.com/privileges) to upvote answers you like, which is the Ask Ubuntu way of saying thank you. – Martin Thornton Jan 28 '17 at 00:00