Solved FreeBSD (realtek network drivers) how to install without internet

I installed FreeBSD 13.2 on a morefine R9-6900HX, from a USB pen, so far all good, but I need to install the realtek-re-kmod package in order to recognize the network cards, I already mounted the pen every time I try to install it with:

pkg add ./realtek-re-kmod-198.00_1.pkg

pkg tries to Bootstrap because is not installed, but since I have no connectivity it fails, therefore wondering how to install packages in a fresh system without internet?
 
OP
nbari
untar it and copy the .ko manualy
Many thanks, I went the long way by coping pkg.txz into the root dir and then settings this environment variables:

Code:
setenv SIGNATURE_TYPE NONE
setenv PACKAGESITE=file:///root

then:

pkg add -f ./realtek-re-kmod-198.00_1.pkg
 
Top