답변:
내가 실수하지 않으면 Linux에서 동일합니다. 으로 자바 명령에는 두 가지 옵션이 있습니다 :
따라서 -Xmx1024m -Xms128m
작동합니다.
다음은 man java
터미널 에서 수행 한 추출입니다.
-Xmsn
Specify the initial size, in bytes, of the memory allocation
pool. This value must be a multiple of 1024 greater than 1MB.
Append the letter k or K to indicate kilobytes, or m or M to
indicate megabytes. The default value is chosen at runtime
based on system configuration. For more information, see
HotSpot Ergonomics
Examples:
-Xms6291456
-Xms6144k
-Xms6m
-Xmxn
Specify the maximum size, in bytes, of the memory allocation
pool. This value must a multiple of 1024 greater than 2MB.
Append the letter k or K to indicate kilobytes, or m or M to
indicate megabytes. The default value is chosen at runtime
based on system configuration. For more information, see
HotSpot Ergonomics
Examples:
-Xmx83886080
-Xmx81920k
-Xmx80m
따라서 기본적으로 동일한 매개 변수를 사용하는 의심에 대해 요약합니다.
이것을 사용하려면 터미널 로 가서 jar 프로그램으로 입력하십시오. 내 예에서는 minecraft 서버를 사용하고 java -Xms1024M -Xmx2048M -jar minecraft.jar
있습니다.
다음은 발생하는 이미지입니다.
매개 변수는 대소 문자를 구분 합니다. 따라서 xmx1024M은 Xmx1024M과 다릅니다.
Linux에서도 마찬가지입니다. 옵션을 영구적으로 만들려면 JAVA_OPTS
환경 변수를 내보낼 수 있습니다 .
사용자별로 수행하는 것이 좋습니다. .profile
홈 디렉토리에서 파일을 수정하거나 파일 .bash_profile
이 존재 하고 bash를 사용 하는 경우 다음 행을 포함 시키십시오.
export JAVA_OPTS='-Xincgc -Xmx2048M'
이를 설정 한 후에 적용하려면 셸 세션을 다시 시작해야합니다.
또는 / etc / profile에서 시스템 전체 프로필을 수정할 수도 있습니다.
편집 : Java 브라우저 플러그인의 설정은 Java 제어판 ( http://docs.oracle.com/javase/1.4.2/docs/guide/plugin/developer_guide/control_panel.html) 에서 정의됩니다 .