1. How to? Delete Registry key HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook
Export & Import
1. vm export xe vm-list xe vm-export vm=[vm-name] compress=true filename=[Path ex> /backup/vm0001.xva] 2. snapshot export xe snapshot-list xe snapshot-export-to-template snapshot-uuid=[vm uuid] filename=[Path ex> /backup/vm0001.xva] 3. vm import xe vm-import filename=[Path ex> /backup/vm0001.xva]
Network Bridge 설정
1. Intro XenServer Network Bridge 설정 2. How to? 2.1. set switch mode cat /etc/xensource/network.conf xe-switch-network-backend bridge xe-switch-network-backend openvswitch cat /etc/xensource/network.conf 2.2. set forward vi /etc/sysctl.conf net.ipv4.ip_forward=1 sysctl -p /etc/sysctl.conf
Change XenCenter Port
1. Intro When you want to change the connection port of XenServer. Default Port: 443 2. How to do a. edit xapissl file vi /opt/xensource/libexec/xapissl 22 #ACCEPT=$2 ; comment 23 ACCEPT=[PORT] ; Add New line b. restart service systemctl restart xapi c. check port netstat -antup | grep stunnel
XenServer OS update
1. How to? Download XenServer-x.x.x-update.iso https://www.citrix.com/downloads/citrix-hypervisor/ xe upload xe update-upload file-name=[XenServer-x.x.x-update.iso] sr-uuid=[SR UUID] 위 명령의 실행 결과값을 아래의 UUID에 입력 xe update-pool-apply uuid=[UUID] 재부팅 reboot
CentOS 7 default setting
1. Intro CentOS 7 default setting 2. Command 2.1. change hostname nmtui-hostname 2.2. Install net-tools ; ifconfig yum install net-tools 2.3. clean service systemctl stop firewalld systemctl disable firewalld systemctl stop postfix systemctl disable postfix
[Odoo] remove manage databases
1. intro I want to remove the “Manage Databases” display from Odoo’s first page. 2. How to do? vi /etc/odoo/odoo.conf ; 추가 list_db = False service odoo restart 3. Result
Set up ip on Ubuntu 18
1. intro Since Ubuntu 18 LTS, ip configuration has changed to netplan. 2. How to set up? a. check interface ls /sys/class/net b. set ip sudo vi /etc/netplan/50-cloud-init.yaml network: ethernets: eth0: addresses: [IP/Subnet] gateway4: Gateway nameservers: addresses: [DNS IP1, DNS IP2] dhcp4: no version: 2 c. apply sudo netplan apply d. show ip ip […]
MS Office warning message
1. Intro I got this warning message when you open a file. 2. Solve Add Registry Key Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Excel\Security] “ExtensionHardening”=dword:00000000 [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\PowerPoint\Security] “ExtensionHardening”=dword:00000000 [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Word\Security] “ExtensionHardening”=dword:00000000
bash color
1. Intro Bash script color table 2. Command 2.1. Set # Set echo -e “### Set” echo -e “\e[1mBold \e[0m” echo -e “\e[2mDim \e[0m” echo -e “\e[4mUnderlined \e[0m” echo -e “\e[5mBlink \e[0m” echo -e “\e[7minverted \e[0m” echo -e “\e[8mHidden \e[0m” 2.2. Reset # Reset echo -e “\n### Reset” echo -e “\e[0mAll reset” echo […]