클라우드용_이미지_생성

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
클라우드용_이미지_생성 [2023/05/26 01:40] koov클라우드용_이미지_생성 [2023/05/28 04:24] (현재) – [클라우드용 이미지 생성] koov
줄 1: 줄 1:
 ====== 클라우드용 이미지 생성 ====== ====== 클라우드용 이미지 생성 ======
 + --- //[[koovis@gmail.com|이강우]] 2023/05/28 13:24//
 +
 +오픈스택용 이미지 생성에 대한 내용은 아래 문서를 기본적으로 확인하도록 한다.
 +  * https://docs.openstack.org/image-guide/create-images-manually.html
 +
 +
 +===== RHEL / CentOS =====
  
   * [[RHEL 8/9 VM Template Sealing]]   * [[RHEL 8/9 VM Template Sealing]]
줄 59: 줄 66:
 $ grub2-mkconfig -o /boot/grub2/grub.cfg  $ grub2-mkconfig -o /boot/grub2/grub.cfg 
 $ grubby --info DEFAULT $ grubby --info DEFAULT
-</code> 
-</WRAP> 
- 
-debian/ubuntu 시스템의 경우 
- 
-<WRAP prewrap> 
-<code bash> 
-$ sudo update-grub 
-# 또는 
-$ sudo grub-mkconfig -o /boot/grub/grub.cfg 
 </code> </code>
 </WRAP> </WRAP>
줄 99: 줄 96:
 </WRAP> </WRAP>
  
- +==== 참조링크 ====
- +
-===== 참조링크 =====+
   * https://docs.openstack.org/image-guide/openstack-images.html   * https://docs.openstack.org/image-guide/openstack-images.html
   * https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/configuring_and_managing_cloud-init_for_rhel_8   * https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/configuring_and_managing_cloud-init_for_rhel_8
   * https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.2/html/instances_and_images_guide   * https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.2/html/instances_and_images_guide
  
 +
 +===== Debian / Ubuntu =====
 +
 +1. 호스트명 초기화
 +<WRAP prewrap>
 +<code bash>
 +truncate -s0 /etc/hostname
 +hostnamectl set-hostname localhost
 +</code>
 +</WRAP>
 +
 +2. ''netplan'' 파일 제거
 +<WRAP prewrap>
 +<code bash>
 +rm /etc/netplan/50-cloud-init.yaml
 +</code>
 +</WRAP>
 +
 +3. ''machine-id'' 제거
 +<WRAP prewrap>
 +<code bash>
 +truncate -s0 /etc/machine-id
 +rm /var/lib/dbus/machine-id
 +ln -s /etc/machine-id /var/lib/dbus/machine-id
 +</code>
 +</WRAP>
 +
 +4. ''cloud-init clean'' 실행
 +표면적으로는 이 프로세스에서 가장 중요한 단계입니다. ''cloud-init clean''를 실행하지 않으면 클라우드 초기화가 최초 부팅 시 이미 실행되어 작업을 완료한 것으로 간주하므로 클라우드 초기화가 실행되지 않는 손상된 VM 템플릿이 남게 됩니다.
 +
 +5. ''root''패스워드 비활성화
 +<WRAP prewrap>
 +<code bash>
 +passwd -dl root
 +</code>
 +</WRAP>
 +
 +6. history 제거
 +<WRAP prewrap>
 +<code bash>
 +truncate -s0 ~/.bash_history
 +history -c
 +</code>
 +</WRAP>
 +
 +7. 콘솔 터미널 설정
 +  * 커널 설정 변경
 +''/etc/default/grub'' 파일 내용 추가
 +<WRAP prewrap>
 +<code vim>
 +GRUB_CMDLINE_LINUX_DEFAULT="console=tty0 console=ttyS0,115200n8"
 +</code>
 +</WRAP>
 +
 +<WRAP prewrap>
 +<code bash>
 +$ sudo update-grub
 +# 또는
 +$ sudo grub-mkconfig -o /boot/grub/grub.cfg
 +</code>
 +</WRAP>
 +
 +
 +8. VM 종료
 +shutdown -h now
 +
 +==== 참조링크 ====
 +  * https://docs.openstack.org/image-guide/ubuntu-image.html
 +  * https://medium.com/@dsykes012/making-a-custom-ubuntu-20-04-lts-focal-fossa-vm-template-that-works-with-cloud-init-2cfffb6783b4
  
  • 클라우드용_이미지_생성.1685065232.txt.gz
  • 마지막으로 수정됨: 2023/05/26 01:40
  • 저자 koov