Want chrome close normally when shutdown or reboot ubuntu 18.04












0














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.










share|improve this question
























  • 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


















0














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.










share|improve this question
























  • 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
















0












0








0







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.










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 31 '18 at 17:25

























asked Dec 21 '18 at 1:37









DarckBlezzer

19329




19329












  • 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


















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












0






active

oldest

votes











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
});


}
});














draft saved

draft discarded


















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

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

Mangá

 ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