How can I replace Snap application such as Gnome Calculator with a deb?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
So, thanks to this bug: https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1575053 I would rather not use Snap packages. The only one that I really use is Calculator but I would like to replace all of them with a deb version. How would I go about it?
18.04 snap
add a comment |
So, thanks to this bug: https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1575053 I would rather not use Snap packages. The only one that I really use is Calculator but I would like to replace all of them with a deb version. How would I go about it?
18.04 snap
2
Can you not uninstall it and then install it viaapt
?
– M. Becerra
May 23 '18 at 12:37
you can just hide the~/snap
folder following this answer. If you want to stop using the whole Snapd ecosystem you may try my answer down below
– Eskander Bejaoui
May 23 '18 at 15:18
1
Yes, but hten I still get to see it in terminal.
– sup
May 23 '18 at 17:25
2
A couple of other shortcomings that make the snap apps a downgrade from a UX perspective over their traditional APT counterparts (that were stock in 17.10): 1. They're noticeably slower to launch (even on a 1 year old flagship laptop) 2. They don't adjust to system-wide themeing Hopefully these shortcomings will be resolved soon but until then Eskander's solution is a very nice and easy fix.
– sxc731
Aug 22 '18 at 8:19
add a comment |
So, thanks to this bug: https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1575053 I would rather not use Snap packages. The only one that I really use is Calculator but I would like to replace all of them with a deb version. How would I go about it?
18.04 snap
So, thanks to this bug: https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1575053 I would rather not use Snap packages. The only one that I really use is Calculator but I would like to replace all of them with a deb version. How would I go about it?
18.04 snap
18.04 snap
edited May 23 '18 at 16:57
M. Becerra
2,35151131
2,35151131
asked May 23 '18 at 12:25
supsup
2,24022037
2,24022037
2
Can you not uninstall it and then install it viaapt
?
– M. Becerra
May 23 '18 at 12:37
you can just hide the~/snap
folder following this answer. If you want to stop using the whole Snapd ecosystem you may try my answer down below
– Eskander Bejaoui
May 23 '18 at 15:18
1
Yes, but hten I still get to see it in terminal.
– sup
May 23 '18 at 17:25
2
A couple of other shortcomings that make the snap apps a downgrade from a UX perspective over their traditional APT counterparts (that were stock in 17.10): 1. They're noticeably slower to launch (even on a 1 year old flagship laptop) 2. They don't adjust to system-wide themeing Hopefully these shortcomings will be resolved soon but until then Eskander's solution is a very nice and easy fix.
– sxc731
Aug 22 '18 at 8:19
add a comment |
2
Can you not uninstall it and then install it viaapt
?
– M. Becerra
May 23 '18 at 12:37
you can just hide the~/snap
folder following this answer. If you want to stop using the whole Snapd ecosystem you may try my answer down below
– Eskander Bejaoui
May 23 '18 at 15:18
1
Yes, but hten I still get to see it in terminal.
– sup
May 23 '18 at 17:25
2
A couple of other shortcomings that make the snap apps a downgrade from a UX perspective over their traditional APT counterparts (that were stock in 17.10): 1. They're noticeably slower to launch (even on a 1 year old flagship laptop) 2. They don't adjust to system-wide themeing Hopefully these shortcomings will be resolved soon but until then Eskander's solution is a very nice and easy fix.
– sxc731
Aug 22 '18 at 8:19
2
2
Can you not uninstall it and then install it via
apt
?– M. Becerra
May 23 '18 at 12:37
Can you not uninstall it and then install it via
apt
?– M. Becerra
May 23 '18 at 12:37
you can just hide the
~/snap
folder following this answer. If you want to stop using the whole Snapd ecosystem you may try my answer down below– Eskander Bejaoui
May 23 '18 at 15:18
you can just hide the
~/snap
folder following this answer. If you want to stop using the whole Snapd ecosystem you may try my answer down below– Eskander Bejaoui
May 23 '18 at 15:18
1
1
Yes, but hten I still get to see it in terminal.
– sup
May 23 '18 at 17:25
Yes, but hten I still get to see it in terminal.
– sup
May 23 '18 at 17:25
2
2
A couple of other shortcomings that make the snap apps a downgrade from a UX perspective over their traditional APT counterparts (that were stock in 17.10): 1. They're noticeably slower to launch (even on a 1 year old flagship laptop) 2. They don't adjust to system-wide themeing Hopefully these shortcomings will be resolved soon but until then Eskander's solution is a very nice and easy fix.
– sxc731
Aug 22 '18 at 8:19
A couple of other shortcomings that make the snap apps a downgrade from a UX perspective over their traditional APT counterparts (that were stock in 17.10): 1. They're noticeably slower to launch (even on a 1 year old flagship laptop) 2. They don't adjust to system-wide themeing Hopefully these shortcomings will be resolved soon but until then Eskander's solution is a very nice and easy fix.
– sxc731
Aug 22 '18 at 8:19
add a comment |
3 Answers
3
active
oldest
votes
This answer is for Ubuntu 18.04 LTS. The version 16.04 LTS came with the deb version by default and not the snap version.
The Graphical way
Click on the Ubuntu Software icon and search for gnome-calc:
To verify which is which, click on each one in turn. When you click on the installed version and scroll down you will see:
Note the Snap Store at the bottom
When you click on the second one and scroll down you will see:
Now you can click on Remove button for the snap version to remove it. Similarly click on the Install button to install the deb version. In both cases you will be asked for the password.
The command line way
Open a terminal by entering Ctrl+Alt+T and enter to following to remove the snap version:
sudo snap remove gnome-calculator
and enter the following to install the deb version:
sudo apt install gnome-calculator
You will be prompted for your password. Unlike the graphical method, you will not see any ***** and the cursor will not move when you type your password. This is normal.
Hope this helps
1
Also, note that removing Snap packages are usually safe since snaps supplies its own libraries in their install. (much like Windows program installation and its .db files)
– Aryo Adhi
May 23 '18 at 13:31
add a comment |
Snap packages installed by default in Ubuntu 18.04 LTS are:
gnome-calculator
gnome-characters
gnome-logs
gnome-system-monitor
Which can be found using the command sudo snap list
. To remove default Snap apps use:
sudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Then install their .deb counterparts with:
sudo apt install gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Additionaly, you can uninstall the whole Snapd ecosystem from your computer with:
sudo apt purge snapd squashfs-tools gnome-software-plugin-snap
Gnoem characters sayssudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
– sup
May 23 '18 at 16:17
@sup I'm not sure I understand
– Eskander Bejaoui
May 23 '18 at 16:23
No, of course not, wrong paste, sorry, I meant:sudo apt install gnome-characters
givesPackage gnome-characters is not available, but is referred to by another package.
– sup
May 23 '18 at 17:18
1
(i) You're linking to 28-1804, are you certain it's the same? (ii) Your list came across as exhaustive, yet I find that package andcore
installed, which I did not add -- I installed barebones version of the latest Ubuntu LTS. Were they both preinstalled?
– FooBar
Jun 5 '18 at 14:40
1
Yep not the same, I linked a newer one but same concept. Andcore
is part of Snapd, which gets deleted along with it
– Eskander Bejaoui
Jun 5 '18 at 15:00
|
show 6 more comments
This will remove all snap packages except core
and core18
in one command
sudo snap remove `sudo snap list | cut -d " " -f 1 | tail -n 2 | grep -v 'core' | tr 'n' ' '`
To finish purging do like mentioned above:
sudo apt -y purge snapd gnome-software-plugin-snap
I'm assuming you might seen squashfs-tools
in another package
add a 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
});
}
});
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%2f1039411%2fhow-can-i-replace-snap-application-such-as-gnome-calculator-with-a-deb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
This answer is for Ubuntu 18.04 LTS. The version 16.04 LTS came with the deb version by default and not the snap version.
The Graphical way
Click on the Ubuntu Software icon and search for gnome-calc:
To verify which is which, click on each one in turn. When you click on the installed version and scroll down you will see:
Note the Snap Store at the bottom
When you click on the second one and scroll down you will see:
Now you can click on Remove button for the snap version to remove it. Similarly click on the Install button to install the deb version. In both cases you will be asked for the password.
The command line way
Open a terminal by entering Ctrl+Alt+T and enter to following to remove the snap version:
sudo snap remove gnome-calculator
and enter the following to install the deb version:
sudo apt install gnome-calculator
You will be prompted for your password. Unlike the graphical method, you will not see any ***** and the cursor will not move when you type your password. This is normal.
Hope this helps
1
Also, note that removing Snap packages are usually safe since snaps supplies its own libraries in their install. (much like Windows program installation and its .db files)
– Aryo Adhi
May 23 '18 at 13:31
add a comment |
This answer is for Ubuntu 18.04 LTS. The version 16.04 LTS came with the deb version by default and not the snap version.
The Graphical way
Click on the Ubuntu Software icon and search for gnome-calc:
To verify which is which, click on each one in turn. When you click on the installed version and scroll down you will see:
Note the Snap Store at the bottom
When you click on the second one and scroll down you will see:
Now you can click on Remove button for the snap version to remove it. Similarly click on the Install button to install the deb version. In both cases you will be asked for the password.
The command line way
Open a terminal by entering Ctrl+Alt+T and enter to following to remove the snap version:
sudo snap remove gnome-calculator
and enter the following to install the deb version:
sudo apt install gnome-calculator
You will be prompted for your password. Unlike the graphical method, you will not see any ***** and the cursor will not move when you type your password. This is normal.
Hope this helps
1
Also, note that removing Snap packages are usually safe since snaps supplies its own libraries in their install. (much like Windows program installation and its .db files)
– Aryo Adhi
May 23 '18 at 13:31
add a comment |
This answer is for Ubuntu 18.04 LTS. The version 16.04 LTS came with the deb version by default and not the snap version.
The Graphical way
Click on the Ubuntu Software icon and search for gnome-calc:
To verify which is which, click on each one in turn. When you click on the installed version and scroll down you will see:
Note the Snap Store at the bottom
When you click on the second one and scroll down you will see:
Now you can click on Remove button for the snap version to remove it. Similarly click on the Install button to install the deb version. In both cases you will be asked for the password.
The command line way
Open a terminal by entering Ctrl+Alt+T and enter to following to remove the snap version:
sudo snap remove gnome-calculator
and enter the following to install the deb version:
sudo apt install gnome-calculator
You will be prompted for your password. Unlike the graphical method, you will not see any ***** and the cursor will not move when you type your password. This is normal.
Hope this helps
This answer is for Ubuntu 18.04 LTS. The version 16.04 LTS came with the deb version by default and not the snap version.
The Graphical way
Click on the Ubuntu Software icon and search for gnome-calc:
To verify which is which, click on each one in turn. When you click on the installed version and scroll down you will see:
Note the Snap Store at the bottom
When you click on the second one and scroll down you will see:
Now you can click on Remove button for the snap version to remove it. Similarly click on the Install button to install the deb version. In both cases you will be asked for the password.
The command line way
Open a terminal by entering Ctrl+Alt+T and enter to following to remove the snap version:
sudo snap remove gnome-calculator
and enter the following to install the deb version:
sudo apt install gnome-calculator
You will be prompted for your password. Unlike the graphical method, you will not see any ***** and the cursor will not move when you type your password. This is normal.
Hope this helps
answered May 23 '18 at 13:26
user68186user68186
17k84970
17k84970
1
Also, note that removing Snap packages are usually safe since snaps supplies its own libraries in their install. (much like Windows program installation and its .db files)
– Aryo Adhi
May 23 '18 at 13:31
add a comment |
1
Also, note that removing Snap packages are usually safe since snaps supplies its own libraries in their install. (much like Windows program installation and its .db files)
– Aryo Adhi
May 23 '18 at 13:31
1
1
Also, note that removing Snap packages are usually safe since snaps supplies its own libraries in their install. (much like Windows program installation and its .db files)
– Aryo Adhi
May 23 '18 at 13:31
Also, note that removing Snap packages are usually safe since snaps supplies its own libraries in their install. (much like Windows program installation and its .db files)
– Aryo Adhi
May 23 '18 at 13:31
add a comment |
Snap packages installed by default in Ubuntu 18.04 LTS are:
gnome-calculator
gnome-characters
gnome-logs
gnome-system-monitor
Which can be found using the command sudo snap list
. To remove default Snap apps use:
sudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Then install their .deb counterparts with:
sudo apt install gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Additionaly, you can uninstall the whole Snapd ecosystem from your computer with:
sudo apt purge snapd squashfs-tools gnome-software-plugin-snap
Gnoem characters sayssudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
– sup
May 23 '18 at 16:17
@sup I'm not sure I understand
– Eskander Bejaoui
May 23 '18 at 16:23
No, of course not, wrong paste, sorry, I meant:sudo apt install gnome-characters
givesPackage gnome-characters is not available, but is referred to by another package.
– sup
May 23 '18 at 17:18
1
(i) You're linking to 28-1804, are you certain it's the same? (ii) Your list came across as exhaustive, yet I find that package andcore
installed, which I did not add -- I installed barebones version of the latest Ubuntu LTS. Were they both preinstalled?
– FooBar
Jun 5 '18 at 14:40
1
Yep not the same, I linked a newer one but same concept. Andcore
is part of Snapd, which gets deleted along with it
– Eskander Bejaoui
Jun 5 '18 at 15:00
|
show 6 more comments
Snap packages installed by default in Ubuntu 18.04 LTS are:
gnome-calculator
gnome-characters
gnome-logs
gnome-system-monitor
Which can be found using the command sudo snap list
. To remove default Snap apps use:
sudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Then install their .deb counterparts with:
sudo apt install gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Additionaly, you can uninstall the whole Snapd ecosystem from your computer with:
sudo apt purge snapd squashfs-tools gnome-software-plugin-snap
Gnoem characters sayssudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
– sup
May 23 '18 at 16:17
@sup I'm not sure I understand
– Eskander Bejaoui
May 23 '18 at 16:23
No, of course not, wrong paste, sorry, I meant:sudo apt install gnome-characters
givesPackage gnome-characters is not available, but is referred to by another package.
– sup
May 23 '18 at 17:18
1
(i) You're linking to 28-1804, are you certain it's the same? (ii) Your list came across as exhaustive, yet I find that package andcore
installed, which I did not add -- I installed barebones version of the latest Ubuntu LTS. Were they both preinstalled?
– FooBar
Jun 5 '18 at 14:40
1
Yep not the same, I linked a newer one but same concept. Andcore
is part of Snapd, which gets deleted along with it
– Eskander Bejaoui
Jun 5 '18 at 15:00
|
show 6 more comments
Snap packages installed by default in Ubuntu 18.04 LTS are:
gnome-calculator
gnome-characters
gnome-logs
gnome-system-monitor
Which can be found using the command sudo snap list
. To remove default Snap apps use:
sudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Then install their .deb counterparts with:
sudo apt install gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Additionaly, you can uninstall the whole Snapd ecosystem from your computer with:
sudo apt purge snapd squashfs-tools gnome-software-plugin-snap
Snap packages installed by default in Ubuntu 18.04 LTS are:
gnome-calculator
gnome-characters
gnome-logs
gnome-system-monitor
Which can be found using the command sudo snap list
. To remove default Snap apps use:
sudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Then install their .deb counterparts with:
sudo apt install gnome-calculator gnome-characters gnome-logs gnome-system-monitor
Additionaly, you can uninstall the whole Snapd ecosystem from your computer with:
sudo apt purge snapd squashfs-tools gnome-software-plugin-snap
answered May 23 '18 at 13:52
Eskander BejaouiEskander Bejaoui
1,3961821
1,3961821
Gnoem characters sayssudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
– sup
May 23 '18 at 16:17
@sup I'm not sure I understand
– Eskander Bejaoui
May 23 '18 at 16:23
No, of course not, wrong paste, sorry, I meant:sudo apt install gnome-characters
givesPackage gnome-characters is not available, but is referred to by another package.
– sup
May 23 '18 at 17:18
1
(i) You're linking to 28-1804, are you certain it's the same? (ii) Your list came across as exhaustive, yet I find that package andcore
installed, which I did not add -- I installed barebones version of the latest Ubuntu LTS. Were they both preinstalled?
– FooBar
Jun 5 '18 at 14:40
1
Yep not the same, I linked a newer one but same concept. Andcore
is part of Snapd, which gets deleted along with it
– Eskander Bejaoui
Jun 5 '18 at 15:00
|
show 6 more comments
Gnoem characters sayssudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
– sup
May 23 '18 at 16:17
@sup I'm not sure I understand
– Eskander Bejaoui
May 23 '18 at 16:23
No, of course not, wrong paste, sorry, I meant:sudo apt install gnome-characters
givesPackage gnome-characters is not available, but is referred to by another package.
– sup
May 23 '18 at 17:18
1
(i) You're linking to 28-1804, are you certain it's the same? (ii) Your list came across as exhaustive, yet I find that package andcore
installed, which I did not add -- I installed barebones version of the latest Ubuntu LTS. Were they both preinstalled?
– FooBar
Jun 5 '18 at 14:40
1
Yep not the same, I linked a newer one but same concept. Andcore
is part of Snapd, which gets deleted along with it
– Eskander Bejaoui
Jun 5 '18 at 15:00
Gnoem characters says
sudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
– sup
May 23 '18 at 16:17
Gnoem characters says
sudo snap remove gnome-calculator gnome-characters gnome-logs gnome-system-monitor
– sup
May 23 '18 at 16:17
@sup I'm not sure I understand
– Eskander Bejaoui
May 23 '18 at 16:23
@sup I'm not sure I understand
– Eskander Bejaoui
May 23 '18 at 16:23
No, of course not, wrong paste, sorry, I meant:
sudo apt install gnome-characters
givesPackage gnome-characters is not available, but is referred to by another package.
– sup
May 23 '18 at 17:18
No, of course not, wrong paste, sorry, I meant:
sudo apt install gnome-characters
givesPackage gnome-characters is not available, but is referred to by another package.
– sup
May 23 '18 at 17:18
1
1
(i) You're linking to 28-1804, are you certain it's the same? (ii) Your list came across as exhaustive, yet I find that package and
core
installed, which I did not add -- I installed barebones version of the latest Ubuntu LTS. Were they both preinstalled?– FooBar
Jun 5 '18 at 14:40
(i) You're linking to 28-1804, are you certain it's the same? (ii) Your list came across as exhaustive, yet I find that package and
core
installed, which I did not add -- I installed barebones version of the latest Ubuntu LTS. Were they both preinstalled?– FooBar
Jun 5 '18 at 14:40
1
1
Yep not the same, I linked a newer one but same concept. And
core
is part of Snapd, which gets deleted along with it– Eskander Bejaoui
Jun 5 '18 at 15:00
Yep not the same, I linked a newer one but same concept. And
core
is part of Snapd, which gets deleted along with it– Eskander Bejaoui
Jun 5 '18 at 15:00
|
show 6 more comments
This will remove all snap packages except core
and core18
in one command
sudo snap remove `sudo snap list | cut -d " " -f 1 | tail -n 2 | grep -v 'core' | tr 'n' ' '`
To finish purging do like mentioned above:
sudo apt -y purge snapd gnome-software-plugin-snap
I'm assuming you might seen squashfs-tools
in another package
add a comment |
This will remove all snap packages except core
and core18
in one command
sudo snap remove `sudo snap list | cut -d " " -f 1 | tail -n 2 | grep -v 'core' | tr 'n' ' '`
To finish purging do like mentioned above:
sudo apt -y purge snapd gnome-software-plugin-snap
I'm assuming you might seen squashfs-tools
in another package
add a comment |
This will remove all snap packages except core
and core18
in one command
sudo snap remove `sudo snap list | cut -d " " -f 1 | tail -n 2 | grep -v 'core' | tr 'n' ' '`
To finish purging do like mentioned above:
sudo apt -y purge snapd gnome-software-plugin-snap
I'm assuming you might seen squashfs-tools
in another package
This will remove all snap packages except core
and core18
in one command
sudo snap remove `sudo snap list | cut -d " " -f 1 | tail -n 2 | grep -v 'core' | tr 'n' ' '`
To finish purging do like mentioned above:
sudo apt -y purge snapd gnome-software-plugin-snap
I'm assuming you might seen squashfs-tools
in another package
answered Feb 11 at 18:41
rivanovrivanov
13615
13615
add a comment |
add a comment |
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.
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%2f1039411%2fhow-can-i-replace-snap-application-such-as-gnome-calculator-with-a-deb%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
2
Can you not uninstall it and then install it via
apt
?– M. Becerra
May 23 '18 at 12:37
you can just hide the
~/snap
folder following this answer. If you want to stop using the whole Snapd ecosystem you may try my answer down below– Eskander Bejaoui
May 23 '18 at 15:18
1
Yes, but hten I still get to see it in terminal.
– sup
May 23 '18 at 17:25
2
A couple of other shortcomings that make the snap apps a downgrade from a UX perspective over their traditional APT counterparts (that were stock in 17.10): 1. They're noticeably slower to launch (even on a 1 year old flagship laptop) 2. They don't adjust to system-wide themeing Hopefully these shortcomings will be resolved soon but until then Eskander's solution is a very nice and easy fix.
– sxc731
Aug 22 '18 at 8:19