Recent articles

  • How to Set Up Software RAID 1

    mdadm is used to manage software RAID. Install mdadm package with apt install mdadm To set up RAID 1 (mirror), you need 2 drives or partitions of the same size…

  • How to Restore Large Database with PHP Script

    Restoring a large MySQL database can sometimes be a daunting task, especially when using phpMyAdmin, which may fail due to size limitations or timeouts. In such cases, utilizing SSH/Terminal is…

  • Install ffmpeg on AlmaLinux 8

    First, enable epel repo dnf install epel-release Enable rpmfusion repo dnf install https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm dnf install https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-8.noarch.rpm Install ffmpeg with dnf install ffmpeg Verify ffmpeg is working [root@nc-ph-0997-24 ~]# ffmpeg -version…

  • How to extract wpress file

    The .wpress file format is generated by the โ€œAll-in-One WP Migrationโ€ plugin, which is widely used for migrating WordPress sites. If you cannot restore a โ€œwpressโ€ file for any reason,…

  • How to Backup Large MySQL Database Table by Table

    Backing up and restoring large databases can be challenging at times. Recently, when I had to back up and restore a large database, I did a backup for each database…