일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- G-suite
- XCP-ng
- proxycfg
- Windows
- docker
- hardening
- pfsense
- 한글가이드
- PlayBook
- 보안양파
- x-pack
- xe guest utilities
- Kibana
- ansible
- ssh key 배포
- application security
- endpoint security
- elastic stack
- miniconda
- Proxy
- GitLab
- macos
- freebsd
- Elasticsearch
- 로그인불가
- centos 8
- ELASTIC
- bash
- Kibana server is not ready yet
- Today
- Total
목록IT/System & Network (299)
선 밖에 선 자유인
- vmware esxi patch 사이트https://my.vmware.com/group/vmware/patch#search - VM 모두 종료 후 유지보수 모드 변경- Patch File 을 datastore1 에 업로드 및 SSH 접속 후 패치 [root@esxi:~] esxcli software vib update --depot /vmfs/volumes/datastore1/patchfile.zip
- VMware ESXi command https://pubs.vmware.com/vsphere-50/index.jsp?topic=%2Fcom.vmware.vcli.ref.doc_50%2Fesxcli_software.html
- IP 변경# esxcli network ip interface ipv4 set -i vmk0 -I -N subnet -t static - IPv6 Disable# esxcli network ip set --ipv6-enabled=false
Physical Machine to VM copy 시 CentOS 복사 후 error find not command; 와 같은 메시지가 보이면서 부팅이 안되는 경우가 있음 # yum install grub2-efi # grub2-mkconfig -o /boot/grub2/grub.cfg # grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg 후 재부팅 https://www.dedoimedo.com/computers/grub2-fedora-command-not-found.html
우선 VMware tools 설치 후 VM설정에서 VM옵션 -> 고급 -> 구성매개변수 편집 -> isolation.tools.copy.disable FALSEisolation.tools.paste.disable FALSE 추가
- 우선 가상 디스크 생성# qemu-img create -f qcow2 -o size=25G /var/lib/libvirt/images/Win7.img - iso 파일을 이용하여 install# virt-install --name Win7 --ram 2048 --disk path=/var/lib/libvirt/images/Win7.img --vcpus 1 --os-type Windows --network bridge=virbr0 --graphics vnc --console pty,target_type=serial --cdrom /opt/backup/iso/Win7.iso
# cd /var/lib/libvirt/images# qemu-img resize windows.img +10G
windows 7 VMDK의 경우 - Vmware 디스크 파일을 raw 디스크로 변환# qemu-img convert -f vmdk -O qcow2 Win7.vmdk Win7.img - 생성된 이미지를 이동 후 Guest VM 생성# mv Win7.img /var/lib/libvirt/images/# virt-install --name Win7 --ram 2048 --os-type=windows --vcpus=1 --graphics vnc --disk path=/var/lib/libvirt/images/Win7.img --import - 좀 더 자세한 옵션은 아래와 같이 가능# virt-install --name Windows7 --ram 2048 --os-type=windows --os-variant=..