XOA on XCP-NG import and install Rumi, August 23, 2023 Start a new SSH session to your XenServer host and run the commands below. ### Using curl ### [18:18 xcp-node-01 ~]# bash -c “$(curl -sS https://xoa.io/deploy)” ### Using wget ### [18:18 xcp-node-01 ~]# bash -c “$(wget -qO- https://xoa.io/deploy)” If you are using an old XenServer version, you may encounter SSL… Continue Reading
Install transmission on Centos 7 Rumi, August 22, 2023 Step 1. First, you need to enable the EPEL repository on your system. yum install epel-release yum -y update Step 2. Installing Transmission on CentOS 7. Just run the following command to install Transmission: yum install transmission-cli transmission-common transmission-daemon Once complete, you can verify Transmission is installed by running the… Continue Reading
Install Proxmox 7 on Debian 12 Rumi, August 9, 2023 Install a standard Debian Bookworm, for details consider the Debian installation guide, and configure a static IP. Note: The Debian installer performs network configuration by IPv6 autoconfiguration and DHCP by default, if available. To force manual network configuration in the UEFI installer, press E and add netcfg/disable_autoconfig=true to the linux command line. For the… Continue Reading
Fixing Proxmox Delete user failed: cannot update tfa config, following nodes are not up to date: Rumi, August 2, 2023 Please check if all the nodes are on the same package versions: run pveversion -v and compare the outputs. If they’re not matching, you can run apt update && apt dist-upgrade To upgrade the nodes. if there’s a kernel upgrade you will also need to reboot the machines. If after… Continue Reading
Set up your site-to-site VPN with Access Server using OpenVPN Rumi, July 9, 2023 Allow access to private subnets Sign in to the Admin Web UI for your Access Server. Click Configuration > VPN Settings. Under Routing, and Should VPN clients have access to private subnets (non-public networks on the server side)?, click Yes, using Routing. Click Specify the private subnets to which all… Continue Reading
Setting up a PPPoE server on Linux CentOS 7 Rumi, July 8, 2023 Method-1 Build PPPoE, success, I think the TM super simple, in CentOS is about 5 steps can be done 1, install PPPoE, after the installation is complete, there will be pppoe-server command Yum Install Rp-pppoe 2, after the installation is completed, will be in the/ETC/PPP directory generated pppoe-server-options files, the… Continue Reading
VNC Client Access on Proxmox KVM guests Rumi, June 30, 2023 Configure VNC Access in the Configuration File Add a line to the VM’s configuration file /etc/pve/local/qemu-server/<VMID>.conf which specifies the VNC display number as follows (“77” in the example below): args: -vnc 0.0.0.0:77 If you want to use password protection, add: args: -vnc 0.0.0.0:77,password=on The display number can be freely chosen,… Continue Reading
Install Zabbix 5.x Monitoring Server on Ubuntu 20.04 Rumi, June 24, 2023 Zabbix is a free, open-source, and high-performance monitoring tool for servers, applications, and network devices. It uses agents to collect system metrics. It also monitors standard services such as SMTP or HTTP services and supports host monitoring via SNMP, TCP, and ICMP checks. It is designed for real-time monitoring of… Continue Reading
Getting started with Xen Virtualization On CentOS 7.x Rumi, June 24, 2023 Welcome to Getting started with Xen Virtualization On CentOS 7.x. Xen is an open-source bare-metal hypervisor which allows you to run different operating systems in parallel on a single host machine. This type of hypervisor is normally referred to as a hypervisortype 1 in Virtualization world. Meltdown and Spectre Mitigation on Xen 6.5 and… Continue Reading
Install Zabbix Agent on Ubuntu 20.04 Rumi, June 21, 2023 Zabbix agent is installed on the remote host (target) to monitor the hard drive, memory processor, etc. The agent collects data and sends back to Zabbix Server. Zabbix agents can use passive or active checks to pass information. In passive check, Zabbix server (poller) requests an agent for certain information, and the agent sends back a… Continue Reading