Automated Diagnostic Software Install and Execute
Linux prompt: ~$
Install the GNU Compiler Collection (gcc) onto both PCs
~$ sudo apt install gcc
Place the two test files in the following directory on the two Linux PCs
Linux1: IP address 192.168.1.140
~$/Desktop/DuraNET-3300/Software/PacketLossServer.c
Linux2: IP address 192.168.1.100
~$/Desktop/DuraNET-3300/Software/PacketLossClient.c
From their respective directory on the two PCs compile the .c files
• ~$ gcc PacketLossServer.c -o PacketLossServer
• ~$ gcc PacketLossClient.c -o PacketLossClient
From their respective directory paths, execute the files starting with the Server first
• ~$ sudo ./PacketLossServer
• ~$ sudo ./PacketLossClient
The diagnostic output with without errors.