Posts

QEMU Aarch64 install to Raspberry Pi 500 Keyboard 8GB model, run FreeBSD in Arm64 Virtual Machine

Test HTML stuff below QEMU Aarch64 Install to Raspberry Pi 500 Keyboard 8GB model, to run FreeBSD Arm64 Virtual Machine  The Raspberry Pi 500 is essentially a rebranded Raspberry Pi 5 with 8GB RAM integrated into a keyboard, similar to the Raspberry Pi 400. Since the Raspberry Pi 5 does not have a pre-built FreeBSD 14.3-RELEASE image (support is limited to Raspberry Pi 3 and 4 for this release), running FreeBSD arm64 14.3-RELEASE in a virtual machine (VM) on a Raspberry Pi 500 running Raspberry Pi OS is a viable approach. Below is a step-by-step guide to set this up using QEMU, a popular emulator and virtualization tool, on Raspberry Pi OS (64-bit, aarch64). ### Prerequisites - **Hardware**: Raspberry Pi 500 (8GB RAM) running Raspberry Pi OS (64-bit). - **Software**: - Raspberry Pi OS (latest recommended, e.g., based on Debian Bookworm). - QEMU installed on Raspberry Pi OS. - FreeBSD 14.3-RELEASE arm64 virtual machine image or ISO. - **Storage**: At least 8GB free sp...

Creating a Raspberry Pi FreeBSD image for RPI 500 Keyboard or RPI5, or a weather station image for RPI3B

Creating a Raspberry Pi FreeBSD image for RPI 500 Keyboard or RPI5 5GB UEFI Arm64 image from here: GITHUB worproject/rpi5-uefi/releases     April 24, 2025 Version 0.3 is latest version https://petermoulding.com/raspberry_pi/raspberry_pi_500_boot_options RPI3B  Weather station FreeBSD Foundation build:   https://freebsdfoundation.org/raspberry-pi-weather-display-on-freebsd/ https://freebsdfoundation.org/?s=raspberrypi     https://wiki.freebsd.org/arm64 https://wiki.freebsd.org/arm/Raspberry%20Pi%205 https://freebsdfoundation.org/project/headless-mode-out-of-the-box/    Use as OTG virtual images

PersonalBSD NanoPi5 OpenSense EMMC install,

  Advice on installing OpenSense on NanoPi 5 Installing OPNsense on a NanoPi R5S (ARM64, Rockchip RK3568) with your setup—U-Boot on eMMC and Debian 12 on NVMe—is fea Thissible but requires careful steps due to the specific boot process and hardware constraints. Below, I address your questions and provide a step-by-step guide based on available information and  the complexities of ARM64 booting with OPNsense. Installing OPNsense on a NanoPi R5S (ARM64, Rockchip RK3568) with your setup—U-Boot on eMMC and Debian 12 on NVMe—is feasible but requires careful steps due to the specific boot process and hardware constraints. Below, I address your questions and provide a step-by-step guide based on available information and the complexities of ARM64 booting with OPNsense. ### Addressing Your Questions 1. **Will the SD card image allow me to install OPNsense directly to NVMe (e.g., via the installer or by copying)?** - **Short Answer**: Yes, the custom OPNsense SD card image ...

Learning to boot ASROCK Ampere Altra D8UD-1L2T 64 core Arm64 server board with Free BSD 15.0-CURRENT memstick image

Image
 Learning to boot ASROCK Ampere Altra D8UD-1L2T  64 core Arm64 server board with Free BSD 15.0-CURRENT memstick image Ampere Altra D8UD-1L2T Arm64 CPU, purchase from NewEGG.com   What I do not know about what I am wishing to perform, having not done before

Booting RPI3 Raspberry Pi 3 from a USB Flash drive containing GhostBSD-Arm64

Booting RPI3  Raspberry Pi 3 from a USB Flash drive containing GhostBSD-Arm64 1 Gigabyte Dram memory,  BCM2835 SOC aarch64 core   RPI3 Booting from A USB flash drive & microSD card https://x.com/i/grok/share/GHZgm8yHvIiUx29PahcCI33SC     JavaScript is not available. We’ve detected that JavaScript is disabled in this browser. Please enable JavaScript or switch to a supported browser to continue using x.com. You can see a list of supported browsers in our Help Center. Help Center Terms of Service Privacy Policy Cookie Policy Imprint Ads info © 2025 X Corp. To view keyboard shortcuts, press question mark View keyboard shortcuts JavaScript is not available. We’ve detected that JavaScript is disabled in this browser. Please enable JavaScript or switch to a supported browser to continue using x.com. You can see a list of s...

File copy from local computer to remote computer using SCP

File copy from local computer to remote computer using SCP  let me show you how with commands:   SCP example https://www.geeksforgeeks.org/scp-command-in-linux-with-examples/ Example: To copy a file named file.tx from your local machine to a remote server: scp file.txt username@192.168.1.2:/home/username/ In this example: file.txt is the local file username@192.168.1.2 is the remote server and user /home/username/ is the destination directory on the remote server.   [kliktel-pc ~ ]# man scp [kliktel-pc ~ ]# scp ./Downloads/FreeBSD/write_using_Linux_a_freebsd_img_dd_to_sdX .sh  fred@ghostbsdarm64.hopto.org:write_using_Linux_a_freebsd_img_dd_to_sdX.sh (fred@ghostbsdarm64.hopto.org) Password for fred@Ghost14-selfbuilt-rpi4B-nginx-ts t1: write_using_Linux_a_freebsd_img_dd_to_sdX.sh   100% 6795    27.1KB/s   00:00    fred    is the username ghostbsdarm64.hopto.org   is the remote IP address  ...