I had a USB adapter that used that chipset and had to do two things to make it work. Get a driver from the realtek site then compile it and also I think I had to install some firmware using apt. This was on latest Devuan/Debian so YMMV.
https://www.pcsuggest.com/install-rtl8153-driver-linux/
Thats the site I used to deal with the driver.
The firmware package, I think was called firmware-realtek.
That got me the network adapter.
I then setup the adapter in /etc/network/interfaces
Code:
iface <devname> inet static
address 192.168.0.100/24
gateway 192.168.0.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 8.8.8.8 9.9.9.9
Setup /etc/resolv.conf with some public dns servers for testing with.
Code:
nameserver 8.8.8.8
nameserver 1.1.1.1
nameserver 9.9.9.9
nameserver 1.0.0.1
nameserver 8.8.4.4
Ran ifup <devname>
Then ping google.com
If it hasnt failed, you have working network capabilities.
<devname> is the name of your device, it might be enpxsx or similar, or eth0. You can also change the interfaces file to use dhcp if thats what you prefer. If your network uses a different ip/mask/gateway then change interfaces to reflect that.