Posts

Showing posts from April, 2025

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  ...

PACKAGESITE for aarch64 FreeBSD package updates, ntpd, ntpq, ntpdate

PACKAGESITE  for  aarch64  FreeBSD package updates ntpd, ntpq, ntpdate http://pkg.freebsd.org/ Check this to confirm the proper URL echo $PACKAGESITE export PACKAGESITE="https://pkg.freebsd.org/FreeBSD:14:aarch64" echo $PACKAGESITE  or use "https://pkg.freebsd.org/FreeBSD:15:aarch64"  for FreeBSD 15.x-CURRENT

Downloading FreeBSD 14.2 RELEASE image for Raspberry Pi (3/4). dd write to a MicroSD card

[kliktel-pc FreeBSD ]# sh ./write_using_Linux_a_freebsd_img_dd_to_sdX.sh execute thie write_using_Linux_a_freebsd_snapshot_image.sh  shell script file to download an image file   0.)    fetch https://download.freebsd.org/releases/arm64/aarch64/ISO-IMAGES/14.2/CHECKSUM.SHA512-FreeBSD-14.2-RELEASE-arm64-aarch64-RPI 1.)    fetch https://download.freebsd.org/releases/arm64/aarch64/ISO-IMAGES/14.2/FreeBSD-14.2-RELEASE-arm64-aarch64-RPI.img.xz 2.)    fetch  http://ghostbsdarm64.hopto.org/packages/Ghost14_5g_selfbuilt_raspi4b_Feb27_2.img.xz 3.)    fetch   user provided file URL: to download.   Enter 0,1,2,3 number to select which file to download >0 fetch CHECKSUM.SHA512-FreeBSD-14.2-RELEASE-arm64-aarch64-RPI FILE_IMAGE = FreeBSD-14.2-RELEASE-arm64-aarch64-RPI.img is your selected download   Linux gpart status of  mmcblk0 or sda sdb sdc sdd disk devices   *** Fatal error: ...

Setting up Jenkins on my little Raspberry Pi 4B hardware with 8gb dram and 1 TB usb 3.0 SSD

 Setting up Jenkins on my little Raspberry Pi 4B hardware with 8gb dram and 1 TB usb 3.0 SSD  April 13, 2025 Several Jenkins FreeBSD setup URLs to read https://wiki.jenkins.io/JENKINS/FreeBSD.html  Wiki Jenkins  FreeBSD Install https://wiki.freebsd.org/Jenkins/InstallGuide    Wiki FreeBSD Jenkins Install Guide https://www.server-world.info/en/note?os=FreeBSD_14&p=java&f=4   https://www.server-world.info/en/note?os=FreeBSD_14&p=java&f=6   Install Jenkins & OpenJDK 21 https://www.jenkins.io/doc/book/installing/other/    Jenkins Installing Other   https://erlangstar.com/2020/10/08/installing-jenkins-on-freebsd/   October 2020 Erlangstar installing Jenkins on FreeBSD.   https://medium.com/@veneraldo/installing-jenkins-on-freebsd-8c27ad5405   Veneraldo Medium article, "Installing Jenkins on FreeBSD"  Apr 20, 2023   edit  /etc/rc.conf    and add  1 line jenkins_enable="YES" ...