CyberPanel FTP not working on Ubuntu Server

On CyberPanel server, FTP was not working. I checked the server with “netstat -lntp” command. No service was listening on port 21. Started pure-ftpd with command systemctl start pure-ftpd-mysql To start pure-ftpd on boot, run systemctl enable pure-ftpd-mysql Now FTP service started listening on port 21, but login to the FTP server failed with an … Read more

Easy Kubernetes setup on Ubuntu with microk8s

kubernetes

To install microk8s, run sudo snap install microk8s –classic Enable rules in firewall sudo ufw allow in on cni0 sudo ufw allow out on cni0 sudo ufw default allow routed Enable addons microk8s enable dns dashboard storage To see status of current addons, run microk8s status Here is status for a defaul install root@ip-172-26-0-217:~# microk8s … Read more

Install dnsmasq on Ubuntu

dnsmasq is a very powerful tool that can provide basic dns services/caching, act as dhcp server and also as tftp server. To install dnsmasq, run apt install dnsmasq When you start dnsmasq, if it complain about port 53 alreay in use dnsmasq: failed to create listening socket for port 53: Address already in use This … Read more

Reinstall Kernel in Ubuntu/Debian

reinstall ubuntu kernel

To reinstall Kernel in Ubunru, you need to find the version of kernal installed, for this run dpkg -l | grep linux-image Or you can use command, find the kernel version you need to install apt-cache search linux-image Once you have the name of linux-image package you need to install, you can run apt-get install … Read more

install Shotcut Video Editor in ubuntu

Shotcut is an free open source video editor for Ubuntu. You can find more info at https://shotcut.org Latest version of Shotcut video editor can be installed on Ubuntu using command sudo snap install shotcut –classic shotcut is also available to be installed from apt, but this is slightly older version than snap. To install from … Read more

Configure OVH Failover IP in Ubuntu 20.04/22.04

To configure IP in Ubuntu Server 20.04 guest, create a file add the following content example “on-link: true” is what makes it work. The “on-link: true” option is used to specify that a specific route should be considered “on-link.” This means that the route is directly reachable on the local network segment, and packets destined … Read more