[Bug 266224] Could some sort of file transfer program be put in /rescue?

From: <bugzilla-noreply_at_freebsd.org>
Date: Tue, 24 Jan 2023 19:05:15 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=266224

John Grafton <john.grafton@runbox.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |john.grafton@runbox.com

--- Comment #1 from John Grafton <john.grafton@runbox.com> ---
I think a limited version of fetch in /rescue is a good idea!  I'll take a go
at building one.

For stream progress during transfers in rescue mode, I use `dd
status=progress`.  It's not something I've had to do very often since the
systems I manage I can lay hands on but it works in a pinch.

sending:
# cat base.txz | nc broken-host.example.net 9999

receiving:
# /rescue/nc -l 9999 | /rescue/dd status=progress > /base.txz

Then I use /rescue/md5 to verify the tarball.  :)

-- 
You are receiving this mail because:
You are the assignee for the bug.