-
-
Notifications
You must be signed in to change notification settings - Fork 3
Linux whois Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to whois on Linux, covering Arch Linux, CachyOS, and other distributions including domain information, IP lookups, and network queries.
Arch/CachyOS:
# Install whois
sudo pacman -S whoisDebian/Ubuntu:
sudo apt install whoisFedora:
sudo dnf install whoisBasic usage:
# Query domain
whois example.com
# Shows domain registration informationIP lookup:
# Query IP address
whois 8.8.8.8
# Shows IP address informationRegistration details:
# Domain information
whois example.com
# Shows:
# - Registrar
# - Registration date
# - Expiration date
# - Name servers
# - Contact informationUse server:
# Use specific whois server
whois -h whois.example.com example.com
# -h = host (specific whois server)IP details:
# IP address information
whois 8.8.8.8
# Shows:
# - IP range
# - Organization
# - Country
# - Network informationIPv6 lookup:
# IPv6 address
whois 2001:4860:4860::8888
# Shows IPv6 informationCheck installation:
# Check whois
which whois
# Install if missing
sudo pacman -S whoisThis guide covered whois usage, domain information, and IP lookups for Arch Linux, CachyOS, and other distributions.
- dig Guide - DNS queries
- host Guide - DNS lookups
- Network Utilities - Network tools
-
whois Documentation:
man whois
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.