Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我想为这样的进程设置亲和力时:
sudo taskset -c 0 -p 30466
我收到此错误:
taskset: executing -p failed: No such file or directory
但是top命令显示进程正在执行。
top
更新:
命令
sudo taskset -c -p 0 30466
作品
正确的语法是taskset -cp 0 30466
taskset -cp 0 30466
老问题,但仍然查看了很多。
出于某种原因,taskset 正在尝试执行 command -p,甚至没有尝试使用您指定的 PID 查找进程。
-p
您使用的是哪个版本的任务集?你能检查man taskset一下你的版本是否支持-p?
man taskset