sudo apt install realmd sssd adcli oddjob oddjob-mkhomedir packagekit
sudo apt install sssd sssd-tools sssd-dbus realmd adcli samba-common samba-common-bin oddjob oddjob-mkhomedir packagekit
realm discover rnd.abc
sudo realm join rnd.abc -U gvp
grep -rwl '8006' /usr/share/perl5/PVE/ | xargs sed -i 's|8006|443|g'
grep -rwl '8006' /usr/share/pve-docs/ | xargs sed -i 's|:8006||g'
grep -rwl '8006' /usr/share/pve-docs/ | xargs sed -i 's|8006|443|g'
grep -rwl '8006' /usr/share/doc/pve-manager/ | xargs sed -i 's|:8006||g'
sed -i 's|:8006||g' /usr/bin/pvebanner
sed -i 's|:8006||g' /etc/issue
echo 'net.ipv4.ip_unprivileged_port_start=0' > /etc/sysctl.d/50-unprivileged-ports.conf
If you want to create a network on openstack with static IP (without DHCP & Subnet) cause you have an external DHCP Server, you can use this.
VLANAXS205 with physnet1 as Interface name & 205 as VLAN IDopenstack network create \
 --provider-network-type vlan \
| #!/bin/bash | |
| echo "Profil VPN yang sedang berjalan:" | |
| echo "-------------------------------------------------------------" | |
| echo "TUN Interface | Profile | Subnet | Routing Table" | |
| echo "-------------------------------------------------------------" | |
| for conf in /etc/openvpn/*.conf; do | |
| vpn_name=$(basename "$conf" .conf) | 
If you want to pull VScode packages on Ubuntu Server, you can follow this step
commit_id=f06011ac164ae4dc8e753a3fe7f9549844d15e35
# Download url is: https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable
curl -sSL "https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable" -o vscode-server-linux-x64.tar.gz
You want to create an Ubuntu VM on top of openstack as a Instance Gateway
My instance in openstack must be connected to the internet (0.0.0.0/0) via VM Gateway because only from this gateway is internet connection allowed, but apart from that my instance still needs to be able to connect to the client aka be able to SSH.