On FreeBSD 14.2, installed and running some #hamradio software inside a podman fedora container (https://github.com/la5nta/pat). I need the linux container for ax25 for one of my radios on 2m packet.
Pat is installed and runs inside the container using telnet, but I can't figure out how to provide radio serial communications via host /dev/cuaU0 to Pat inside the container. Tried:
Solutions or ideas how to solve this?
Thanks,
Peter
Pat is installed and runs inside the container using telnet, but I can't figure out how to provide radio serial communications via host /dev/cuaU0 to Pat inside the container. Tried:
Code:
$ sudo podman run --os=linux --net=host --device=/dev/cuaU0:/dev/ttyUSB0:rw -ti --rm localhost/pat-freebsd-fedora41:001 bash
Error: container device must be the same as host device on FreeBSD
$ sudo podman run --os=linux --net=host --device=/dev/cuaU0:/dev/cuaU0:rw -ti --rm localhost/pat-freebsd-fedora41:001 bash
Error: devfs not found in generator
$ man podman-run ([URL]https://man.freebsd.org/cgi/man.cgi?query=podman-run&sektion=1&apropos=0&manpath=FreeBSD+13.2-RELEASE+and+Ports[/URL]) makes no mention of these issues and shows differing device names between the host and container in the example
Thanks,
Peter