Hide Forgot
Description of problem: I tried to set the affinity of a process following http://www.cyberciti.biz/tips/setting-processor-affinity-certain-task-or-process.html which reads "taskset 0x00000001 -p 13545". The usage of taskset currently reads: Usage: taskset [options] [mask | cpu-list] [pid|cmd [args...]] which matches the command given above. I hence expected to be able to run taskset 0x00000001 -p 11930 but it fails: taskset: executing -p failed: No such file or directory
Your command taskset 0x00000001 -p 11930 does not match with expected and documented command options. You have to use taskset -p 0x00000001 11930