How do I kill redshift?
I have installed redshift using apt-get.
I started it up in a terminal window, and then accidentally killed the terminal. Redshift did not stop running itself. My screen is most certainly still under the influence of redshift.
I open Linux Mint system monitor, and I could not find anything that I thought was redshift. Certainly not anything named redshift.
So how do I go about killing redshift?
process kill system-monitor redshift
add a comment |
I have installed redshift using apt-get.
I started it up in a terminal window, and then accidentally killed the terminal. Redshift did not stop running itself. My screen is most certainly still under the influence of redshift.
I open Linux Mint system monitor, and I could not find anything that I thought was redshift. Certainly not anything named redshift.
So how do I go about killing redshift?
process kill system-monitor redshift
Dops -A | grep redshift
to see if it is still running. If yes than you also get the Process ID (the first number) than dosudo kill -9 <Process ID>
. There are certainly faster and beautiful one-liners to kill a process by name ;) but this should do it also
– derHugo
Oct 4 '17 at 5:00
the process name must not be redshift, because the grep did not return anything. But redshift is most certainly still running.
– ScottF
Oct 4 '17 at 21:16
add a comment |
I have installed redshift using apt-get.
I started it up in a terminal window, and then accidentally killed the terminal. Redshift did not stop running itself. My screen is most certainly still under the influence of redshift.
I open Linux Mint system monitor, and I could not find anything that I thought was redshift. Certainly not anything named redshift.
So how do I go about killing redshift?
process kill system-monitor redshift
I have installed redshift using apt-get.
I started it up in a terminal window, and then accidentally killed the terminal. Redshift did not stop running itself. My screen is most certainly still under the influence of redshift.
I open Linux Mint system monitor, and I could not find anything that I thought was redshift. Certainly not anything named redshift.
So how do I go about killing redshift?
process kill system-monitor redshift
process kill system-monitor redshift
asked Oct 4 '17 at 4:55
ScottFScottF
2611317
2611317
Dops -A | grep redshift
to see if it is still running. If yes than you also get the Process ID (the first number) than dosudo kill -9 <Process ID>
. There are certainly faster and beautiful one-liners to kill a process by name ;) but this should do it also
– derHugo
Oct 4 '17 at 5:00
the process name must not be redshift, because the grep did not return anything. But redshift is most certainly still running.
– ScottF
Oct 4 '17 at 21:16
add a comment |
Dops -A | grep redshift
to see if it is still running. If yes than you also get the Process ID (the first number) than dosudo kill -9 <Process ID>
. There are certainly faster and beautiful one-liners to kill a process by name ;) but this should do it also
– derHugo
Oct 4 '17 at 5:00
the process name must not be redshift, because the grep did not return anything. But redshift is most certainly still running.
– ScottF
Oct 4 '17 at 21:16
Do
ps -A | grep redshift
to see if it is still running. If yes than you also get the Process ID (the first number) than do sudo kill -9 <Process ID>
. There are certainly faster and beautiful one-liners to kill a process by name ;) but this should do it also– derHugo
Oct 4 '17 at 5:00
Do
ps -A | grep redshift
to see if it is still running. If yes than you also get the Process ID (the first number) than do sudo kill -9 <Process ID>
. There are certainly faster and beautiful one-liners to kill a process by name ;) but this should do it also– derHugo
Oct 4 '17 at 5:00
the process name must not be redshift, because the grep did not return anything. But redshift is most certainly still running.
– ScottF
Oct 4 '17 at 21:16
the process name must not be redshift, because the grep did not return anything. But redshift is most certainly still running.
– ScottF
Oct 4 '17 at 21:16
add a comment |
2 Answers
2
active
oldest
votes
I found the clue in this answer.
Seems that redshift is not running anymore since you killed the terminal BUT the last screen settings keep being there constantly.
So you have to reset your screen manually. I'm citing:
You have two options:
Try to set the colour temperature of your screen back, manually, to
6500 (via the button menu that most screens have)
or
Reinstall Redshift; don't run the interface, but set the temperature
from command line:
redshift -O 6500
Then uninstall redshift again.
Either one of these options should work.
So in your case if you want to keep redshift anyway you don't have to reinstall and uninstall it. Just use the command
redshift -O 6500
to reset the display color.
This is correct. Because yesterday I noticed I WAS able to find the redshift process while the terminal was open.
– ScottF
Oct 5 '17 at 14:46
add a comment |
Just Type
redshift -x
it get your Screen Color to Normal
I am Also Searching for this
New contributor
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%2f961815%2fhow-do-i-kill-redshift%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
I found the clue in this answer.
Seems that redshift is not running anymore since you killed the terminal BUT the last screen settings keep being there constantly.
So you have to reset your screen manually. I'm citing:
You have two options:
Try to set the colour temperature of your screen back, manually, to
6500 (via the button menu that most screens have)
or
Reinstall Redshift; don't run the interface, but set the temperature
from command line:
redshift -O 6500
Then uninstall redshift again.
Either one of these options should work.
So in your case if you want to keep redshift anyway you don't have to reinstall and uninstall it. Just use the command
redshift -O 6500
to reset the display color.
This is correct. Because yesterday I noticed I WAS able to find the redshift process while the terminal was open.
– ScottF
Oct 5 '17 at 14:46
add a comment |
I found the clue in this answer.
Seems that redshift is not running anymore since you killed the terminal BUT the last screen settings keep being there constantly.
So you have to reset your screen manually. I'm citing:
You have two options:
Try to set the colour temperature of your screen back, manually, to
6500 (via the button menu that most screens have)
or
Reinstall Redshift; don't run the interface, but set the temperature
from command line:
redshift -O 6500
Then uninstall redshift again.
Either one of these options should work.
So in your case if you want to keep redshift anyway you don't have to reinstall and uninstall it. Just use the command
redshift -O 6500
to reset the display color.
This is correct. Because yesterday I noticed I WAS able to find the redshift process while the terminal was open.
– ScottF
Oct 5 '17 at 14:46
add a comment |
I found the clue in this answer.
Seems that redshift is not running anymore since you killed the terminal BUT the last screen settings keep being there constantly.
So you have to reset your screen manually. I'm citing:
You have two options:
Try to set the colour temperature of your screen back, manually, to
6500 (via the button menu that most screens have)
or
Reinstall Redshift; don't run the interface, but set the temperature
from command line:
redshift -O 6500
Then uninstall redshift again.
Either one of these options should work.
So in your case if you want to keep redshift anyway you don't have to reinstall and uninstall it. Just use the command
redshift -O 6500
to reset the display color.
I found the clue in this answer.
Seems that redshift is not running anymore since you killed the terminal BUT the last screen settings keep being there constantly.
So you have to reset your screen manually. I'm citing:
You have two options:
Try to set the colour temperature of your screen back, manually, to
6500 (via the button menu that most screens have)
or
Reinstall Redshift; don't run the interface, but set the temperature
from command line:
redshift -O 6500
Then uninstall redshift again.
Either one of these options should work.
So in your case if you want to keep redshift anyway you don't have to reinstall and uninstall it. Just use the command
redshift -O 6500
to reset the display color.
answered Oct 5 '17 at 6:06
derHugoderHugo
2,31521531
2,31521531
This is correct. Because yesterday I noticed I WAS able to find the redshift process while the terminal was open.
– ScottF
Oct 5 '17 at 14:46
add a comment |
This is correct. Because yesterday I noticed I WAS able to find the redshift process while the terminal was open.
– ScottF
Oct 5 '17 at 14:46
This is correct. Because yesterday I noticed I WAS able to find the redshift process while the terminal was open.
– ScottF
Oct 5 '17 at 14:46
This is correct. Because yesterday I noticed I WAS able to find the redshift process while the terminal was open.
– ScottF
Oct 5 '17 at 14:46
add a comment |
Just Type
redshift -x
it get your Screen Color to Normal
I am Also Searching for this
New contributor
add a comment |
Just Type
redshift -x
it get your Screen Color to Normal
I am Also Searching for this
New contributor
add a comment |
Just Type
redshift -x
it get your Screen Color to Normal
I am Also Searching for this
New contributor
Just Type
redshift -x
it get your Screen Color to Normal
I am Also Searching for this
New contributor
New contributor
answered 4 mins ago
shodkk comshodkk com
1
1
New contributor
New contributor
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%2f961815%2fhow-do-i-kill-redshift%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
Do
ps -A | grep redshift
to see if it is still running. If yes than you also get the Process ID (the first number) than dosudo kill -9 <Process ID>
. There are certainly faster and beautiful one-liners to kill a process by name ;) but this should do it also– derHugo
Oct 4 '17 at 5:00
the process name must not be redshift, because the grep did not return anything. But redshift is most certainly still running.
– ScottF
Oct 4 '17 at 21:16