linuxusers.in is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
!Sunday Patreon Only Benefit!
Did you know that four years ago in the original Techno-Mage story-boards Girl had a love interest?!
#unix_surrealism #technomage #comic #openbsd #linux #freebsd #runbsd
Has anyone else noticed that https://cgit.freebsd.org/
has been down for a while now ? #FreeBSD
The #BoxyBSD project is taking a pause from provisioning completely free #vps instances / #vserver. For further questions, reach out to @gyptazy or in our Matrix chat.
After publishing the new self-service portal and making it easier to use and get a free VPS instance, we got a lot more new users who requested an instance than usual. We’re not out of resources but we want to provide a great and reliable service and have a buffer for upcoming things.
We’re already restocking the resources and adding new nodes to the project but temporary stop provisioning new instances. In the meantime, we will provide new services that will make the overall experience for users much better and easier.
We already started this with the new #NAT64 gateways and the new free #loadbalancing service that allows you to serve your website also on #IPv4, even your box is #IPv6 only.
We’re addicted to the #BSD community and hope to provide your quickly more #FreeBSD, #NetBSD, #OpenBSD, #DragonflyBSD and all the other bsd based systems again. In the meantime - have fun and #RUNBSD
#free #hosting #bhyve #zfs #firewall #networking #community #opensource #fediverse #services
We just added a free #loadbalancing service to #BoxyBSD!
This new feature got added by @gyptazy in addition to the newly introduced #NAT64 gateways to make your life easier and is currently tested with a few users! This provides you the ability to make your website also reachable by #IPv4 even your box is only running on #IPv6. This feature can be managed from your self-service portal and simply requires you to add a DNS name that should be balanced and to point the DNS A record to a given IPv4.
Making the legacy internet life easier, we hope for a higher #BSD adaption where people might be more motivated to try #FreeBSD, #NetBSD, #OpenBSD or even #opensolaris with #illumos.
#hosting #opensource #runbsd #hosting #free #service #saas #community #vps #vserver #server #vm
oksh
after getting 20 plus years used to bash
and I'm really liking using it. I can honestly say it's a work in progress but I'm learning as I go along and loving it. This feels unixy to me. #RunBSD #FreeBSDThe latest issue of the FreeBSD Journal has just been published and contains an article written by me: My EuroBSDCon Experience in Dublin
https://freebsdfoundation.org/our-work/journal/browser-based-edition/virtualization-2/
#FreeBSD #NetBSD #OpenBSD #DragonFlyBSD #RunBSD #EuroBSDCon #EBC24
ssh-askpass.sh
asking for passwords 2 to 3 times when running the oksh
shell. Turns out I had to move these two lines from .kshrc
to .profile
and everyone is happy again for now. Worked fine in bash
being in .bashrc
but hey ho. Everyday is a school day, And to think I was going to throw the towel in on ksh
. 😃SSH_ASKPASS='/home/justine/.local/bin/ssh-askpass.sh'; export SSH_ASKPASS#oksh #FreeBSD #RunBSD
SSH_ASKPASS_REQUIRE=prefer; export SSH_ASKPASS_REQUIRE
Client: Help, emergency. I have 24 hours to move my workload to another server. What do we do?
Me, five minutes later: "Done. Your workload is now running on the new server."
Client: "How did you move over 200GB with just a minute of downtime, from one provider to another and in a different country?"
Me: "Thanks to FreeBSD, ZFS, and a little bit of proactive planning."
I have a task that replicates all the VMs from one server to another every 15 minutes using zfs-send/zfs-receive. This VM connects to a VPN with two reverse proxies.
Meaning, when I move this VM, we don’t need to change any IPs since it’s not directly exposed.
I powered it off, cloned the differences in seconds, and restarted it.
Client in disbelief.
Me, relaxed and happy.
Thank you, FreeBSD, thank you, ZFS!
#FreeBSD #ZFS #TechSupport #ServerMigration #OpenZFS #SysAdmin #RunBSD
Big news for ZFS Linux and Unix users: The latest release, version 2.3.0, finally brings raidz expansion! No more storage headaches and you can easily add a new HDD. https://www.cyberciti.biz/linux-news/zfs-raidz-expansion-finally-here-in-version-2-3-0/
bash
after 20 plus years to oksh
to see how I get on with this ksh
variant. So far so good and I'm having to read the man page to get my self used to a slightly different way of doing things but this does feel nice and Unixy as I said earlier. Only time will tell if I switch back. 😉 #FreeBSD #Unix #Bash #KSH #OKSH #OpenBSDYes, I use an IPv4 tunnel (I can DM the details through Matrix) from my home with variable IPv4 address to get the fixed IPv4 address which has ICMP_ECHO enabled
The tunnel provider is HENet
🖋️ #bash #sh #zsh #ksh #csh #Networking #IPv6 #IPv4 #tunnel #twotunnels #ProxMox #freeBSD #Linux #POSIX #Programming
I face numerous problems with my ISP working internally with IPv4 while all of their routers switches and gateways being fully IPv6 capable, yet unconfigured in that address space
I have been graced with access to a wonderfull service which is of course IPv6 based, since those addresses are in copuous ammounts available. A fixed IP has been assigned to the service
My ISP charges a lower arm and an upperleg for a fixed IPv4 address. Their cheap unpatched gateways are closed, so I'm not allowed to use the ICMP protocol to their router let alone set ICPM_ECHO to enable on the device.
The routing service I signed up for wants ICMP_ECHO on, because a tunnel needs it
I have used a cludge to get to IPv6 by running a tunnel to a service which gives me both a fixed IP and ICMP_ECHO 0 & 8.
I then tell the IPv6 routing server to build the tunnel based on the properly configured IPv4 fixed address I have tunneled to.
This works for about an hour or so. From linux I use the following command set to configure sit0 and sit 1
{
su -
ifconfig sit0 up
ifconfig sit0 inet6 tunnel ::[my IPv4 tunnel address]
ifconfig sit1 up
ifconfig sit1 inet6 add [my IPv6 address]
route -A inet6 add ::/0 dev sit1
}
the devices come up nicely I can ping my IPv6 address and use the VM at that address.
After an hour or so, only when I stopped using both tunnels, for more than 15 minutes, the ping response dies on the second tunnel, consequently also on the whole IPv6 range. When I check the VM provider all Hypervisors (ProxMox) run fine with minimal load.
This means that something needs to keep the tunnel alive since I run data to two tunnels at once
Once tunnel number two goes in slumber mode it does not wake up again.
I have not traced back how to run a KEEP_ALIVE packet stream on the IPv6 tunnel
Source https://en.wikipedia.org/wiki/Internet_Control_Message_Protocol
🖋️ #bash #sh #zsh #ksh #csh #Networking #IPv6 #IPv4 #tunnel #twotunnels #ProxMox #freeBSD #Linux #POSIX #Programming
ksh
powerful command completion and also some custom functions for PS1
Bash
since the beginning. I did look at #FreeBSD default sh
but it's history is a tad clunky. Yesterday I was introduced to oksh
a public domain Korn shell via a blog by @rubenerd@bsd.network and it does look interesting. I'd obviously continue writing my scripts to be posix compliant and running with sh
but for interactive use this might be more me ?oksh
AKA korn shell
.2025 is starting great - and I took all opportunities!
Like probably all personal playgrounds, I started small with many technically working but not ideal solutions. Ignoring several RFC's, standards etc,.
This also applies to my @BoxyBSD project that provides free VPS (#BSD focussed, such like #FreeBSD, #NetBSD, #OpenBSD but also #illumos / #opensolaris etc.,) boxes for the #opensource community and beginners to provide them a place for learning and education.
I decreased (yeah decreased) the amount of overall systems. Instead, we now have bigger sized systems which makes the overall management easier and also improved the whole networking stack. Also some other benefits came along with this ;) I'm really happy to see what 2025 brings up - and there're several great things to be announced soon :)
ifconfig_re0_alias0="inet 192.168.0.46 netmask 255.255.255.0"
into my /etc/rc.conf
on my #HomeLab #FreeBSD server to give my Bastille jails internet access. It turns out that I was creating jails using doas bastille create test1 14.2-RELEASE 192.168.0.48/24
which gave the jail the bastille0
loop back as the main interface. Appending my network interface like so doas bastille create test1 14.2-RELEASE 192.168.0.48/24 re0
resolved the issue and now I can delete all those aliases from my /etc/rc.conf
.If you are #Indonesia n and using #FreeBSD, #NetBSD, or #OpenBSD, even one of them forks, let's say hi! I can't find Indonesians who use BSD.
Some technical details for those interested:
The entire FediMeteo setup runs on a FreeBSD VM costing around 4 euros per month. It supports almost all major EU countries (plus the UK), with just a few left to complete. Currently, there are 25 separate jails, each running its own instance of snac, totaling 25 instances. The VM load typically stays around 10%, which increases to 30% when updates are published for countries with larger numbers of cities (currently Germany and Italy). The only time the load spikes is when new countries are announced; during that time, all remote instances connect to all cities to download their details.
As for RAM usage, excluding the ZFS cache, it's currently a total of 213 MB. Yes, MB.
#FreeBSD friends, where's Firefox?
# pkg install firefox
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
pkg: No packages available to install matching 'firefox' have been found in the repositories
I just signed up for the #BSDNL conference!
Happy to see you all in #Utrecht
Tickets are €15, lunch included!
tickets.bsdnl.nl/bsdnl/early25
📆 2025-04-12 / April 12th 2025
🕐 10:00-23:00 CET
📍 Brouwerij Maximus (Utrecht)
#RUNBSD #FreeBSD #OpenBSD #NETBSD #dragonflybsd #midnightbsd #bsdcafe #conference #meeting
Working on FreeBSD is always a pleasure. When I need to make a change to a production jail, using BastilleBSD, I clone it in a flash, make the changes, and test them. If they work, I can promote that jail to production or discard the test one and apply the changes.
A way of working that, in my opinion, is both safe and efficient.
Progress!! I managed to get the #PinePhonePro screen working on #FreeBSD 🎉 Long way to go yet, but this is a massive step forward for making FreeBSD usable on the device.
https://tobykurien.com/images/microblog/post-1736141510-0.jpg