Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I have 3 questions.

  • This is an example scenario I encountered. I have yasm .86 but I need v1 and it is there in the launchpad repo. However, I am not able to download it with

apt-get upgrade yasm does not do it.

  • Also, I am newbie so could you tell me why some installation does not show up using

    apt-cache search

What is the best way to search for packages installed.

  • I understand checkinstall runs make install, however how can we run make install with verbose mode, not using checkinstall? Is there a switch for make install? (Sorry if it is a silly question)

Thanks for all the answers.

share|improve this question

closed as not constructive by Jorge Castro, Ringtail, Eliah Kagan, gertvdijk, Eric Carvalho Jan 5 at 1:21

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

How to install specific version.

This will show available version

apt-cache showpkg yasm

This will install the version you want

#apt-get install packagename=version
apt-get install yasm=v1
share|improve this answer
apt-get install yasm=v1 Does this override the default versioning? I mean sometimes, it just says latest version even though it isn't. Also, when I try to manually download from launchpad (.deb) and install, it gives me a warning, it is not compliant with the latest release repo or something like that. – blacks0ul Mar 27 '12 at 6:57
This will override the version, but you might wish to remove the version you have installed first. also in synaptic you can click force package version. – Taylor Bioniks Mar 27 '12 at 7:12

Not the answer you're looking for? Browse other questions tagged or ask your own question.