ezone
  • Home
  • Blog
    • Cloud ERP
  • Flutter
    • FlutterFlow
  • Joomla
  • About

Multizone | All our technotes

If we've published it, you can find it here.

Enabling SSH and key based login in Ubuntu 25.10

Enabling SSH and key based login in Ubuntu 25.10

SSH (Secure Shell) key-based authentication is a secure method for logging into remote servers without using passwords. It involves a pair of keys: a public key stored on the server and a private key kept on the client machine It is quite simple in practice but can be confusing to set up.

TL:DR – With SSH keys properly managed and passwords disabled, Ubuntu 25.10 can deliver both remote convenience and hardened security.

Details
Last Updated: 10 November 2025
  • Ubuntu Linux: Stability, Security, and Open-Source Freedom

Read more: Enabling SSH and key based login in Ubuntu 25.10

Apple’s MacBook Pro: Performance Evolution from M1 to M5

Apple’s MacBook Pro: Performance Evolution from M1 to M5

Apple’s MacBook Pro range remains the definitive reference point for performance in creative and professional computing. This analysis examines the evolution of Apple’s top-tier Max processors—M1 Max, M2 Max, M3 Max, M4 Max, and now the M5 (base) configuration—powering the MacBook Pro models since October 2021. The “Max” designation identifies Apple’s most performance-focused configurations. This discussion excludes lower-tier MacBooks, instead scrutinising these flagship machines in terms of performance, architecture, features, price, and suitability for distinct professional requirements.

TL:DR – The M5 Max now represents the performance apex for MacBook Pro configurations, surpassing the M4 Max across CPU, GPU, memory bandwidth and AI throughput. Apple’s March 2026 refresh introduces M5 Pro and M5 Max across both 14-inch and 16-inch models, completing the generational transition that began with the base M5 in late 2025. For professionals demanding maximum performance, the M5 Max is now the clear choice. The M4 Max remains highly capable and may offer better value depending on pricing. Earlier M1/M2 Max machines still represent exceptional price-performance for most workflows. My sweet-spot pick now shifts slightly: a well-configured M2 Max or discounted M4 Max. Personally, I’m still running a 16-inch M1 Max (10-core CPU / 32-core GPU, 64 GB RAM, 1 TB SSD) — and it continues to hold up remarkably well.

Details
Last Updated: 20 April 2026

Read more: Apple’s MacBook Pro: Performance Evolution from M1 to M5

Upgrading to Ubuntu 25.10 from 25.04

Upgrading to Ubuntu 25.10 from 25.04

Ubuntu 25.10 (Questing Quokka) is an interim release maintained for 9 months until July 2026 and isn't suitable for long term support. But for my purposes its just fine.

TL:DR – Ubuntu 25.10 has a LOT of new features including Enhanced GNOME Remote Desktop!

Details
Last Updated: 28 October 2025
  • Ubuntu Linux: Stability, Security, and Open-Source Freedom

Read more: Upgrading to Ubuntu 25.10 from 25.04

Working headless RDP with GNOME Remote Desktop on Ubuntu 25.10

Working headless RDP with GNOME Remote Desktop on Ubuntu 25.10

Setting up GNOME Remote Desktop for headless multi-user RDP access on Ubuntu 25.10 (Questing Quokka) is trickier than it should be. This guide documents a working approach using only the software shipped with Ubuntu Desktop — no extra packages required — and uses openssl to generate TLS certificates. It covers common errors and how to resolve them, and reflects what actually works in 2026.

TL:DR – Getting this right on Ubuntu 25.04 was a frustrating experience. After several hours of digging, headless multi-user RDP on 25.10 finally works reliably, and the approach below is the result of that effort.

Details
Last Updated: 02 June 2026

Read more: Working headless RDP with GNOME Remote Desktop on Ubuntu 25.10

Enabling Gitea actions with act_runner on macOS via Homebrew

Enabling Gitea actions with act_runner on macOS via Homebrew

To enable Gitea Actions (GitHub Actions–compatible workflows) you’ll need the act_runner utility, which connects your Gitea instance to its built-in CI system. This is straighforward but making it work in the background on macOS is not.

TL:DR – The

Details
Last Updated: 28 October 2025
  • DevOps: Revolutionising Software Development and IT Operations

Read more: Enabling Gitea actions with act_runner on macOS via Homebrew

Running Gitea with Let’s Encrypt on macOS via Homebrew

Running Gitea with Let’s Encrypt on macOS via Homebrew

