install exact version of ppa package
As I understand, to upgrade a ppa package, the following commands
sudo add-apt-repository ppa:user/ppa-name
sudo apt-get update
sudo apt-get upgrade
will upgrade to the lastest version of the package. For example,
sudo add-apt-repository ppa:bluetooth/bluez
sudo apt-get update
sudo apt-get upgrade
will upgrade the lastest version of bluez.
First question: this is stable lastest version or beta lastest version?
Second question: in the case I don't want the lastest version, I just want the version between my using version and the lastest version, what should I do? For example, my using version of bluez is 5.37, I want to upgrade to version 5.48 (not the lastest version).
package-management upgrade ppa
New contributor
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
As I understand, to upgrade a ppa package, the following commands
sudo add-apt-repository ppa:user/ppa-name
sudo apt-get update
sudo apt-get upgrade
will upgrade to the lastest version of the package. For example,
sudo add-apt-repository ppa:bluetooth/bluez
sudo apt-get update
sudo apt-get upgrade
will upgrade the lastest version of bluez.
First question: this is stable lastest version or beta lastest version?
Second question: in the case I don't want the lastest version, I just want the version between my using version and the lastest version, what should I do? For example, my using version of bluez is 5.37, I want to upgrade to version 5.48 (not the lastest version).
package-management upgrade ppa
New contributor
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Installation done using ppa depends solely on the owner of ppa that which version he is providing.like stable or beta. If there are multiple versions available you can use version, for eg.sudo apt install package=version
– Kulfy
yesterday
You mean use this command after two command "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update" above
– user300871
yesterday
Yeah while installing the app.
– Kulfy
yesterday
Do I need remove installed version before do it.
– user300871
yesterday
You can try installing. It must replace the installed version automatically.
– Kulfy
yesterday
add a comment |
As I understand, to upgrade a ppa package, the following commands
sudo add-apt-repository ppa:user/ppa-name
sudo apt-get update
sudo apt-get upgrade
will upgrade to the lastest version of the package. For example,
sudo add-apt-repository ppa:bluetooth/bluez
sudo apt-get update
sudo apt-get upgrade
will upgrade the lastest version of bluez.
First question: this is stable lastest version or beta lastest version?
Second question: in the case I don't want the lastest version, I just want the version between my using version and the lastest version, what should I do? For example, my using version of bluez is 5.37, I want to upgrade to version 5.48 (not the lastest version).
package-management upgrade ppa
New contributor
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
As I understand, to upgrade a ppa package, the following commands
sudo add-apt-repository ppa:user/ppa-name
sudo apt-get update
sudo apt-get upgrade
will upgrade to the lastest version of the package. For example,
sudo add-apt-repository ppa:bluetooth/bluez
sudo apt-get update
sudo apt-get upgrade
will upgrade the lastest version of bluez.
First question: this is stable lastest version or beta lastest version?
Second question: in the case I don't want the lastest version, I just want the version between my using version and the lastest version, what should I do? For example, my using version of bluez is 5.37, I want to upgrade to version 5.48 (not the lastest version).
package-management upgrade ppa
package-management upgrade ppa
New contributor
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked yesterday
user300871
161
161
New contributor
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
user300871 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Installation done using ppa depends solely on the owner of ppa that which version he is providing.like stable or beta. If there are multiple versions available you can use version, for eg.sudo apt install package=version
– Kulfy
yesterday
You mean use this command after two command "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update" above
– user300871
yesterday
Yeah while installing the app.
– Kulfy
yesterday
Do I need remove installed version before do it.
– user300871
yesterday
You can try installing. It must replace the installed version automatically.
– Kulfy
yesterday
add a comment |
1
Installation done using ppa depends solely on the owner of ppa that which version he is providing.like stable or beta. If there are multiple versions available you can use version, for eg.sudo apt install package=version
– Kulfy
yesterday
You mean use this command after two command "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update" above
– user300871
yesterday
Yeah while installing the app.
– Kulfy
yesterday
Do I need remove installed version before do it.
– user300871
yesterday
You can try installing. It must replace the installed version automatically.
– Kulfy
yesterday
1
1
Installation done using ppa depends solely on the owner of ppa that which version he is providing.like stable or beta. If there are multiple versions available you can use version, for eg.
sudo apt install package=version– Kulfy
yesterday
Installation done using ppa depends solely on the owner of ppa that which version he is providing.like stable or beta. If there are multiple versions available you can use version, for eg.
sudo apt install package=version– Kulfy
yesterday
You mean use this command after two command "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update" above
– user300871
yesterday
You mean use this command after two command "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update" above
– user300871
yesterday
Yeah while installing the app.
– Kulfy
yesterday
Yeah while installing the app.
– Kulfy
yesterday
Do I need remove installed version before do it.
– user300871
yesterday
Do I need remove installed version before do it.
– user300871
yesterday
You can try installing. It must replace the installed version automatically.
– Kulfy
yesterday
You can try installing. It must replace the installed version automatically.
– Kulfy
yesterday
add a comment |
1 Answer
1
active
oldest
votes
Install a specific version like this:
apt install packageName=versionName
for example:
apt install bluez=5.43-2+deb9u1
The owner of the ppa would have to say if it's stable or beta - like on the website where you found the ppa name and details.
you mean using "apt install packageName=versionName" after 2 commands "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update"
– user300871
yesterday
You only have to install the ppa once ever on the machine. You run the update periodically to have a fresh list of the software versions in the ppa. Then you run install to install it (or upgrade to upgrade what you've already installed). So the short answer is: Don't need to re-install the ppa. Then do run the upgrade. Then run the install.
– Eric Mintz
yesterday
I run "sudo apt install bluez=5.48-0ubuntu3" but not success, it return "E: Version '5.48-0ubuntu3' for 'bluez' was not found". What happen? Following launchpad.net/ubuntu/bionic/+source/bluez, I guess "5.48-0ubuntu3" is correct name
– user300871
yesterday
Try running this to see what versions are available: apt-cache madison bluez
– Eric Mintz
yesterday
It just " 5.37-0ubuntu5.1 ". The command "sudo apt upgrade" installs newer versions of many packages , but I just want to upgrade things involve in bluez, how to do it?
– user300871
yesterday
|
show 1 more comment
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
user300871 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1104650%2finstall-exact-version-of-ppa-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Install a specific version like this:
apt install packageName=versionName
for example:
apt install bluez=5.43-2+deb9u1
The owner of the ppa would have to say if it's stable or beta - like on the website where you found the ppa name and details.
you mean using "apt install packageName=versionName" after 2 commands "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update"
– user300871
yesterday
You only have to install the ppa once ever on the machine. You run the update periodically to have a fresh list of the software versions in the ppa. Then you run install to install it (or upgrade to upgrade what you've already installed). So the short answer is: Don't need to re-install the ppa. Then do run the upgrade. Then run the install.
– Eric Mintz
yesterday
I run "sudo apt install bluez=5.48-0ubuntu3" but not success, it return "E: Version '5.48-0ubuntu3' for 'bluez' was not found". What happen? Following launchpad.net/ubuntu/bionic/+source/bluez, I guess "5.48-0ubuntu3" is correct name
– user300871
yesterday
Try running this to see what versions are available: apt-cache madison bluez
– Eric Mintz
yesterday
It just " 5.37-0ubuntu5.1 ". The command "sudo apt upgrade" installs newer versions of many packages , but I just want to upgrade things involve in bluez, how to do it?
– user300871
yesterday
|
show 1 more comment
Install a specific version like this:
apt install packageName=versionName
for example:
apt install bluez=5.43-2+deb9u1
The owner of the ppa would have to say if it's stable or beta - like on the website where you found the ppa name and details.
you mean using "apt install packageName=versionName" after 2 commands "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update"
– user300871
yesterday
You only have to install the ppa once ever on the machine. You run the update periodically to have a fresh list of the software versions in the ppa. Then you run install to install it (or upgrade to upgrade what you've already installed). So the short answer is: Don't need to re-install the ppa. Then do run the upgrade. Then run the install.
– Eric Mintz
yesterday
I run "sudo apt install bluez=5.48-0ubuntu3" but not success, it return "E: Version '5.48-0ubuntu3' for 'bluez' was not found". What happen? Following launchpad.net/ubuntu/bionic/+source/bluez, I guess "5.48-0ubuntu3" is correct name
– user300871
yesterday
Try running this to see what versions are available: apt-cache madison bluez
– Eric Mintz
yesterday
It just " 5.37-0ubuntu5.1 ". The command "sudo apt upgrade" installs newer versions of many packages , but I just want to upgrade things involve in bluez, how to do it?
– user300871
yesterday
|
show 1 more comment
Install a specific version like this:
apt install packageName=versionName
for example:
apt install bluez=5.43-2+deb9u1
The owner of the ppa would have to say if it's stable or beta - like on the website where you found the ppa name and details.
Install a specific version like this:
apt install packageName=versionName
for example:
apt install bluez=5.43-2+deb9u1
The owner of the ppa would have to say if it's stable or beta - like on the website where you found the ppa name and details.
answered yesterday
Eric Mintz
1469
1469
you mean using "apt install packageName=versionName" after 2 commands "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update"
– user300871
yesterday
You only have to install the ppa once ever on the machine. You run the update periodically to have a fresh list of the software versions in the ppa. Then you run install to install it (or upgrade to upgrade what you've already installed). So the short answer is: Don't need to re-install the ppa. Then do run the upgrade. Then run the install.
– Eric Mintz
yesterday
I run "sudo apt install bluez=5.48-0ubuntu3" but not success, it return "E: Version '5.48-0ubuntu3' for 'bluez' was not found". What happen? Following launchpad.net/ubuntu/bionic/+source/bluez, I guess "5.48-0ubuntu3" is correct name
– user300871
yesterday
Try running this to see what versions are available: apt-cache madison bluez
– Eric Mintz
yesterday
It just " 5.37-0ubuntu5.1 ". The command "sudo apt upgrade" installs newer versions of many packages , but I just want to upgrade things involve in bluez, how to do it?
– user300871
yesterday
|
show 1 more comment
you mean using "apt install packageName=versionName" after 2 commands "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update"
– user300871
yesterday
You only have to install the ppa once ever on the machine. You run the update periodically to have a fresh list of the software versions in the ppa. Then you run install to install it (or upgrade to upgrade what you've already installed). So the short answer is: Don't need to re-install the ppa. Then do run the upgrade. Then run the install.
– Eric Mintz
yesterday
I run "sudo apt install bluez=5.48-0ubuntu3" but not success, it return "E: Version '5.48-0ubuntu3' for 'bluez' was not found". What happen? Following launchpad.net/ubuntu/bionic/+source/bluez, I guess "5.48-0ubuntu3" is correct name
– user300871
yesterday
Try running this to see what versions are available: apt-cache madison bluez
– Eric Mintz
yesterday
It just " 5.37-0ubuntu5.1 ". The command "sudo apt upgrade" installs newer versions of many packages , but I just want to upgrade things involve in bluez, how to do it?
– user300871
yesterday
you mean using "apt install packageName=versionName" after 2 commands "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update"
– user300871
yesterday
you mean using "apt install packageName=versionName" after 2 commands "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update"
– user300871
yesterday
You only have to install the ppa once ever on the machine. You run the update periodically to have a fresh list of the software versions in the ppa. Then you run install to install it (or upgrade to upgrade what you've already installed). So the short answer is: Don't need to re-install the ppa. Then do run the upgrade. Then run the install.
– Eric Mintz
yesterday
You only have to install the ppa once ever on the machine. You run the update periodically to have a fresh list of the software versions in the ppa. Then you run install to install it (or upgrade to upgrade what you've already installed). So the short answer is: Don't need to re-install the ppa. Then do run the upgrade. Then run the install.
– Eric Mintz
yesterday
I run "sudo apt install bluez=5.48-0ubuntu3" but not success, it return "E: Version '5.48-0ubuntu3' for 'bluez' was not found". What happen? Following launchpad.net/ubuntu/bionic/+source/bluez, I guess "5.48-0ubuntu3" is correct name
– user300871
yesterday
I run "sudo apt install bluez=5.48-0ubuntu3" but not success, it return "E: Version '5.48-0ubuntu3' for 'bluez' was not found". What happen? Following launchpad.net/ubuntu/bionic/+source/bluez, I guess "5.48-0ubuntu3" is correct name
– user300871
yesterday
Try running this to see what versions are available: apt-cache madison bluez
– Eric Mintz
yesterday
Try running this to see what versions are available: apt-cache madison bluez
– Eric Mintz
yesterday
It just " 5.37-0ubuntu5.1 ". The command "sudo apt upgrade" installs newer versions of many packages , but I just want to upgrade things involve in bluez, how to do it?
– user300871
yesterday
It just " 5.37-0ubuntu5.1 ". The command "sudo apt upgrade" installs newer versions of many packages , but I just want to upgrade things involve in bluez, how to do it?
– user300871
yesterday
|
show 1 more comment
user300871 is a new contributor. Be nice, and check out our Code of Conduct.
user300871 is a new contributor. Be nice, and check out our Code of Conduct.
user300871 is a new contributor. Be nice, and check out our Code of Conduct.
user300871 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1104650%2finstall-exact-version-of-ppa-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Installation done using ppa depends solely on the owner of ppa that which version he is providing.like stable or beta. If there are multiple versions available you can use version, for eg.
sudo apt install package=version– Kulfy
yesterday
You mean use this command after two command "sudo add-apt-repository ppa:user/ppa-name" and "sudo apt-get update" above
– user300871
yesterday
Yeah while installing the app.
– Kulfy
yesterday
Do I need remove installed version before do it.
– user300871
yesterday
You can try installing. It must replace the installed version automatically.
– Kulfy
yesterday