0

I am new to Ubuntu. I am using it for radius manager. When I typed

ps ax | grep rm

I got:

50 ?        S<     0:00 [acpi_thermal_pm]
1153 ?        Ssl    0:00 /usr/local/bin/rmconntrack
1171 ?        Ssl    0:00 /usr/local/bin/rmpoller
1424 pts/0    S+     0:00 grep --color=auto rm

When I try to kill -9 50 it does not work. I typed:

kill -9 50

Still:

50 ?        S<     0:00 [acpi_thermal_pm]
1153 ?        Ssl    0:00 /usr/local/bin/rmconntrack
1171 ?        Ssl    0:00 /usr/local/bin/rmpoller
1424 pts/0    S+     0:00 grep --color=auto rm

It's the same; nothing killed. Can any one please help me?

muru
  • 197,895
  • 55
  • 485
  • 740

2 Answers2

0

You might need to be root to kill the process. In that case add sudo in front of the command:

sudo kill -9 50
muru
  • 197,895
  • 55
  • 485
  • 740
0

You can't kill Kernel Threads with userspace kill.

If you really want to get rid of this process, you can either remove the the thermal kernel module with rmmod thermal, or build a new kernel without it (if its builtin, not a module). But you shouldn't do it unless you have a very good reason for it.

muru
  • 197,895
  • 55
  • 485
  • 740
Daniel
  • 558
  • i was installed radius manger and i want run up it after i typed radiusd -X Failed binding to authentication address * port 1812: Address already in use /usr/local/etc/raddb/radiusd.conf[240]: Error binding to port for 0.0.0.0 port 1 i want to kill that 50 to run it up – ALI BADWI Jun 13 '16 at 21:54
  • That process has no relation at all with radiusd. The bind error means that another process is using the same udp/tcp port, probably another radiusd instance is still running. – Daniel Jun 13 '16 at 21:57
  • thanks so much Daniel i am trying to look what the reasons for this problem . – ALI BADWI Jun 13 '16 at 22:04
  • you are right . its working now thanks so much – ALI BADWI Jun 13 '16 at 22:09