hello cannot locate the core snap: No such file or directory
up vote
3
down vote
favorite
The installation of snaps goes perfectly well, but whenever I try to run a snap after the installation nothing happens (e.g. Notes won't start from the dash). Also non-GUI snaps like hello don't work:
$ hello
cannot locate the core snap: No such file or directory
How could I fix this problem?
snap
add a comment |
up vote
3
down vote
favorite
The installation of snaps goes perfectly well, but whenever I try to run a snap after the installation nothing happens (e.g. Notes won't start from the dash). Also non-GUI snaps like hello don't work:
$ hello
cannot locate the core snap: No such file or directory
How could I fix this problem?
snap
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
The installation of snaps goes perfectly well, but whenever I try to run a snap after the installation nothing happens (e.g. Notes won't start from the dash). Also non-GUI snaps like hello don't work:
$ hello
cannot locate the core snap: No such file or directory
How could I fix this problem?
snap
The installation of snaps goes perfectly well, but whenever I try to run a snap after the installation nothing happens (e.g. Notes won't start from the dash). Also non-GUI snaps like hello don't work:
$ hello
cannot locate the core snap: No such file or directory
How could I fix this problem?
snap
snap
edited Jan 18 '17 at 8:59
Zanna
49.4k13127236
49.4k13127236
asked Jan 18 '17 at 8:57
Sander Klootwijk
285
285
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
accepted
I have the hello snap, notes and core installed on my computer and all of them work fine.
$ snap list
Name Version Rev Developer Notes
core 16.04.1 714 canonical -
hello 2.10 20 canonical -
notes 0.9.0~gitb6e3b34 4 notes-developers -
When the hello snap is installed, the core snap is installed along with it if core is not already installed. Try updating the core snap:
sudo snap refresh core
If core is already installed the following message will be shown:
snap "core" has no updates available
Your results of running sudo snap refresh core were as follows:
sudo snap refresh core error: cannot refresh "core": cannot find snap "core"
So uninstall the core snap and then reinstall it.
sudo snap remove core hello
sudo snap install hello # core will also be installed automatically
Hello is a terminal app that runs like this.
$ hello
Hello, world!
2
Thank you for your answer, but now I'm getting the following error: ` $ sudo snap install core error: cannot perform the following tasks: - Mount snap "core" (714) (cannot install core snap "core" when core snap "ubuntu-core" is already present) ` Refreshing doesn't work: ` $ sudo snap refresh core error: cannot refresh "core": cannot find snap "core" ` And hello still doesn't work ;( ` $ hello cannot locate the core snap: No such file or directory `
– Sander Klootwijk
Jan 18 '17 at 10:03
Whoops, the layout in the comment above is pretty messed up, I'm a bit new to askubuntu so I don't know how to fix this. But anyway, everything between the " characters is terminal output.
– Sander Klootwijk
Jan 18 '17 at 10:05
I removed the ubuntu-core snap because of that snap, core could not be installed. Then I installed core as you suggested and now everything works fine! Thank you!
– Sander Klootwijk
Jan 18 '17 at 10:10
add a comment |
up vote
0
down vote
I did:
sudo snap install core
And that did the trick. Thanks for pointing me in the right direction!
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',
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%2f873243%2fhello-cannot-locate-the-core-snap-no-such-file-or-directory%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
I have the hello snap, notes and core installed on my computer and all of them work fine.
$ snap list
Name Version Rev Developer Notes
core 16.04.1 714 canonical -
hello 2.10 20 canonical -
notes 0.9.0~gitb6e3b34 4 notes-developers -
When the hello snap is installed, the core snap is installed along with it if core is not already installed. Try updating the core snap:
sudo snap refresh core
If core is already installed the following message will be shown:
snap "core" has no updates available
Your results of running sudo snap refresh core were as follows:
sudo snap refresh core error: cannot refresh "core": cannot find snap "core"
So uninstall the core snap and then reinstall it.
sudo snap remove core hello
sudo snap install hello # core will also be installed automatically
Hello is a terminal app that runs like this.
$ hello
Hello, world!
2
Thank you for your answer, but now I'm getting the following error: ` $ sudo snap install core error: cannot perform the following tasks: - Mount snap "core" (714) (cannot install core snap "core" when core snap "ubuntu-core" is already present) ` Refreshing doesn't work: ` $ sudo snap refresh core error: cannot refresh "core": cannot find snap "core" ` And hello still doesn't work ;( ` $ hello cannot locate the core snap: No such file or directory `
– Sander Klootwijk
Jan 18 '17 at 10:03
Whoops, the layout in the comment above is pretty messed up, I'm a bit new to askubuntu so I don't know how to fix this. But anyway, everything between the " characters is terminal output.
– Sander Klootwijk
Jan 18 '17 at 10:05
I removed the ubuntu-core snap because of that snap, core could not be installed. Then I installed core as you suggested and now everything works fine! Thank you!
– Sander Klootwijk
Jan 18 '17 at 10:10
add a comment |
up vote
1
down vote
accepted
I have the hello snap, notes and core installed on my computer and all of them work fine.
$ snap list
Name Version Rev Developer Notes
core 16.04.1 714 canonical -
hello 2.10 20 canonical -
notes 0.9.0~gitb6e3b34 4 notes-developers -
When the hello snap is installed, the core snap is installed along with it if core is not already installed. Try updating the core snap:
sudo snap refresh core
If core is already installed the following message will be shown:
snap "core" has no updates available
Your results of running sudo snap refresh core were as follows:
sudo snap refresh core error: cannot refresh "core": cannot find snap "core"
So uninstall the core snap and then reinstall it.
sudo snap remove core hello
sudo snap install hello # core will also be installed automatically
Hello is a terminal app that runs like this.
$ hello
Hello, world!
2
Thank you for your answer, but now I'm getting the following error: ` $ sudo snap install core error: cannot perform the following tasks: - Mount snap "core" (714) (cannot install core snap "core" when core snap "ubuntu-core" is already present) ` Refreshing doesn't work: ` $ sudo snap refresh core error: cannot refresh "core": cannot find snap "core" ` And hello still doesn't work ;( ` $ hello cannot locate the core snap: No such file or directory `
– Sander Klootwijk
Jan 18 '17 at 10:03
Whoops, the layout in the comment above is pretty messed up, I'm a bit new to askubuntu so I don't know how to fix this. But anyway, everything between the " characters is terminal output.
– Sander Klootwijk
Jan 18 '17 at 10:05
I removed the ubuntu-core snap because of that snap, core could not be installed. Then I installed core as you suggested and now everything works fine! Thank you!
– Sander Klootwijk
Jan 18 '17 at 10:10
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
I have the hello snap, notes and core installed on my computer and all of them work fine.
$ snap list
Name Version Rev Developer Notes
core 16.04.1 714 canonical -
hello 2.10 20 canonical -
notes 0.9.0~gitb6e3b34 4 notes-developers -
When the hello snap is installed, the core snap is installed along with it if core is not already installed. Try updating the core snap:
sudo snap refresh core
If core is already installed the following message will be shown:
snap "core" has no updates available
Your results of running sudo snap refresh core were as follows:
sudo snap refresh core error: cannot refresh "core": cannot find snap "core"
So uninstall the core snap and then reinstall it.
sudo snap remove core hello
sudo snap install hello # core will also be installed automatically
Hello is a terminal app that runs like this.
$ hello
Hello, world!
I have the hello snap, notes and core installed on my computer and all of them work fine.
$ snap list
Name Version Rev Developer Notes
core 16.04.1 714 canonical -
hello 2.10 20 canonical -
notes 0.9.0~gitb6e3b34 4 notes-developers -
When the hello snap is installed, the core snap is installed along with it if core is not already installed. Try updating the core snap:
sudo snap refresh core
If core is already installed the following message will be shown:
snap "core" has no updates available
Your results of running sudo snap refresh core were as follows:
sudo snap refresh core error: cannot refresh "core": cannot find snap "core"
So uninstall the core snap and then reinstall it.
sudo snap remove core hello
sudo snap install hello # core will also be installed automatically
Hello is a terminal app that runs like this.
$ hello
Hello, world!
edited Jan 18 '17 at 10:07
answered Jan 18 '17 at 9:01
karel
56.1k11124142
56.1k11124142
2
Thank you for your answer, but now I'm getting the following error: ` $ sudo snap install core error: cannot perform the following tasks: - Mount snap "core" (714) (cannot install core snap "core" when core snap "ubuntu-core" is already present) ` Refreshing doesn't work: ` $ sudo snap refresh core error: cannot refresh "core": cannot find snap "core" ` And hello still doesn't work ;( ` $ hello cannot locate the core snap: No such file or directory `
– Sander Klootwijk
Jan 18 '17 at 10:03
Whoops, the layout in the comment above is pretty messed up, I'm a bit new to askubuntu so I don't know how to fix this. But anyway, everything between the " characters is terminal output.
– Sander Klootwijk
Jan 18 '17 at 10:05
I removed the ubuntu-core snap because of that snap, core could not be installed. Then I installed core as you suggested and now everything works fine! Thank you!
– Sander Klootwijk
Jan 18 '17 at 10:10
add a comment |
2
Thank you for your answer, but now I'm getting the following error: ` $ sudo snap install core error: cannot perform the following tasks: - Mount snap "core" (714) (cannot install core snap "core" when core snap "ubuntu-core" is already present) ` Refreshing doesn't work: ` $ sudo snap refresh core error: cannot refresh "core": cannot find snap "core" ` And hello still doesn't work ;( ` $ hello cannot locate the core snap: No such file or directory `
– Sander Klootwijk
Jan 18 '17 at 10:03
Whoops, the layout in the comment above is pretty messed up, I'm a bit new to askubuntu so I don't know how to fix this. But anyway, everything between the " characters is terminal output.
– Sander Klootwijk
Jan 18 '17 at 10:05
I removed the ubuntu-core snap because of that snap, core could not be installed. Then I installed core as you suggested and now everything works fine! Thank you!
– Sander Klootwijk
Jan 18 '17 at 10:10
2
2
Thank you for your answer, but now I'm getting the following error: ` $ sudo snap install core error: cannot perform the following tasks: - Mount snap "core" (714) (cannot install core snap "core" when core snap "ubuntu-core" is already present) ` Refreshing doesn't work: ` $ sudo snap refresh core error: cannot refresh "core": cannot find snap "core" ` And hello still doesn't work ;( ` $ hello cannot locate the core snap: No such file or directory `
– Sander Klootwijk
Jan 18 '17 at 10:03
Thank you for your answer, but now I'm getting the following error: ` $ sudo snap install core error: cannot perform the following tasks: - Mount snap "core" (714) (cannot install core snap "core" when core snap "ubuntu-core" is already present) ` Refreshing doesn't work: ` $ sudo snap refresh core error: cannot refresh "core": cannot find snap "core" ` And hello still doesn't work ;( ` $ hello cannot locate the core snap: No such file or directory `
– Sander Klootwijk
Jan 18 '17 at 10:03
Whoops, the layout in the comment above is pretty messed up, I'm a bit new to askubuntu so I don't know how to fix this. But anyway, everything between the " characters is terminal output.
– Sander Klootwijk
Jan 18 '17 at 10:05
Whoops, the layout in the comment above is pretty messed up, I'm a bit new to askubuntu so I don't know how to fix this. But anyway, everything between the " characters is terminal output.
– Sander Klootwijk
Jan 18 '17 at 10:05
I removed the ubuntu-core snap because of that snap, core could not be installed. Then I installed core as you suggested and now everything works fine! Thank you!
– Sander Klootwijk
Jan 18 '17 at 10:10
I removed the ubuntu-core snap because of that snap, core could not be installed. Then I installed core as you suggested and now everything works fine! Thank you!
– Sander Klootwijk
Jan 18 '17 at 10:10
add a comment |
up vote
0
down vote
I did:
sudo snap install core
And that did the trick. Thanks for pointing me in the right direction!
add a comment |
up vote
0
down vote
I did:
sudo snap install core
And that did the trick. Thanks for pointing me in the right direction!
add a comment |
up vote
0
down vote
up vote
0
down vote
I did:
sudo snap install core
And that did the trick. Thanks for pointing me in the right direction!
I did:
sudo snap install core
And that did the trick. Thanks for pointing me in the right direction!
answered Dec 4 at 16:34
Marcellus
14917
14917
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.
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%2f873243%2fhello-cannot-locate-the-core-snap-no-such-file-or-directory%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