I'm running Minecraft under Linux, which involves running an executable .jar file. This means it shows up as "java" under ps, rather than "minecraft". I would like to assign it the process name "minecraft".
Looking around, I found the following tip for assigning a process name via bash:
how to change the name of a Java application process?
exec -a goodname java ...
I usually run with:
java -cp ~/Games/Minecraft/Minecraft.jar net.minecraft.LauncherFrame
So tried make a bash script:
#!/bin/bash
exec -a minecraft java -cp ~/Games/Minecraft/Minecraft.jar net.minecraft.LauncherFrame
But when I run this, it still shows up as "java" under the ps command.
What am I doing wrong?
exec -aworks for me on Ubuntu 8.04, but it still displays all the java arguments ("-cp" and so on) and killall wouldn't find the process by its new name, onlykillall javaworked. You may also wish to use binfmt to run JAR files directly from the command line. – Sergey Tachenov Jan 10 '11 at 19:06