Trying to download and install Mobile Atlas Creator. It comes with an executable script file to execute the program. When I run the start.sh file, it just opens up the text editor and blinks at me. This is what it is now:
#!/bin/sh
java -Xmx512M-jar Mobile_Atlas_Creator.jar
# This file will start the Mobile Atlas Creator with custom memory settings for
# the JVM. With the below settings the heap size (Available memory for the application)
# will range from 64 megabyte up to 512 megabyte.
it is supposed to run the .jar file - if I run that manually by clicking on it, it says I should run it from the start file and I need to have a "-Xmx512M" key on the start command. I edited the command line to include the key - but it ignores it. Obviously I am pretty clueless about java/linux.
john
#!/bin/sh
java -Xmx512M-jar Mobile_Atlas_Creator.jar
# This file will start the Mobile Atlas Creator with custom memory settings for
# the JVM. With the below settings the heap size (Available memory for the application)
# will range from 64 megabyte up to 512 megabyte.
it is supposed to run the .jar file - if I run that manually by clicking on it, it says I should run it from the start file and I need to have a "-Xmx512M" key on the start command. I edited the command line to include the key - but it ignores it. Obviously I am pretty clueless about java/linux.
john