nice 命令详解

| 选择喜欢的代码风格  

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

nice 命令安装:


-bash: nice: command not found

#Debian
apt-get install coreutils

#Ubuntu
apt-get install coreutils

#Alpine
apk add coreutils

#Arch Linux
pacman -S coreutils

#Kali Linux
apt-get install coreutils

#CentOS
yum install coreutils

#Fedora
dnf install coreutils

#OS X
brew install coreutils

#Raspbian
apt-get install coreutils

#Docker
docker run cmd.cat/nice nice

nice 命令补充说明:


nice 命令用于以指定的进程调度优先级启动其他的程序。

nice 命令语法:


nice [OPTION] [COMMAND [ARG]...]

nice 命令选项:


-n:指定进程的优先级(整数)。

nice 命令参数:


指令及选项:需要运行的指令及其他选项。

nice 命令实例


nice 显示新流程的默认友好级别; 通常为零,因此输出可能如下所示:

[root@commandnotfound ~]$ nice
0

nice 启动具有更改的优先级的程序:

nice -n niceness_value command

nice 新建一个进程并设置优先级,将当前目录下的 documents 目录打包,但不希望 tar 占用太多 CPU:

nice -19 tar zcf pack.tar.gz documents

nice 命令扩展阅读:




nice 命令评论