[Mac] How to find the FQDN of a Mac OSX machine in 2019
Terminal Open a terminal / command prompt in OSX, you can do this by typing in 'terminal' in Spotlight or Finder. Then copy and paste the command below to retrieve…
Terminal Open a terminal / command prompt in OSX, you can do this by typing in 'terminal' in Spotlight or Finder. Then copy and paste the command below to retrieve…
Linux Command: current_date_and_time=$(date +%YY.%mM.%dD_%HH_%MM_%SS) && mkdir -p YOUR_FOLDER_NAME_$current_date_and_time What this command is doing is running 'date' with a specified format of YYYY.MM.DD_HH_MM_SS which is compatible across all operating systems; then…
Linux: Example given: get the serial number on the TLS certificate google.com uses you can use this command: echo -n | openssl s_client -connect google.com:443 2>&1 | openssl x509 -noout…