Collecting Unix System Information

At the very least, collect the following information for each system that you have: 1. Hostname: % hostname 2. Hostname aliases: % grep `hostname` /etc/hosts | awk ‘{ print $3 }’ 3. Host network addresses: % grep `hostname` /etc/hosts | awk ‘{ print $1 }’ 4.   Host ID: % hostid 5. System serial number: On …

Collecting Unix System Information Read More »