Recent articles
-
Enhancing Business Operations for SMEs
Microsoft Copilot, an AI-powered assistant, is revolutionizing the way users interact with technology to boost efficiency and creativity. Embedded within Microsoft Dynamics 365 Business Central, a cloud-based ERP solution for…
-
How to Repair MyISAM Tables
MyISAM tables (.MYI and .MYD) can be repaired using myisamchk command. To find list of corrupted tables myisamchk /var/lib/mysql/DB_NAME/*.MYI >> /root/1.txt To rapier a table cd /var/lib/mysql/DB_NAME/ myisamchk -r TABLE_NAME_HERE.MYI…
-
How to Install ffmpeg static build
FFmpeg binary static build available for download from https://johnvansickle.com/ffmpeg/ To install ffmpeg static build, run cd /usr/local/src wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz tar xvf ffmpeg-release-amd64-static.tar.xz cd ffmpeg-*-amd64-static/ cp ffmpeg ffprobe qt-faststart /usr/bin/ cp…
-
How to install docker on AlmaLinux 8
To install docker on AlmaLinux, run the following commands Install yum-utils dnf install -y yum-utils Add docker repository yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo Install Docker CE with dnf install docker-ce Enable docker…
-
OVH CentOS 7 server grub rescue prompt
On an OVH Cpanel server running CentOS 7, the server wonโt boot. When accessing the server console using IPMI, I found the following error. I booted the server into rescue…