Some apps not opening on CentOS 7
I've some apps on CentOS 7.5 with GNOME that won't open when clicked.
The Weather app for example, when clicked, it seems to load, but does nothing.. it doesn't open.
I found a similar issue here, saying the file /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js
should be changed on line 77 with value this._app.open_new_window(-1);
, but i found it's already changed.
It has already open on the beginning of installation but for some unknown reason it's not opening anymore.
centos application
add a comment |
I've some apps on CentOS 7.5 with GNOME that won't open when clicked.
The Weather app for example, when clicked, it seems to load, but does nothing.. it doesn't open.
I found a similar issue here, saying the file /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js
should be changed on line 77 with value this._app.open_new_window(-1);
, but i found it's already changed.
It has already open on the beginning of installation but for some unknown reason it's not opening anymore.
centos application
add a comment |
I've some apps on CentOS 7.5 with GNOME that won't open when clicked.
The Weather app for example, when clicked, it seems to load, but does nothing.. it doesn't open.
I found a similar issue here, saying the file /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js
should be changed on line 77 with value this._app.open_new_window(-1);
, but i found it's already changed.
It has already open on the beginning of installation but for some unknown reason it's not opening anymore.
centos application
I've some apps on CentOS 7.5 with GNOME that won't open when clicked.
The Weather app for example, when clicked, it seems to load, but does nothing.. it doesn't open.
I found a similar issue here, saying the file /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js
should be changed on line 77 with value this._app.open_new_window(-1);
, but i found it's already changed.
It has already open on the beginning of installation but for some unknown reason it's not opening anymore.
centos application
centos application
edited Dec 17 at 20:50
asked Aug 5 at 21:35
El_Dorado
357
357
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
There's likely another process that's running that's blocking it or there's a file that's blocking it, such as a lock file.
In a terminal you can try launching it manually to see what's up.
$ gnome-weather
If you don't see anything specific using that method, then you need to start tracing it. I typically do it like this:
$ strace -s 2000 gnome-weather
Debugging with strace
can be a little daunting, so start by looking at your /home
directory to see if there's a file that's blocking it.
$ strace -s 2000 gnome-weather |& grep -E open | grep -i /home
Then look at /etc
& other directories to see if it's hanging on any particular file access (read/write).
Thank You for the answer. Executinggnome-weather
does nothing, andstrace -s 2000 gnome-weather
renders information I can't understand, as you have said it's daunting. Thank you anyway. I'll keep trying and see what happens.
– El_Dorado
Aug 5 at 22:53
Take the output fromstrace
cmd and post it on pastebin.com so I can see it.
– slm♦
Aug 5 at 23:04
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f460713%2fsome-apps-not-opening-on-centos-7%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
There's likely another process that's running that's blocking it or there's a file that's blocking it, such as a lock file.
In a terminal you can try launching it manually to see what's up.
$ gnome-weather
If you don't see anything specific using that method, then you need to start tracing it. I typically do it like this:
$ strace -s 2000 gnome-weather
Debugging with strace
can be a little daunting, so start by looking at your /home
directory to see if there's a file that's blocking it.
$ strace -s 2000 gnome-weather |& grep -E open | grep -i /home
Then look at /etc
& other directories to see if it's hanging on any particular file access (read/write).
Thank You for the answer. Executinggnome-weather
does nothing, andstrace -s 2000 gnome-weather
renders information I can't understand, as you have said it's daunting. Thank you anyway. I'll keep trying and see what happens.
– El_Dorado
Aug 5 at 22:53
Take the output fromstrace
cmd and post it on pastebin.com so I can see it.
– slm♦
Aug 5 at 23:04
add a comment |
There's likely another process that's running that's blocking it or there's a file that's blocking it, such as a lock file.
In a terminal you can try launching it manually to see what's up.
$ gnome-weather
If you don't see anything specific using that method, then you need to start tracing it. I typically do it like this:
$ strace -s 2000 gnome-weather
Debugging with strace
can be a little daunting, so start by looking at your /home
directory to see if there's a file that's blocking it.
$ strace -s 2000 gnome-weather |& grep -E open | grep -i /home
Then look at /etc
& other directories to see if it's hanging on any particular file access (read/write).
Thank You for the answer. Executinggnome-weather
does nothing, andstrace -s 2000 gnome-weather
renders information I can't understand, as you have said it's daunting. Thank you anyway. I'll keep trying and see what happens.
– El_Dorado
Aug 5 at 22:53
Take the output fromstrace
cmd and post it on pastebin.com so I can see it.
– slm♦
Aug 5 at 23:04
add a comment |
There's likely another process that's running that's blocking it or there's a file that's blocking it, such as a lock file.
In a terminal you can try launching it manually to see what's up.
$ gnome-weather
If you don't see anything specific using that method, then you need to start tracing it. I typically do it like this:
$ strace -s 2000 gnome-weather
Debugging with strace
can be a little daunting, so start by looking at your /home
directory to see if there's a file that's blocking it.
$ strace -s 2000 gnome-weather |& grep -E open | grep -i /home
Then look at /etc
& other directories to see if it's hanging on any particular file access (read/write).
There's likely another process that's running that's blocking it or there's a file that's blocking it, such as a lock file.
In a terminal you can try launching it manually to see what's up.
$ gnome-weather
If you don't see anything specific using that method, then you need to start tracing it. I typically do it like this:
$ strace -s 2000 gnome-weather
Debugging with strace
can be a little daunting, so start by looking at your /home
directory to see if there's a file that's blocking it.
$ strace -s 2000 gnome-weather |& grep -E open | grep -i /home
Then look at /etc
& other directories to see if it's hanging on any particular file access (read/write).
answered Aug 5 at 21:54
slm♦
247k66510676
247k66510676
Thank You for the answer. Executinggnome-weather
does nothing, andstrace -s 2000 gnome-weather
renders information I can't understand, as you have said it's daunting. Thank you anyway. I'll keep trying and see what happens.
– El_Dorado
Aug 5 at 22:53
Take the output fromstrace
cmd and post it on pastebin.com so I can see it.
– slm♦
Aug 5 at 23:04
add a comment |
Thank You for the answer. Executinggnome-weather
does nothing, andstrace -s 2000 gnome-weather
renders information I can't understand, as you have said it's daunting. Thank you anyway. I'll keep trying and see what happens.
– El_Dorado
Aug 5 at 22:53
Take the output fromstrace
cmd and post it on pastebin.com so I can see it.
– slm♦
Aug 5 at 23:04
Thank You for the answer. Executing
gnome-weather
does nothing, and strace -s 2000 gnome-weather
renders information I can't understand, as you have said it's daunting. Thank you anyway. I'll keep trying and see what happens.– El_Dorado
Aug 5 at 22:53
Thank You for the answer. Executing
gnome-weather
does nothing, and strace -s 2000 gnome-weather
renders information I can't understand, as you have said it's daunting. Thank you anyway. I'll keep trying and see what happens.– El_Dorado
Aug 5 at 22:53
Take the output from
strace
cmd and post it on pastebin.com so I can see it.– slm♦
Aug 5 at 23:04
Take the output from
strace
cmd and post it on pastebin.com so I can see it.– slm♦
Aug 5 at 23:04
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f460713%2fsome-apps-not-opening-on-centos-7%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