QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1168|回复: 0

Process control

[复制链接]
发表于 2006-6-30 14:38:53 | 显示全部楼层 |阅读模式
ps
(=print status) Display the list of currently running processes with their
process IDs (PID) numbers. Use ps axu to see all processes currently running on
your system (also those of other users or without a controlling terminal), each
with the name of the owner. Use "top" to keep listing the processes currently
running.

fg PID
Bring a background or stopped process to the foreground.

bg PID
Send the process to the background. Opposite to fg. The same can be accomplished
with <Ctrl>z.  If you have stopped jobs, you have to type exit twice in row to
log out.

any_command&
Run any command in the background (the symbol "&" means "run the proceeding
command in the background").

batch any_command
Run any command (usually one that is going to take more time) when the system
load is low. I can logout, and the process will keep running.

at 17:00
Execute a command at a specified time.  You will be prompted for the command(s)
to run, until you press <Ctrl>d.

kill PID
Force a process shutdown. First determine the PID of the process to kill using
ps.

killall program_name

Kill program(s) by name.

xkill
(in an xwindow terminal) Kill a GUI-based program with mouse. (Point with your
mouse cursor at the window of the process you want to kill and click.)

lpc
(as root) Check and control the printer(s). Type "?" to see the list of
available commands.

lpq
Show the content of the printer queue. Under KDE (X-Windows), you may use
GUI-based "Printer Queue" available from "K"menu-Utilities.

lprm job_number
Remove a printing job "job_number" from the queue.

nice program_name
Run program_name adjusting its priority. Since the priority is not specified in
this example, it will be adjusted by 10 (the process will run slower), from the
default value (usually 0). The lower the number (of "niceness" to other users on
the system), the higher the priority. The priority value may be in the range -20
to 19. Only root may specify negative values. Use "top" to display the
priorities of the running processes.

renice -1 PID
(as root) Change the priority of a running process to -1. Normal users can only
adjust processes they own, and only up from the current value (make them run
slower).

<Ctrl>c, <Ctrl>z, <Ctrl>s, and <Ctrl>q also belong to this chapter but they were
described previously. In short they mean: stop the current command, send the
current command to the background, stop the data transfer, resume the data
transfer.
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-9-30 11:31 , Processed in 0.038280 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表