by ggarron
According to Wikipedia:
An ISO image is an archive file (also known as a disk image) of an optical disc in a format defined by the International Organization for Standardization (ISO). This format is supported by many software vendors. ISO image files typically have a file extension of .ISO but Mac OS X ISO images often have the extension .CDR. The name ISO is taken from the ISO 9660 file system used with CD-ROM media, but an ISO image can also contain UDF file system...
There are several RAID types of HW/SW and drivers that are in use. There are several methods available depending on the HW/SW/drivers in use.
Couple of examples; acaraid & megaraid & megaraid2
What HW and/or drivers are in the system? Can use ther 'lshw' utility to see HW and 'lsmod' to see your modules loaded in kernel. (lshw is a download tool).
There are some provided with GUI tools as well.
Check out the following...
[root@HC ~]# grep processor /proc/cpuinfoprocessor : 0processor : 1processor : 2processor : 3[root@HC~]# grep processor /proc/cpuinfoprocessor : 0processor : 1processor : 2processor : 3[root@ ~]# [root@ ~]# more /proc/cpuinfoprocessor : 0vendor_id : GenuineIntelcpu family : 15model : 4model name : Intel(R) Xeon(TM) CPU 3.00GHzstepping : 10cpu MHz ...
Handy bash commands for finding out stuff in Linux: # Find CPU specifications cat /proc/cpuinfo
# Find running kernel version uname -r
# What compiler version do I have installed gcc -v gcc --version
# What is the running kernel and compiler installed cat /proc/version
# Find X server version X -showconfig
# What pci cards are installed and what irq/port is used cat /proc/pci
# What kernel modules are loaded lsmod
# Memory and swap information cat /proc/meminfo free An...
How to monitor linux cpu usage
how to check linux kernel is 32 bit or 64 bit
cat /proc/cpuinfo
Removing a Storage Device
Before removing access to the storage device itself, you may want to copy data from the device. When that is done, then you must stop and flush all I/O, and remove all operating system references to the device, as described below. If this is a multipath device then you must do this for the multipath psuedo device, and each of the identifiers that represent a path to the device.
Removal of a storage device is not recommended when the system is under...
Problem
You want to know if an x86 system is capable of running 64-bit software.
Resolution
There are two primary modes of operation of the microprocessor architecture: Long mode (lm) and Legacy mode. Long mode is used by 64-bit operating systems. It combines the processor's native 64-bit mode and a 32-bit/16-bit compatibility mode. Under this mode, 64-bit, 32-bit and 16-bit applications may be supported. Legacy mode is only used by 16-bit and 32-bit operating systems.
To...
|