Trying to open large packet capture files in tools such as Wireshark can be very painful and resource intensive. To work around this the capture file can be split into chunks of a more reasonable size.
tcpdump -r <filename> -w <filename new> -C 100
The above command will split <filename> into chunks of 100 megabytes each.