spacemeowx2 / switch-lan-play

Enjoy games with your friends as if you were on a LAN.
GNU General Public License v3.0
1.81k stars 190 forks source link

Server deps install Docs for Fedora/CentOS #144

Open adamboutcher opened 1 year ago

adamboutcher commented 1 year ago

Linux Documentation for the Server Deps for EL based distros (Fedora, CentOS, Rocky, Alma)

Fedora:

sudo dnf install -y libpcap libpcap-devel libuv

CentOS/EL 7:

sudo dnf install -y epel-release
sudo dnf install -y libpcap libpcap-devel libuv

CentOS/EL 8+:

sudo dnf install -y libpcap libpcap-devel libuv

All:

You may need to add a symlink for the libpcap library

sudo ln -s /usr/lib64/libpcap.so /usr/lib64/libpcap.so.0.8
Adam-Saeed commented 6 months ago

Hey, I just wanted to point out a minor spelling mistake when creating symlink the resulted file is named libpcacp.so.0.8 when it should be libpcap.so.0.8. There's an additional "c" in the file name

adamboutcher commented 4 months ago

Hey, I just wanted to point out a minor spelling mistake when creating symlink

Good catch! I've updated my comment.