Want chrome close normally when shutdown or reboot ubuntu 18.04
Problem: When I reboot or shutdown ubuntu, and have chrome opened, I think chrome close normally, but not, and after start ubuntu and reopen chrome it say: chrome has closet anomaly, and you want to restore tabs?(something like that.).
Want: close chrome normally before shutdown or reboot, and start normally without error message about anomaly close.
I try to create an init script and it didn't work, I reboot or shutdown Ubuntu with chrome opened, then start chrome and test open chrome and see if it closed normally, but it din't.
Script for close Chrome
#!/bin/sh
killall -1 chrome
Path of script
# path script
etc/init.d/closeChrome
How I create
# how I create script for reboot and shutdown
sudo ln -s /etc/init.d/closeChrome /etc/rc0.d/K00closeChrome
sudo ln -s /etc/init.d/closeChrome /etc/rc6.d/K00closeChrome
sudo chmod a+x /etc/init.d/closeChrome
Update 31/12/2018: The script does its function, it execute before Ubuntu shutdown, but I think chrome close before script starts, maybe Ubuntu close sessions and their programs.
18.04 scripts google-chrome
add a comment |
Problem: When I reboot or shutdown ubuntu, and have chrome opened, I think chrome close normally, but not, and after start ubuntu and reopen chrome it say: chrome has closet anomaly, and you want to restore tabs?(something like that.).
Want: close chrome normally before shutdown or reboot, and start normally without error message about anomaly close.
I try to create an init script and it didn't work, I reboot or shutdown Ubuntu with chrome opened, then start chrome and test open chrome and see if it closed normally, but it din't.
Script for close Chrome
#!/bin/sh
killall -1 chrome
Path of script
# path script
etc/init.d/closeChrome
How I create
# how I create script for reboot and shutdown
sudo ln -s /etc/init.d/closeChrome /etc/rc0.d/K00closeChrome
sudo ln -s /etc/init.d/closeChrome /etc/rc6.d/K00closeChrome
sudo chmod a+x /etc/init.d/closeChrome
Update 31/12/2018: The script does its function, it execute before Ubuntu shutdown, but I think chrome close before script starts, maybe Ubuntu close sessions and their programs.
18.04 scripts google-chrome
I would reinstall Chrome. Usually when I have a repeated issue like this it is due to some sort of configuration corruption.
– LeinardoSmtih
Dec 31 '18 at 17:54
Reinstalling Chrome is completely irrelevant advice for this issue. Chrome needs to be stopped prior to the desktop environment being stopped. Essentially what is needed is a more up to date version of this answer: askubuntu.com/a/604709/7143 but for Ubuntu 18.04 where lightdm is no longer in use.
– Maks
5 hours ago
add a comment |
Problem: When I reboot or shutdown ubuntu, and have chrome opened, I think chrome close normally, but not, and after start ubuntu and reopen chrome it say: chrome has closet anomaly, and you want to restore tabs?(something like that.).
Want: close chrome normally before shutdown or reboot, and start normally without error message about anomaly close.
I try to create an init script and it didn't work, I reboot or shutdown Ubuntu with chrome opened, then start chrome and test open chrome and see if it closed normally, but it din't.
Script for close Chrome
#!/bin/sh
killall -1 chrome
Path of script
# path script
etc/init.d/closeChrome
How I create
# how I create script for reboot and shutdown
sudo ln -s /etc/init.d/closeChrome /etc/rc0.d/K00closeChrome
sudo ln -s /etc/init.d/closeChrome /etc/rc6.d/K00closeChrome
sudo chmod a+x /etc/init.d/closeChrome
Update 31/12/2018: The script does its function, it execute before Ubuntu shutdown, but I think chrome close before script starts, maybe Ubuntu close sessions and their programs.
18.04 scripts google-chrome
Problem: When I reboot or shutdown ubuntu, and have chrome opened, I think chrome close normally, but not, and after start ubuntu and reopen chrome it say: chrome has closet anomaly, and you want to restore tabs?(something like that.).
Want: close chrome normally before shutdown or reboot, and start normally without error message about anomaly close.
I try to create an init script and it didn't work, I reboot or shutdown Ubuntu with chrome opened, then start chrome and test open chrome and see if it closed normally, but it din't.
Script for close Chrome
#!/bin/sh
killall -1 chrome
Path of script
# path script
etc/init.d/closeChrome
How I create
# how I create script for reboot and shutdown
sudo ln -s /etc/init.d/closeChrome /etc/rc0.d/K00closeChrome
sudo ln -s /etc/init.d/closeChrome /etc/rc6.d/K00closeChrome
sudo chmod a+x /etc/init.d/closeChrome
Update 31/12/2018: The script does its function, it execute before Ubuntu shutdown, but I think chrome close before script starts, maybe Ubuntu close sessions and their programs.
18.04 scripts google-chrome
18.04 scripts google-chrome
edited Dec 31 '18 at 17:25
DarckBlezzer
asked Dec 21 '18 at 1:37
DarckBlezzerDarckBlezzer
198210
198210
I would reinstall Chrome. Usually when I have a repeated issue like this it is due to some sort of configuration corruption.
– LeinardoSmtih
Dec 31 '18 at 17:54
Reinstalling Chrome is completely irrelevant advice for this issue. Chrome needs to be stopped prior to the desktop environment being stopped. Essentially what is needed is a more up to date version of this answer: askubuntu.com/a/604709/7143 but for Ubuntu 18.04 where lightdm is no longer in use.
– Maks
5 hours ago
add a comment |
I would reinstall Chrome. Usually when I have a repeated issue like this it is due to some sort of configuration corruption.
– LeinardoSmtih
Dec 31 '18 at 17:54
Reinstalling Chrome is completely irrelevant advice for this issue. Chrome needs to be stopped prior to the desktop environment being stopped. Essentially what is needed is a more up to date version of this answer: askubuntu.com/a/604709/7143 but for Ubuntu 18.04 where lightdm is no longer in use.
– Maks
5 hours ago
I would reinstall Chrome. Usually when I have a repeated issue like this it is due to some sort of configuration corruption.
– LeinardoSmtih
Dec 31 '18 at 17:54
I would reinstall Chrome. Usually when I have a repeated issue like this it is due to some sort of configuration corruption.
– LeinardoSmtih
Dec 31 '18 at 17:54
Reinstalling Chrome is completely irrelevant advice for this issue. Chrome needs to be stopped prior to the desktop environment being stopped. Essentially what is needed is a more up to date version of this answer: askubuntu.com/a/604709/7143 but for Ubuntu 18.04 where lightdm is no longer in use.
– Maks
5 hours ago
Reinstalling Chrome is completely irrelevant advice for this issue. Chrome needs to be stopped prior to the desktop environment being stopped. Essentially what is needed is a more up to date version of this answer: askubuntu.com/a/604709/7143 but for Ubuntu 18.04 where lightdm is no longer in use.
– Maks
5 hours ago
add a comment |
1 Answer
1
active
oldest
votes
Taken from this answer, you need to add the following line into your /etc/gdm3/PostSession/Default
:
killall -HUP chrome
Note you will need root (eg. sudo) access to edit that Default
file.
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%2f1103495%2fwant-chrome-close-normally-when-shutdown-or-reboot-ubuntu-18-04%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
Taken from this answer, you need to add the following line into your /etc/gdm3/PostSession/Default
:
killall -HUP chrome
Note you will need root (eg. sudo) access to edit that Default
file.
add a comment |
Taken from this answer, you need to add the following line into your /etc/gdm3/PostSession/Default
:
killall -HUP chrome
Note you will need root (eg. sudo) access to edit that Default
file.
add a comment |
Taken from this answer, you need to add the following line into your /etc/gdm3/PostSession/Default
:
killall -HUP chrome
Note you will need root (eg. sudo) access to edit that Default
file.
Taken from this answer, you need to add the following line into your /etc/gdm3/PostSession/Default
:
killall -HUP chrome
Note you will need root (eg. sudo) access to edit that Default
file.
answered 4 hours ago
MaksMaks
186110
186110
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%2f1103495%2fwant-chrome-close-normally-when-shutdown-or-reboot-ubuntu-18-04%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
I would reinstall Chrome. Usually when I have a repeated issue like this it is due to some sort of configuration corruption.
– LeinardoSmtih
Dec 31 '18 at 17:54
Reinstalling Chrome is completely irrelevant advice for this issue. Chrome needs to be stopped prior to the desktop environment being stopped. Essentially what is needed is a more up to date version of this answer: askubuntu.com/a/604709/7143 but for Ubuntu 18.04 where lightdm is no longer in use.
– Maks
5 hours ago