Skip to Content

David Cao

David is a Cloud & DevOps Enthusiast. He has years of experience as a Linux engineer. He had working experience in AMD, EMC. He likes Linux, Python, bash, and more. He is a technical blogger and a Software Engineer. He enjoys sharing his learning and contributing to open-source.

SSL_ERROR_SYSCALL typically occurs when the server side is using an SSL certificate to authenticate. This article covers how to fix SSL_ERROR_SYSCALL error in 5 ways. SSL_ERROR_SYSCALL Error $ git clone https://github.com/xxx/xxx.git fatal: unable to access ‘https://github.com/xxx/xxx.git/’: LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 Understanding SSL_ERROR_SYSCALL Error This error typically occurs when the TCP three-way handshake between …

Read More about 5 Ways to Fix SSL_ERROR_SYSCALL

In this article, we will cover how to check the python version in 3 ways. 3 Ways to check Python Version Commands Example Output python3 –version or python3 -V or python3 -VV Python 3.7.2 import sys sys.version 3.7.2 (tags/v3.7.2: 9a3ffc0492, Dec 23 2018, 23:09:28)[MSC v.1916 64 bit (AMD64)]’ sys.version_info sys.version_ info (major= 3, minor= 7, …

Read More about 3 Ways to check Python 3 Version

In this tutorial, we will learn 10 useful Linux tcpdump examples and tcpdump options to analyze the traffic flow on a Linux machine. This tutorial covers the basic tcpdump filters like source ip, host, interface, specific port, udp port, write to file, all interfaces etc. Capture traffic on specific interface ( -i) Capture ip or …

Read More about 10 Linux tcpdump examples