在linux上为程序设置默认的nice值

前端之家收集整理的这篇文章主要介绍了在linux上为程序设置默认的nice值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
看起来很奇怪,我找不到如何为程序设置默认值的信息(不适用于用户或组!).我想启动所有chrome和firefox实例,其值为10.什么是最合适的解决方案?

解决方法

为什么不使用〜/ .local / bin而不是弄乱你的/usr/bin并且每次更新都被搞砸了?
## one-time setup
mkdir -p ~/.local/bin
# prepend new path to PATH to give it priority
echo 'PATH=$HOME/.local/bin:$PATH' >> ~/.bashrc
# then open new terminal or
source ~/.bashrc

## create a wrapper script
# $@ is there to passthrough args.
echo 'nice -10' `which firefox` '$@' > ~/.local/bin/firefox
# make it executable
chmod +x ~/.local/bin/firefox

# check sanity
which firefox
cat `which firefox`
原文链接:https://www.f2er.com/linux/397684.html

猜你在找的Linux相关文章