> How can i check the system's hardware by shell? > I mean just like 'top' that i can see the memory total and how much is being > used > i wanna see the same about cpu and bandwidth
all of these commands could be performed as regular user on my redhats 7 & 7.2 : loaded kernel modules (some are drivers) : /sbin/lsmod redhat hardware configuration cache : cat /etc/sysconfig/hwconf a few /proc interesting files : pci devices : cat /proc/pci (also try /sbin/lspci) memory : cat /proc/memory cpu : cat /proc/cpuinfo scsi devices : cat /proc/scsi/scsi etc. (bandwidth does not depend on your system hardware i'm afraid) (and 'top' also displays cpu load -- press '?' for help) cheers -- djeyl _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlds_linux

