Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
How to kill wine application with kill command from command lineAs a Windows user I expected to press CTRL+ALT+DEL and see the list of processes that could be easily killed with a GUI program. However CTRL+ALT+DEL didn't bring the list of processes or applications in Ubuntu 9.10. But it is very easy to kill the application from a command line:
Type the following in the Terminal: Code:
ps axwww | grep KEYWORD Example: Killing Replay Media Catcher from command line: Code:
admin@admin-desktop:~$ ps axwww | grep Replay 15864 ? Sl 0:01 C:\Program Files\Replay Media Catcher\MediaCatcher.exe 15903 pts/1 S+ 0:00 grep --color=auto Replay Then use this number to kill the process with (kill -9 PROCESS_NUMBER): Code:
admin@admin-desktop:~$kill -9 15864 admin@admin-desktop:~$ ps axwww | grep Replay 15903 pts/1 S+ 0:00 grep --color=auto Replay You can also use the pidof to find the process id and then use this process id with the kill command. For example, if you want to kill the tvtime process: Code:
admin@admin-desktop::~/rtmpdump$ pidof tvtime 10673 admin@admin-desktop::~/rtmpdump$ kill -9 10673 |
#2
|
|||
|
|||
Re: How to kill wine application with kill command from command lineIf you don't like command line, you can kill an application with xkill. Press ALT+F2, type xkill and hit the Run button. The program will displays a special cursor (usually a crosshair or a skull and crossbones) and will display a message such as
Code:
Select the window whose client you wish to kill with button Please note that xkill is not intended to be used as a routine way to terminate X client programs, but only as a last resort to abort malfunctioning or malicious clients. Unlike kill, xkill does not request that the client process, which may be running on a different machine, be terminated. In fact, the process can continue running without an X connection. Most clients, however, do abort when their X connections are unexpectedly closed. |
Tags: close, command line, kill, linux, process, terminal, ubuntu, wine |
Thread Tools | |
Display Modes | |
|
|