Elektrine
EN
Log in Register
Paige Chat Timeline Communities Gallery Videos Email DNS VPN Uptime Kairo
Back to Timeline
Remote

Emile "iMil" :netbsd: Heitor

@imil@mastodon.bsd.cafe
mastodon 4.6.5
  • Open on mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

769 Followers
536 Following
8 Posts
Joined September 09, 2025
https://imil.net:
blog
https://imil.net/fosscard/:
FOSScard

Posts

Open post
imil
Emile "iMil" :netbsd: Heitor @imil@mastodon.bsd.cafe · May 06, 2026
Emile "iMil" :netbsd: Heitor
@imil@mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

mastodon.bsd.cafe

LUTINOS! le live d'hier est en ligne.

Au programme :

* microsoft pousse des PRs sur smolBSD 😱
* Le classique "c'est quoi une vm en 2026"
* smolBSD boot sur FreeBSD !

https://youtu.be/yg0rSpucSbk

4
0
3
0
Open post
imil
Emile "iMil" :netbsd: Heitor @imil@mastodon.bsd.cafe · May 05, 2026
Emile "iMil" :netbsd: Heitor
@imil@mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

mastodon.bsd.cafe
Replying to @bentsukun@mastodon.bsd.cafe
@bentsukun TL;DR https://github.com/NetBSDfr/smolBSD/tree/main/service/biosboot to create the image then: $ cat device.map (hd0) /home/imil/vms/biosboot-amd64.img $ cat grub.cfg timeout=0 menuentry 'biosboot (bhyve run)' { root=hd0,1 knetbsd -h com0 -r dk0 /netbsd } $ doas grub-bhyve -m device.map -d $(pwd) nb $ doas bhyve -c 1 -m 256M -A -P -H -s 0,hostbridge -s 31,lpc -s 10,virtio-blk,$(pwd)/biosboot-amd64.img -l com1,stdio nb
7
0
3
0
Open post
imil
Emile "iMil" :netbsd: Heitor @imil@mastodon.bsd.cafe · May 05, 2026
Emile "iMil" :netbsd: Heitor
@imil@mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

mastodon.bsd.cafe

(kinda)smolBSD on FreeBSD's bhyve ladies and gents

25
2
17
0
Open post
imil
Emile "iMil" :netbsd: Heitor @imil@mastodon.bsd.cafe · Apr 08, 2026
Emile "iMil" :netbsd: Heitor
@imil@mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

mastodon.bsd.cafe

A life-long bug has been fixed in smolBSD; console always behave strangely with "complex" tools like vim or curses TUI, I finally figured it out: the QEMU emulated console! redirecting stdio to a pty and connecting to it via picocom (cu works too) makes it fully functional <3
Just add `use_pty=y` in etc/myvm.conf or start it with `-P`. For Dockerfiles, add:

LABEL smolbsd.use_pty="y"

Images using console have been updated https://github.com/orgs/NetBSDfr/packages

8
0
6
0
Open post
imil
Emile "iMil" :netbsd: Heitor @imil@mastodon.bsd.cafe · Mar 15, 2026
Emile "iMil" :netbsd: Heitor
@imil@mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

mastodon.bsd.cafe
Replying to @imil@mastodon.bsd.cafe
Thanks to https://oras.land/ for having made that possible!
4
0
1
0
Open post
imil
Emile "iMil" :netbsd: Heitor @imil@mastodon.bsd.cafe · Mar 15, 2026
Emile "iMil" :netbsd: Heitor
@imil@mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

mastodon.bsd.cafe

smolBSD: introducing `smoler.sh `, smolBSD images can now be pushed/pulled to/from ghcr.io!
i.e.

$ ./smoler.sh pull rescue-amd64:latest
$ ./startnb.sh images/rescue-amd64.img

https://github.com/NetBSDfr/smolBSD

9
2
9
0
Open post
imil
Emile "iMil" :netbsd: Heitor @imil@mastodon.bsd.cafe · Feb 24, 2026
Emile "iMil" :netbsd: Heitor
@imil@mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

mastodon.bsd.cafe

Setup an isolated web server as a smolBSD microvm in 1 minute:
```
FROM base,etc

LABEL smolbsd.service=smolweb
LABEL smolbsd.publish="8880:8880"

ARG PUBKEY="ssh-ed25519 foo user@bar"

RUN pkgin up && pkgin -y in caddy

RUN <useradd -m smol
cd /home/smol
mkdir -p .ssh www
echo "$PUBKEY" >.ssh/authorized_keys
chmod 600 .ssh/authorized_keys
chown -R smol /home/smol
EOF

EXPOSE 8880

CMD /etc/rc.d/sshd onestart && \
caddy file-server --listen :8880 --root /home/smol/www
```
Documentation: https://github.com/NetBSDfr/smolBSD/tree/main?tab=readme-ov-file#dockerfile

0
1
5
0
Open post
imil
Emile "iMil" :netbsd: Heitor @imil@mastodon.bsd.cafe · Jan 29, 2026
Emile "iMil" :netbsd: Heitor
@imil@mastodon.bsd.cafe

FOSS contributor, NetBSD developer. DJ'ing and composing in my spare time * https://imil.net/fosscard/ * twitch.tv/imilnb

mastodon.bsd.cafe

If you happen to be at #FOSDEM2026 come and see us Saturday at 15:50 at the BSD devroom! https://fosdem.org/2026/schedule/event/BGPF3M-smolbsd/ witness the fastest booting BSD UNIX!

mastodon.bsd.cafe

BSD.cafe Mastodon Portal

13
4
6
0

Remote instance

mastodon.bsd.cafe
Open on original server

Media

313k7r1n3
Elektrine

Tor hidden service

elekhj7afj4qnrr4yd3bkzslsyo5jgfxw3orgjkhlcxifueodybyiiad.onion

Platform

  • Email
  • Chat
  • Timeline
  • Communities
  • VPN
  • DNS

Company

  • About
  • Contact
  • FAQ

Legal

  • Terms of Service
  • Privacy Policy
  • Warrant Canary
  • Lite (no JS)
  • VPN Policy
  • Source code

Support

  • support@elektrine.com
  • Report Security Issue
Mail client setup IMAP mail.elektrine.com:993 POP3 mail.elektrine.com:995 SMTP mail.elektrine.com:465
© 2026 Elektrine. All rights reserved. Server: 02:27:46 UTC