Even If I close sublime the process continues to go, seeing as my laptop revs until slowing down to a crawl a few minutes later. I'm on mint linux, and can't seem to kill the process from terminal either.
Asked
Active
Viewed 2.4k times
24
-
1There is no reason why you could not kill the process from a terminal. Can you please show the process listing using ps and tell us how you tried to kill it. – Mikko Ohtamaa Feb 11 '13 at 13:55
7 Answers
22
Execute this command:
ps -A | grep sublime
result Example :
2547 ? 00:02:37 sublime_text
You will kill process with :
kill -9 2547

Ritesh Sinha
- 820
- 5
- 22
- 50

Jirson Tavera
- 1,303
- 14
- 18
5
$ ps aux | grep Sublime
bibhas 646 0.0 4.2 3489812 177340 ?? S Fri08PM 29:17.03 /Applications/Sublime Text 2.app/Contents/MacOS/Sublime Text 2 -psn_0_487543
$ sudo kill -9 646

Bibhas Debnath
- 14,559
- 17
- 68
- 96
-
This is happening to me also in Ubuntu. I tries to kill it with the ID like you have suggested. But still it is here. When I run ps again it is still there with same ID – Happy Coder Sep 12 '13 at 08:52
-
I am also getting it like that. Any one have any idea how to kill it. ? because one instance is running, I am not able to open sublime again, – Happy Coder Oct 04 '13 at 08:41
2
One simple and brutal way is to just kill the process of what the program is running on. For example, if you are running a java program, then use $killall java
.

hac.jack
- 586
- 5
- 13
0
For those who use fishshell(probably helpful for zsh) with iTerm on MAC:
kill -9 (pgrep Sublime)

Yurii Verbytskyi
- 1,962
- 3
- 19
- 27
0
On MAC:
First of all you have to kill process and then remove all sessions
1) kill -9 $(pgrep Sublime)
2) sudo rm /Users/YOUR----NAME----HERE/Library/Application\ Support/Sublime\ Text\ 3/Local/Auto\ Save\ Session.sublime_session

Victor Isaikin
- 71
- 2
- 3