2019-05-21

Xen Server Bootoption 설정



1. VM machine uuid 확인.

   $ xe vm-list

     uuid ( RO)           : 79ce516a-d6e2-97bc-ee76-178a50d62691
         name-label ( RW): Name of VMMachine
         power-state ( RO): running


2. VM Machine bootoption 변경. 

  $ xe vm-param-set uuid=79ce516a-d6e2-97bc-ee76-178a50d62691 HVM-boot-policy=BIOS\ order


3. result

before
 


after

댓글 없음:

댓글 쓰기

Elasticsearch Heap Size

  Elasticsearch는 Java 기반으로 동작을 합니다. Java는 가비시 컬렉터 (garbage-collected)에 의해서 관리가 되며, Java 객체는 힙(Heap) 이라고하는 메모리의 런타임 영역에 상주합니다.  Elasticsear...