Gitea is a lightweight, self-hosted Git service that’s perfect for personal projects or small teams. Setting it up with HTTPS using a Let’s Encrypt certificate on a local macOS machine can be tricky, especially with Homebrew installations. This guide walks you through a working setup, including running Gitea in the background and handling ACME challenges.

TL:DR – By using a custom LaunchAgent, you can run Gitea in the background with automatic Let’s Encrypt HTTPS, reliable background execution independent of Homebrew’s plist management, optional exposure on standard port 443 via pf redirects and automatic renewal of certificates with minimal fuss. This setup provides a secure, self-hosted Git service suitable for local networks or small teams.

Details
Last Updated: 02 January 2026

Read more: Running Gitea with Let’s Encrypt on macOS via Homebrew

Running Homebrew MySQL or MariaDB on macOS Tahoe

Running Homebrew MySQL or MariaDB on macOS Tahoe

How to Add MySQL or MariaDB to Homebrew Apache + PHP (macOS)

This guide shows how to install and configure MySQL or MariaDB with your Homebrew Apache and PHP setup on macOS. It covers installation, starting the service, and basic connection tests.

Prerequisites

  • macOS with Homebrew installed 
  • Homebrew httpd and PHP already working 
  • Terminal access with admin privileges

Steps

  1. Install MySQL or MariaDB:
    You can choose one:
    brew install mysql
    # or
    brew install mariadb
  2. Start the database service:
    Use Homebrew services to keep it running in the background:
    brew services start mysql
    # or
    brew services start mariadb
  3. Secure the installation:
    Run the included script to set a root password and remove insecure defaults:
    mysql_secure_installation
  4. Test the database connection:
    Log into the server:
    mysql -u root -p
    Enter your root password to confirm it works.
  5. Verify PHP can connect:
    Ensure you have the MySQL extension for PHP (usually included in Homebrew PHP builds). Create a file dbtest.php in your Apache document root:
    <?php
    $mysqli = new mysqli("localhost", "root", "yourpassword");
    if ($mysqli->connect_error) {
      die("Connection failed: " . $mysqli->connect_error);
    }
    echo "Connected successfully to MySQL/MariaDB!";
    ?>
    Visit http://localhost:8080/dbtest.php (or your configured port).

Verification

If configured correctly, you’ll see a success message in your browser. At this point, your Homebrew Apache stack supports PHP and MySQL/MariaDB, ready for Joomla or other PHP applications.

See Running Homebrew Apache with Let's Encrypt SSL on macOS Tahoe and Running Homebrew PHP on Apache on macOS Tahoe.

Homebrew Logo: Vítor Galvão (creator); MikeMcQuaid, Synoli (committers), BSD, via Wikimedia Commons

Details
Last Updated: 30 September 2025

Page 5 of 45

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
Add as a preferred source on Google

Popular articles

  • Disk Recovery Success Using GNU ddrescue on Ubuntu Linux
  • Working headless RDP with GNOME Remote Desktop on Ubuntu 25.10
  • New Cassette recorders in 2026
  • Amazon Fire Max 11 - best value for the money tablet
  • Airport Time Capsule shared Drive for Mac and Linux

Recent articles

  • Linux Formally Embraces AI Code Contributions With Human Accountability Rules
  • Roku Stick: Best Apps, Hidden Features, and Setup Tips
  • Roku Stick: Apps, Hidden Features, and Getting the Most From It
  • Xcode simulators can be very nearly impossible to delete
  • Disk full on a Mac? Check for old iOS backups hogging space
  • macOS Terminal Security: Apple's New Warning System Explained

Popular Topics

  • macOS: The redefinition of modern Computing 38
  • Linux: The Backbone of Modern Computing 19
  • Android: A Dominant Force in Mobile Computing 15
  • iOS: The Engine Behind Apple’s Mobile Revolution 15
  • Ubuntu Linux: Stability, Security, and Open-Source Freedom 14
  • Apple Silicon: Redefining Performance and Efficiency 13
  • Technology We Use: Devices and Tools Powering Everyday Life 13
  • Amazon Web Services (AWS): A Cloud Computing Solution 12
  • Flutter: Build Once, Deploy Everywhere 11
  • Apple Computer: Innovation, Software, Electronics 10
My Blog
  • Terms of use
  • Privacy statement
  • Contact us
  • Sitemap
  • Joomla! — award-winning content management system (CMS)
  • Flutter — An open source framework for building applications from a single codebase