facter 2.0.1.rc1-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of facter might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/COMMITTERS.md +194 -0
- data/CONTRIBUTING.md +65 -0
- data/Gemfile +43 -0
- data/LICENSE +15 -0
- data/README.md +33 -0
- data/Rakefile +79 -0
- data/bin/facter +16 -0
- data/etc/facter.conf +5 -0
- data/ext/build_defaults.yaml +24 -0
- data/ext/debian/changelog.erb +59 -0
- data/ext/debian/compat +1 -0
- data/ext/debian/control +14 -0
- data/ext/debian/copyright +19 -0
- data/ext/debian/docs +1 -0
- data/ext/debian/lintian-overrides +0 -0
- data/ext/debian/rules +10 -0
- data/ext/debian/source/format +1 -0
- data/ext/facter-diff +74 -0
- data/ext/ips/facter.p5m.erb +10 -0
- data/ext/ips/rules +7 -0
- data/ext/ips/transforms +18 -0
- data/ext/osx/file_mapping.yaml +27 -0
- data/ext/osx/preflight.erb +33 -0
- data/ext/osx/prototype.plist.erb +38 -0
- data/ext/project_data.yaml +33 -0
- data/ext/redhat/facter.spec.erb +220 -0
- data/ext/solaris/pkginfo +7 -0
- data/install.rb +380 -0
- data/lib/facter.rb +262 -0
- data/lib/facter/Cfkey.rb +42 -0
- data/lib/facter/application.rb +204 -0
- data/lib/facter/architecture.rb +50 -0
- data/lib/facter/augeasversion.rb +28 -0
- data/lib/facter/blockdevices.rb +105 -0
- data/lib/facter/core/aggregate.rb +220 -0
- data/lib/facter/core/directed_graph.rb +46 -0
- data/lib/facter/core/execution.rb +100 -0
- data/lib/facter/core/execution/base.rb +73 -0
- data/lib/facter/core/execution/posix.rb +50 -0
- data/lib/facter/core/execution/windows.rb +57 -0
- data/lib/facter/core/logging.rb +169 -0
- data/lib/facter/core/resolvable.rb +94 -0
- data/lib/facter/core/suitable.rb +117 -0
- data/lib/facter/domain.rb +99 -0
- data/lib/facter/ec2.rb +37 -0
- data/lib/facter/facterversion.rb +15 -0
- data/lib/facter/filesystems.rb +38 -0
- data/lib/facter/fqdn.rb +22 -0
- data/lib/facter/hardwareisa.rb +20 -0
- data/lib/facter/hardwaremodel.rb +67 -0
- data/lib/facter/hostname.rb +33 -0
- data/lib/facter/id.rb +21 -0
- data/lib/facter/interfaces.rb +46 -0
- data/lib/facter/ipaddress.rb +171 -0
- data/lib/facter/ipaddress6.rb +82 -0
- data/lib/facter/iphostnumber.rb +29 -0
- data/lib/facter/kernel.rb +22 -0
- data/lib/facter/kernelmajversion.rb +15 -0
- data/lib/facter/kernelrelease.rb +42 -0
- data/lib/facter/kernelversion.rb +22 -0
- data/lib/facter/ldom.rb +47 -0
- data/lib/facter/lsbdistcodename.rb +18 -0
- data/lib/facter/lsbdistdescription.rb +21 -0
- data/lib/facter/lsbdistid.rb +18 -0
- data/lib/facter/lsbdistrelease.rb +18 -0
- data/lib/facter/lsbmajdistrelease.rb +27 -0
- data/lib/facter/lsbrelease.rb +18 -0
- data/lib/facter/macaddress.rb +97 -0
- data/lib/facter/macosx.rb +56 -0
- data/lib/facter/manufacturer.rb +68 -0
- data/lib/facter/memory.rb +162 -0
- data/lib/facter/netmask.rb +42 -0
- data/lib/facter/network.rb +20 -0
- data/lib/facter/operatingsystem.rb +121 -0
- data/lib/facter/operatingsystemmajrelease.rb +33 -0
- data/lib/facter/operatingsystemrelease.rb +226 -0
- data/lib/facter/osfamily.rb +35 -0
- data/lib/facter/path.rb +14 -0
- data/lib/facter/physicalprocessorcount.rb +84 -0
- data/lib/facter/processor.rb +183 -0
- data/lib/facter/ps.rb +30 -0
- data/lib/facter/puppetversion.rb +20 -0
- data/lib/facter/rubysitedir.rb +12 -0
- data/lib/facter/rubyversion.rb +12 -0
- data/lib/facter/selinux.rb +99 -0
- data/lib/facter/ssh.rb +72 -0
- data/lib/facter/timezone.rb +14 -0
- data/lib/facter/uniqueid.rb +4 -0
- data/lib/facter/uptime.rb +34 -0
- data/lib/facter/uptime_days.rb +15 -0
- data/lib/facter/uptime_hours.rb +15 -0
- data/lib/facter/uptime_seconds.rb +24 -0
- data/lib/facter/util/architecture.rb +19 -0
- data/lib/facter/util/collection.rb +161 -0
- data/lib/facter/util/composite_loader.rb +12 -0
- data/lib/facter/util/config.rb +61 -0
- data/lib/facter/util/confine.rb +66 -0
- data/lib/facter/util/directory_loader.rb +83 -0
- data/lib/facter/util/ec2.rb +101 -0
- data/lib/facter/util/fact.rb +204 -0
- data/lib/facter/util/file_read.rb +37 -0
- data/lib/facter/util/formatter.rb +38 -0
- data/lib/facter/util/ip.rb +285 -0
- data/lib/facter/util/ip/windows.rb +215 -0
- data/lib/facter/util/loader.rb +146 -0
- data/lib/facter/util/macaddress.rb +43 -0
- data/lib/facter/util/macosx.rb +73 -0
- data/lib/facter/util/manufacturer.rb +104 -0
- data/lib/facter/util/memory.rb +228 -0
- data/lib/facter/util/monkey_patches.rb +8 -0
- data/lib/facter/util/netmask.rb +40 -0
- data/lib/facter/util/normalization.rb +94 -0
- data/lib/facter/util/nothing_loader.rb +12 -0
- data/lib/facter/util/parser.rb +158 -0
- data/lib/facter/util/plist.rb +24 -0
- data/lib/facter/util/plist/generator.rb +228 -0
- data/lib/facter/util/plist/parser.rb +226 -0
- data/lib/facter/util/processor.rb +291 -0
- data/lib/facter/util/registry.rb +11 -0
- data/lib/facter/util/resolution.rb +152 -0
- data/lib/facter/util/solaris_zones.rb +158 -0
- data/lib/facter/util/unix_root.rb +5 -0
- data/lib/facter/util/uptime.rb +81 -0
- data/lib/facter/util/values.rb +80 -0
- data/lib/facter/util/virtual.rb +151 -0
- data/lib/facter/util/vlans.rb +24 -0
- data/lib/facter/util/windows_root.rb +37 -0
- data/lib/facter/util/wmi.rb +16 -0
- data/lib/facter/util/xendomains.rb +10 -0
- data/lib/facter/version.rb +86 -0
- data/lib/facter/virtual.rb +262 -0
- data/lib/facter/vlans.rb +17 -0
- data/lib/facter/xendomains.rb +20 -0
- data/lib/facter/zfs_version.rb +10 -0
- data/lib/facter/zonename.rb +6 -0
- data/lib/facter/zones.rb +17 -0
- data/lib/facter/zpool_version.rb +10 -0
- data/spec/fixtures/cpuinfo/amd64dual +57 -0
- data/spec/fixtures/cpuinfo/amd64quad +79 -0
- data/spec/fixtures/cpuinfo/amd64solo +23 -0
- data/spec/fixtures/cpuinfo/amd64tri +86 -0
- data/spec/fixtures/cpuinfo/amd64twentyfour +600 -0
- data/spec/fixtures/cpuinfo/bbg3-armel +12 -0
- data/spec/fixtures/cpuinfo/beaglexm-armel +12 -0
- data/spec/fixtures/cpuinfo/panda-armel +17 -0
- data/spec/fixtures/cpuinfo/ppc64 +19 -0
- data/spec/fixtures/cpuinfo/sparc +10 -0
- data/spec/fixtures/hpux/machinfo/hppa-rp4440 +26 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx2620 +49 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx6600 +26 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx8640 +53 -0
- data/spec/fixtures/hpux/machinfo/superdome-server-SD32B +53 -0
- data/spec/fixtures/hpux/machinfo/superdome2-16s +31 -0
- data/spec/fixtures/hpux/sched.models +174 -0
- data/spec/fixtures/hpux/unistd.h +1534 -0
- data/spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces +18 -0
- data/spec/fixtures/ifconfig/centos_5_5 +17 -0
- data/spec/fixtures/ifconfig/centos_5_5_eth0 +8 -0
- data/spec/fixtures/ifconfig/darwin_10_3_0 +26 -0
- data/spec/fixtures/ifconfig/darwin_10_3_0_en0 +6 -0
- data/spec/fixtures/ifconfig/darwin_10_6_4 +28 -0
- data/spec/fixtures/ifconfig/darwin_10_6_4_en1 +6 -0
- data/spec/fixtures/ifconfig/darwin_10_6_6_dualstack +8 -0
- data/spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1 +7 -0
- data/spec/fixtures/ifconfig/darwin_9_8_0 +26 -0
- data/spec/fixtures/ifconfig/darwin_9_8_0_en0 +6 -0
- data/spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces +23 -0
- data/spec/fixtures/ifconfig/fedora_10 +36 -0
- data/spec/fixtures/ifconfig/fedora_10_eth0 +9 -0
- data/spec/fixtures/ifconfig/fedora_13 +18 -0
- data/spec/fixtures/ifconfig/fedora_13_eth0 +9 -0
- data/spec/fixtures/ifconfig/fedora_8 +38 -0
- data/spec/fixtures/ifconfig/fedora_8_eth0 +9 -0
- data/spec/fixtures/ifconfig/freebsd_6_0 +12 -0
- data/spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces +19 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_no_addr +19 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_no_mac +8 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_venet +24 -0
- data/spec/fixtures/ifconfig/open_solaris_10 +12 -0
- data/spec/fixtures/ifconfig/open_solaris_b132 +20 -0
- data/spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces +10 -0
- data/spec/fixtures/ifconfig/ubuntu_7_04 +38 -0
- data/spec/fixtures/ifconfig/ubuntu_7_04_eth0 +9 -0
- data/spec/fixtures/ldom/ldom_v1 +6 -0
- data/spec/fixtures/netstat/centos_5_5 +5 -0
- data/spec/fixtures/netstat/darwin_10_3_0 +35 -0
- data/spec/fixtures/netstat/darwin_10_6_4 +29 -0
- data/spec/fixtures/netstat/darwin_10_6_6_dualstack +34 -0
- data/spec/fixtures/netstat/darwin_9_8_0 +28 -0
- data/spec/fixtures/netstat/fedora_10 +7 -0
- data/spec/fixtures/netstat/open_solaris_10 +16 -0
- data/spec/fixtures/netstat/open_solaris_b132 +17 -0
- data/spec/fixtures/netstat/ubuntu_7_04 +7 -0
- data/spec/fixtures/processorcount/solaris-psrinfo +24 -0
- data/spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info +1216 -0
- data/spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info +225 -0
- data/spec/fixtures/unit/filesystems/linux +28 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1 +10 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo +8 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt +20 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt +18 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/unit/netmask/darwin_10_8_5.txt +30 -0
- data/spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/unit/selinux/selinux_sestatus +6 -0
- data/spec/fixtures/unit/util/ec2/centos-arp-ec2.out +1 -0
- data/spec/fixtures/unit/util/ec2/linux-arp-ec2.out +1 -0
- data/spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out +5 -0
- data/spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out +7 -0
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out +6 -0
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a.out +10 -0
- data/spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig +12 -0
- data/spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig +26 -0
- data/spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces +10 -0
- data/spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface +6 -0
- data/spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig +40 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_lanscan +5 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan +5 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_lanscan +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan +9 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in +6 -0
- data/spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0 +19 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_eth0 +10 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_ib0 +8 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_lo +9 -0
- data/spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface +18 -0
- data/spec/fixtures/unit/util/ip/linux_ifconfig_ib0 +8 -0
- data/spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces +8 -0
- data/spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface +3 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_all_interfaces +12 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_single_interface +7 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_single_interface6 +18 -0
- data/spec/fixtures/unit/util/loader/nosuchfact.rb +1 -0
- data/spec/fixtures/unit/util/manufacturer/freebsd_dmidecode +42 -0
- data/spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode +549 -0
- data/spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces +60 -0
- data/spec/fixtures/unit/util/manufacturer/opensolaris_smbios +33 -0
- data/spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag +33 -0
- data/spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag +136 -0
- data/spec/fixtures/unit/util/processor/solaris-i86pc +28 -0
- data/spec/fixtures/unit/util/processor/solaris-sun4u +151 -0
- data/spec/fixtures/unit/util/processor/x86-pentium2 +41 -0
- data/spec/fixtures/unit/util/uptime/kstat_boot_time +1 -0
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin +1 -0
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd +1 -0
- data/spec/fixtures/unit/util/uptime/ubuntu_proc_uptime +1 -0
- data/spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries +0 -0
- data/spec/fixtures/unit/util/virtual/solaris10_proc_self_status1 +0 -0
- data/spec/fixtures/unit/util/vlans/linux_vlan_config +6 -0
- data/spec/fixtures/unit/util/xendomains/xendomains +4 -0
- data/spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt +0 -0
- data/spec/fixtures/unit/zfs_version/freebsd_8.2 +14 -0
- data/spec/fixtures/unit/zfs_version/freebsd_9.0 +13 -0
- data/spec/fixtures/unit/zfs_version/linux-fuse_0.6.9 +14 -0
- data/spec/fixtures/unit/zfs_version/solaris_10 +10 -0
- data/spec/fixtures/unit/zfs_version/solaris_11 +12 -0
- data/spec/fixtures/unit/zpool_version/freebsd_8.2 +26 -0
- data/spec/fixtures/unit/zpool_version/freebsd_9.0 +38 -0
- data/spec/fixtures/unit/zpool_version/linux-fuse_0.6.9 +35 -0
- data/spec/fixtures/unit/zpool_version/solaris_10 +31 -0
- data/spec/fixtures/unit/zpool_version/solaris_11 +43 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_1/guest +37 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_1/host +36 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_3/guest +39 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_3/host +39 -0
- data/spec/integration/facter_spec.rb +39 -0
- data/spec/lib/facter_spec/cpuinfo.rb +15 -0
- data/spec/lib/facter_spec/windows_network.rb +64 -0
- data/spec/puppetlabs_spec/files.rb +57 -0
- data/spec/puppetlabs_spec/fixtures.rb +49 -0
- data/spec/puppetlabs_spec/matchers.rb +87 -0
- data/spec/puppetlabs_spec/verbose.rb +9 -0
- data/spec/puppetlabs_spec_helper.rb +26 -0
- data/spec/shared_contexts/platform.rb +55 -0
- data/spec/shared_formats/parses.rb +3 -0
- data/spec/spec_helper.rb +75 -0
- data/spec/unit/application_spec.rb +101 -0
- data/spec/unit/architecture_spec.rb +63 -0
- data/spec/unit/blockdevices_spec.rb +109 -0
- data/spec/unit/core/aggregate_spec.rb +125 -0
- data/spec/unit/core/directed_graph_spec.rb +79 -0
- data/spec/unit/core/execution/base_spec.rb +119 -0
- data/spec/unit/core/execution/posix_spec.rb +86 -0
- data/spec/unit/core/execution/windows_spec.rb +106 -0
- data/spec/unit/core/execution_spec.rb +37 -0
- data/spec/unit/core/logging_spec.rb +104 -0
- data/spec/unit/core/resolvable_spec.rb +81 -0
- data/spec/unit/core/suitable_spec.rb +96 -0
- data/spec/unit/domain_spec.rb +310 -0
- data/spec/unit/ec2_spec.rb +187 -0
- data/spec/unit/facter_spec.rb +108 -0
- data/spec/unit/filesystems_spec.rb +50 -0
- data/spec/unit/hardwareisa_spec.rb +41 -0
- data/spec/unit/hardwaremodel_spec.rb +56 -0
- data/spec/unit/hostname_spec.rb +40 -0
- data/spec/unit/id_spec.rb +29 -0
- data/spec/unit/interfaces_spec.rb +57 -0
- data/spec/unit/ipaddress6_spec.rb +161 -0
- data/spec/unit/ipaddress_spec.rb +114 -0
- data/spec/unit/kernel_spec.rb +24 -0
- data/spec/unit/kernelmajversion_spec.rb +17 -0
- data/spec/unit/kernelrelease_spec.rb +53 -0
- data/spec/unit/kernelversion_spec.rb +32 -0
- data/spec/unit/ldom_spec.rb +74 -0
- data/spec/unit/lsbdistcodename_spec.rb +25 -0
- data/spec/unit/lsbdistdescription_spec.rb +25 -0
- data/spec/unit/lsbdistid_spec.rb +25 -0
- data/spec/unit/lsbdistrelease_spec.rb +25 -0
- data/spec/unit/lsbmajdistrelease_spec.rb +13 -0
- data/spec/unit/lsbrelease_spec.rb +25 -0
- data/spec/unit/macaddress_spec.rb +61 -0
- data/spec/unit/manufacturer_spec.rb +115 -0
- data/spec/unit/memory_spec.rb +539 -0
- data/spec/unit/netmask_spec.rb +95 -0
- data/spec/unit/operatingsystem_spec.rb +141 -0
- data/spec/unit/operatingsystemmajrelease_spec.rb +16 -0
- data/spec/unit/operatingsystemrelease_spec.rb +226 -0
- data/spec/unit/physicalprocessorcount_spec.rb +76 -0
- data/spec/unit/processor_spec.rb +393 -0
- data/spec/unit/ps_spec.rb +42 -0
- data/spec/unit/selinux_spec.rb +114 -0
- data/spec/unit/ssh_spec.rb +77 -0
- data/spec/unit/uniqueid_spec.rb +27 -0
- data/spec/unit/uptime_spec.rb +110 -0
- data/spec/unit/util/collection_spec.rb +258 -0
- data/spec/unit/util/config_spec.rb +84 -0
- data/spec/unit/util/confine_spec.rb +148 -0
- data/spec/unit/util/directory_loader_spec.rb +88 -0
- data/spec/unit/util/ec2_spec.rb +180 -0
- data/spec/unit/util/fact_spec.rb +142 -0
- data/spec/unit/util/file_read_spec.rb +29 -0
- data/spec/unit/util/ip/windows_spec.rb +80 -0
- data/spec/unit/util/ip_spec.rb +463 -0
- data/spec/unit/util/loader_spec.rb +286 -0
- data/spec/unit/util/macaddress_spec.rb +141 -0
- data/spec/unit/util/macosx_spec.rb +113 -0
- data/spec/unit/util/manufacturer_spec.rb +179 -0
- data/spec/unit/util/normalization_spec.rb +113 -0
- data/spec/unit/util/parser_spec.rb +200 -0
- data/spec/unit/util/processor_spec.rb +92 -0
- data/spec/unit/util/registry_spec.rb +76 -0
- data/spec/unit/util/resolution_spec.rb +129 -0
- data/spec/unit/util/solaris_zones_spec.rb +127 -0
- data/spec/unit/util/uptime_spec.rb +126 -0
- data/spec/unit/util/values_spec.rb +131 -0
- data/spec/unit/util/virtual_spec.rb +294 -0
- data/spec/unit/util/vlans_spec.rb +12 -0
- data/spec/unit/util/wmi_spec.rb +19 -0
- data/spec/unit/util/xendomains_spec.rb +21 -0
- data/spec/unit/version_spec.rb +42 -0
- data/spec/unit/virtual_spec.rb +470 -0
- data/spec/unit/zfs_version_spec.rb +75 -0
- data/spec/unit/zonename_spec.rb +14 -0
- data/spec/unit/zones_spec.rb +55 -0
- data/spec/unit/zpool_version_spec.rb +75 -0
- data/spec/watchr.rb +125 -0
- metadata +674 -0
data/lib/facter/vlans.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# Fact: vlans
|
2
|
+
#
|
3
|
+
# Purpose: On Linux, return a list of all the VLANs on the system.
|
4
|
+
#
|
5
|
+
# Resolution: On Linux only, checks for and reads /proc/net/vlan/config and
|
6
|
+
# parses it.
|
7
|
+
#
|
8
|
+
# Caveats:
|
9
|
+
#
|
10
|
+
require 'facter/util/vlans'
|
11
|
+
|
12
|
+
Facter.add("vlans") do
|
13
|
+
confine :kernel => :linux
|
14
|
+
setcode do
|
15
|
+
Facter::Util::Vlans.get_vlans
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Fact: xendomains
|
2
|
+
#
|
3
|
+
# Purpose: Return the list of Xen domains on the Dom0.
|
4
|
+
#
|
5
|
+
# Resolution:
|
6
|
+
# On a Xen Dom0 host, return a list of Xen domains using the 'util/xendomains'
|
7
|
+
# library.
|
8
|
+
#
|
9
|
+
# Caveats:
|
10
|
+
#
|
11
|
+
require 'facter/util/xendomains'
|
12
|
+
|
13
|
+
Facter.add("xendomains") do
|
14
|
+
confine :kernel => %w{Linux FreeBSD OpenBSD SunOS}
|
15
|
+
confine :virtual => 'xen0'
|
16
|
+
|
17
|
+
setcode do
|
18
|
+
Facter::Util::Xendomains.get_domains
|
19
|
+
end
|
20
|
+
end
|
data/lib/facter/zones.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# Fact: zones#
|
2
|
+
#
|
3
|
+
# Purpose:
|
4
|
+
# Return the list of zones on the system and add one zones_ fact
|
5
|
+
# for each zone with its state e.g. running, incomplete or installed.
|
6
|
+
#
|
7
|
+
# Resolution:
|
8
|
+
# Uses 'usr/sbin/zoneadm list -cp' to get the list of zones in separate parsable
|
9
|
+
# lines with delimeter being ':' which is used to split the line string and get
|
10
|
+
# the zone details.
|
11
|
+
#
|
12
|
+
# Caveats:
|
13
|
+
# We dont support below s10 where zones are not available.
|
14
|
+
require 'facter/util/solaris_zones'
|
15
|
+
if Facter.value(:kernel) == 'SunOS'
|
16
|
+
Facter::Util::SolarisZones.add_facts
|
17
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'facter'
|
2
|
+
|
3
|
+
Facter.add('zpool_version') do
|
4
|
+
setcode do
|
5
|
+
if Facter::Core::Execution.which('zpool')
|
6
|
+
zpool_v = Facter::Core::Execution.exec('zpool upgrade -v')
|
7
|
+
zpool_version = zpool_v.match(/ZFS pool version (\d+)./).captures.first unless zpool_v.empty?
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
processor : 0
|
2
|
+
vendor_id : GenuineIntel
|
3
|
+
cpu family : 6
|
4
|
+
model : 23
|
5
|
+
model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
|
6
|
+
stepping : 10
|
7
|
+
cpu MHz : 689.302
|
8
|
+
cache size : 6144 KB
|
9
|
+
physical id : 0
|
10
|
+
siblings : 2
|
11
|
+
core id : 0
|
12
|
+
cpu cores : 2
|
13
|
+
apicid : 0
|
14
|
+
initial apicid : 0
|
15
|
+
fdiv_bug : no
|
16
|
+
hlt_bug : no
|
17
|
+
f00f_bug : no
|
18
|
+
coma_bug : no
|
19
|
+
fpu : yes
|
20
|
+
fpu_exception : yes
|
21
|
+
cpuid level : 5
|
22
|
+
wp : yes
|
23
|
+
flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
|
24
|
+
bogomips : 1378.60
|
25
|
+
clflush size : 64
|
26
|
+
cache_alignment : 64
|
27
|
+
address sizes : 36 bits physical, 48 bits virtual
|
28
|
+
power management:
|
29
|
+
|
30
|
+
processor : 1
|
31
|
+
vendor_id : GenuineIntel
|
32
|
+
cpu family : 6
|
33
|
+
model : 23
|
34
|
+
model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
|
35
|
+
stepping : 10
|
36
|
+
cpu MHz : 689.302
|
37
|
+
cache size : 6144 KB
|
38
|
+
physical id : 0
|
39
|
+
siblings : 2
|
40
|
+
core id : 1
|
41
|
+
cpu cores : 2
|
42
|
+
apicid : 1
|
43
|
+
initial apicid : 1
|
44
|
+
fdiv_bug : no
|
45
|
+
hlt_bug : no
|
46
|
+
f00f_bug : no
|
47
|
+
coma_bug : no
|
48
|
+
fpu : yes
|
49
|
+
fpu_exception : yes
|
50
|
+
cpuid level : 5
|
51
|
+
wp : yes
|
52
|
+
flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
|
53
|
+
bogomips : 1687.45
|
54
|
+
clflush size : 64
|
55
|
+
cache_alignment : 64
|
56
|
+
address sizes : 36 bits physical, 48 bits virtual
|
57
|
+
power management:
|
@@ -0,0 +1,79 @@
|
|
1
|
+
processor : 0
|
2
|
+
vendor_id : AuthenticAMD
|
3
|
+
cpu family : 16
|
4
|
+
model : 4
|
5
|
+
model name : Quad-Core AMD Opteron(tm) Processor 2374 HE
|
6
|
+
stepping : 2
|
7
|
+
cpu MHz : 1386667.908
|
8
|
+
cache size : 512 KB
|
9
|
+
fpu : yes
|
10
|
+
fpu_exception : yes
|
11
|
+
cpuid level : 5
|
12
|
+
wp : yes
|
13
|
+
flags : fpu de tsc msr pae cx8 cmov pat clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc pni cx16 popcnt lahf_lm cmp_legacy extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch
|
14
|
+
bogomips : 4400.17
|
15
|
+
TLB size : 1024 4K pages
|
16
|
+
clflush size : 64
|
17
|
+
cache_alignment : 64
|
18
|
+
address sizes : 48 bits physical, 48 bits virtual
|
19
|
+
power management: ts ttp tm stc 100mhzsteps hwpstate
|
20
|
+
|
21
|
+
processor : 1
|
22
|
+
vendor_id : AuthenticAMD
|
23
|
+
cpu family : 16
|
24
|
+
model : 4
|
25
|
+
model name : Quad-Core AMD Opteron(tm) Processor 2374 HE
|
26
|
+
stepping : 2
|
27
|
+
cpu MHz : 1386667.908
|
28
|
+
cache size : 512 KB
|
29
|
+
fpu : yes
|
30
|
+
fpu_exception : yes
|
31
|
+
cpuid level : 5
|
32
|
+
wp : yes
|
33
|
+
flags : fpu de tsc msr pae cx8 cmov pat clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc pni cx16 popcnt lahf_lm cmp_legacy extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch
|
34
|
+
bogomips : 4400.17
|
35
|
+
TLB size : 1024 4K pages
|
36
|
+
clflush size : 64
|
37
|
+
cache_alignment : 64
|
38
|
+
address sizes : 48 bits physical, 48 bits virtual
|
39
|
+
power management: ts ttp tm stc 100mhzsteps hwpstate
|
40
|
+
|
41
|
+
processor : 2
|
42
|
+
vendor_id : AuthenticAMD
|
43
|
+
cpu family : 16
|
44
|
+
model : 4
|
45
|
+
model name : Quad-Core AMD Opteron(tm) Processor 2374 HE
|
46
|
+
stepping : 2
|
47
|
+
cpu MHz : 1386667.908
|
48
|
+
cache size : 512 KB
|
49
|
+
fpu : yes
|
50
|
+
fpu_exception : yes
|
51
|
+
cpuid level : 5
|
52
|
+
wp : yes
|
53
|
+
flags : fpu de tsc msr pae cx8 cmov pat clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc pni cx16 popcnt lahf_lm cmp_legacy extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch
|
54
|
+
bogomips : 4400.17
|
55
|
+
TLB size : 1024 4K pages
|
56
|
+
clflush size : 64
|
57
|
+
cache_alignment : 64
|
58
|
+
address sizes : 48 bits physical, 48 bits virtual
|
59
|
+
power management: ts ttp tm stc 100mhzsteps hwpstate
|
60
|
+
|
61
|
+
processor : 3
|
62
|
+
vendor_id : AuthenticAMD
|
63
|
+
cpu family : 16
|
64
|
+
model : 4
|
65
|
+
model name : Quad-Core AMD Opteron(tm) Processor 2374 HE
|
66
|
+
stepping : 2
|
67
|
+
cpu MHz : 1386667.908
|
68
|
+
cache size : 512 KB
|
69
|
+
fpu : yes
|
70
|
+
fpu_exception : yes
|
71
|
+
cpuid level : 5
|
72
|
+
wp : yes
|
73
|
+
flags : fpu de tsc msr pae cx8 cmov pat clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc pni cx16 popcnt lahf_lm cmp_legacy extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch
|
74
|
+
bogomips : 4400.17
|
75
|
+
TLB size : 1024 4K pages
|
76
|
+
clflush size : 64
|
77
|
+
cache_alignment : 64
|
78
|
+
address sizes : 48 bits physical, 48 bits virtual
|
79
|
+
power management: ts ttp tm stc 100mhzsteps hwpstate
|
@@ -0,0 +1,23 @@
|
|
1
|
+
processor : 0
|
2
|
+
vendor_id : GenuineIntel
|
3
|
+
cpu family : 6
|
4
|
+
model : 23
|
5
|
+
model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
|
6
|
+
stepping : 10
|
7
|
+
cpu MHz : 600.825
|
8
|
+
cache size : 6144 KB
|
9
|
+
fdiv_bug : no
|
10
|
+
hlt_bug : no
|
11
|
+
f00f_bug : no
|
12
|
+
coma_bug : no
|
13
|
+
fpu : yes
|
14
|
+
fpu_exception : yes
|
15
|
+
cpuid level : 5
|
16
|
+
wp : yes
|
17
|
+
flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 constant_tsc up pni monitor ssse3
|
18
|
+
bogomips : 1201.65
|
19
|
+
clflush size : 64
|
20
|
+
cache_alignment : 64
|
21
|
+
address sizes : 36 bits physical, 48 bits virtual
|
22
|
+
power management:
|
23
|
+
|
@@ -0,0 +1,86 @@
|
|
1
|
+
processor : 0
|
2
|
+
vendor_id : GenuineIntel
|
3
|
+
cpu family : 6
|
4
|
+
model : 23
|
5
|
+
model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
|
6
|
+
stepping : 10
|
7
|
+
cpu MHz : 910.177
|
8
|
+
cache size : 6144 KB
|
9
|
+
physical id : 0
|
10
|
+
siblings : 3
|
11
|
+
core id : 0
|
12
|
+
cpu cores : 3
|
13
|
+
apicid : 0
|
14
|
+
initial apicid : 0
|
15
|
+
fdiv_bug : no
|
16
|
+
hlt_bug : no
|
17
|
+
f00f_bug : no
|
18
|
+
coma_bug : no
|
19
|
+
fpu : yes
|
20
|
+
fpu_exception : yes
|
21
|
+
cpuid level : 5
|
22
|
+
wp : yes
|
23
|
+
flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
|
24
|
+
bogomips : 1820.35
|
25
|
+
clflush size : 64
|
26
|
+
cache_alignment : 64
|
27
|
+
address sizes : 36 bits physical, 48 bits virtual
|
28
|
+
power management:
|
29
|
+
|
30
|
+
processor : 1
|
31
|
+
vendor_id : GenuineIntel
|
32
|
+
cpu family : 6
|
33
|
+
model : 23
|
34
|
+
model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
|
35
|
+
stepping : 10
|
36
|
+
cpu MHz : 910.177
|
37
|
+
cache size : 6144 KB
|
38
|
+
physical id : 0
|
39
|
+
siblings : 3
|
40
|
+
core id : 1
|
41
|
+
cpu cores : 3
|
42
|
+
apicid : 1
|
43
|
+
initial apicid : 1
|
44
|
+
fdiv_bug : no
|
45
|
+
hlt_bug : no
|
46
|
+
f00f_bug : no
|
47
|
+
coma_bug : no
|
48
|
+
fpu : yes
|
49
|
+
fpu_exception : yes
|
50
|
+
cpuid level : 5
|
51
|
+
wp : yes
|
52
|
+
flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
|
53
|
+
bogomips : 1875.49
|
54
|
+
clflush size : 64
|
55
|
+
cache_alignment : 64
|
56
|
+
address sizes : 36 bits physical, 48 bits virtual
|
57
|
+
power management:
|
58
|
+
|
59
|
+
processor : 2
|
60
|
+
vendor_id : GenuineIntel
|
61
|
+
cpu family : 6
|
62
|
+
model : 23
|
63
|
+
model name : Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
|
64
|
+
stepping : 10
|
65
|
+
cpu MHz : 910.177
|
66
|
+
cache size : 6144 KB
|
67
|
+
physical id : 0
|
68
|
+
siblings : 3
|
69
|
+
core id : 2
|
70
|
+
cpu cores : 3
|
71
|
+
apicid : 2
|
72
|
+
initial apicid : 2
|
73
|
+
fdiv_bug : no
|
74
|
+
hlt_bug : no
|
75
|
+
f00f_bug : no
|
76
|
+
coma_bug : no
|
77
|
+
fpu : yes
|
78
|
+
fpu_exception : yes
|
79
|
+
cpuid level : 5
|
80
|
+
wp : yes
|
81
|
+
flags : fpu vme de pse tsc msr mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht constant_tsc pni ssse3
|
82
|
+
bogomips : 1523.26
|
83
|
+
clflush size : 64
|
84
|
+
cache_alignment : 64
|
85
|
+
address sizes : 36 bits physical, 48 bits virtual
|
86
|
+
power management:
|
@@ -0,0 +1,600 @@
|
|
1
|
+
processor : 0
|
2
|
+
vendor_id : GenuineIntel
|
3
|
+
cpu family : 6
|
4
|
+
model : 44
|
5
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
6
|
+
stepping : 2
|
7
|
+
cpu MHz : 3068.000
|
8
|
+
cache size : 12288 KB
|
9
|
+
physical id : 0
|
10
|
+
siblings : 12
|
11
|
+
core id : 0
|
12
|
+
cpu cores : 6
|
13
|
+
apicid : 0
|
14
|
+
initial apicid : 0
|
15
|
+
fpu : yes
|
16
|
+
fpu_exception : yes
|
17
|
+
cpuid level : 11
|
18
|
+
wp : yes
|
19
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
20
|
+
bogomips : 6133.05
|
21
|
+
clflush size : 64
|
22
|
+
cache_alignment : 64
|
23
|
+
address sizes : 40 bits physical, 48 bits virtual
|
24
|
+
power management:
|
25
|
+
|
26
|
+
processor : 1
|
27
|
+
vendor_id : GenuineIntel
|
28
|
+
cpu family : 6
|
29
|
+
model : 44
|
30
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
31
|
+
stepping : 2
|
32
|
+
cpu MHz : 3068.000
|
33
|
+
cache size : 12288 KB
|
34
|
+
physical id : 0
|
35
|
+
siblings : 12
|
36
|
+
core id : 1
|
37
|
+
cpu cores : 6
|
38
|
+
apicid : 2
|
39
|
+
initial apicid : 2
|
40
|
+
fpu : yes
|
41
|
+
fpu_exception : yes
|
42
|
+
cpuid level : 11
|
43
|
+
wp : yes
|
44
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
45
|
+
bogomips : 6133.05
|
46
|
+
clflush size : 64
|
47
|
+
cache_alignment : 64
|
48
|
+
address sizes : 40 bits physical, 48 bits virtual
|
49
|
+
power management:
|
50
|
+
|
51
|
+
processor : 2
|
52
|
+
vendor_id : GenuineIntel
|
53
|
+
cpu family : 6
|
54
|
+
model : 44
|
55
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
56
|
+
stepping : 2
|
57
|
+
cpu MHz : 3068.000
|
58
|
+
cache size : 12288 KB
|
59
|
+
physical id : 0
|
60
|
+
siblings : 12
|
61
|
+
core id : 2
|
62
|
+
cpu cores : 6
|
63
|
+
apicid : 4
|
64
|
+
initial apicid : 4
|
65
|
+
fpu : yes
|
66
|
+
fpu_exception : yes
|
67
|
+
cpuid level : 11
|
68
|
+
wp : yes
|
69
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
70
|
+
bogomips : 6133.05
|
71
|
+
clflush size : 64
|
72
|
+
cache_alignment : 64
|
73
|
+
address sizes : 40 bits physical, 48 bits virtual
|
74
|
+
power management:
|
75
|
+
|
76
|
+
processor : 3
|
77
|
+
vendor_id : GenuineIntel
|
78
|
+
cpu family : 6
|
79
|
+
model : 44
|
80
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
81
|
+
stepping : 2
|
82
|
+
cpu MHz : 3068.000
|
83
|
+
cache size : 12288 KB
|
84
|
+
physical id : 0
|
85
|
+
siblings : 12
|
86
|
+
core id : 8
|
87
|
+
cpu cores : 6
|
88
|
+
apicid : 16
|
89
|
+
initial apicid : 16
|
90
|
+
fpu : yes
|
91
|
+
fpu_exception : yes
|
92
|
+
cpuid level : 11
|
93
|
+
wp : yes
|
94
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
95
|
+
bogomips : 6133.05
|
96
|
+
clflush size : 64
|
97
|
+
cache_alignment : 64
|
98
|
+
address sizes : 40 bits physical, 48 bits virtual
|
99
|
+
power management:
|
100
|
+
|
101
|
+
processor : 4
|
102
|
+
vendor_id : GenuineIntel
|
103
|
+
cpu family : 6
|
104
|
+
model : 44
|
105
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
106
|
+
stepping : 2
|
107
|
+
cpu MHz : 3068.000
|
108
|
+
cache size : 12288 KB
|
109
|
+
physical id : 0
|
110
|
+
siblings : 12
|
111
|
+
core id : 9
|
112
|
+
cpu cores : 6
|
113
|
+
apicid : 18
|
114
|
+
initial apicid : 18
|
115
|
+
fpu : yes
|
116
|
+
fpu_exception : yes
|
117
|
+
cpuid level : 11
|
118
|
+
wp : yes
|
119
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
120
|
+
bogomips : 6133.05
|
121
|
+
clflush size : 64
|
122
|
+
cache_alignment : 64
|
123
|
+
address sizes : 40 bits physical, 48 bits virtual
|
124
|
+
power management:
|
125
|
+
|
126
|
+
processor : 5
|
127
|
+
vendor_id : GenuineIntel
|
128
|
+
cpu family : 6
|
129
|
+
model : 44
|
130
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
131
|
+
stepping : 2
|
132
|
+
cpu MHz : 3068.000
|
133
|
+
cache size : 12288 KB
|
134
|
+
physical id : 0
|
135
|
+
siblings : 12
|
136
|
+
core id : 10
|
137
|
+
cpu cores : 6
|
138
|
+
apicid : 20
|
139
|
+
initial apicid : 20
|
140
|
+
fpu : yes
|
141
|
+
fpu_exception : yes
|
142
|
+
cpuid level : 11
|
143
|
+
wp : yes
|
144
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
145
|
+
bogomips : 6133.05
|
146
|
+
clflush size : 64
|
147
|
+
cache_alignment : 64
|
148
|
+
address sizes : 40 bits physical, 48 bits virtual
|
149
|
+
power management:
|
150
|
+
|
151
|
+
processor : 6
|
152
|
+
vendor_id : GenuineIntel
|
153
|
+
cpu family : 6
|
154
|
+
model : 44
|
155
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
156
|
+
stepping : 2
|
157
|
+
cpu MHz : 3068.000
|
158
|
+
cache size : 12288 KB
|
159
|
+
physical id : 1
|
160
|
+
siblings : 12
|
161
|
+
core id : 0
|
162
|
+
cpu cores : 6
|
163
|
+
apicid : 32
|
164
|
+
initial apicid : 32
|
165
|
+
fpu : yes
|
166
|
+
fpu_exception : yes
|
167
|
+
cpuid level : 11
|
168
|
+
wp : yes
|
169
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
170
|
+
bogomips : 6133.17
|
171
|
+
clflush size : 64
|
172
|
+
cache_alignment : 64
|
173
|
+
address sizes : 40 bits physical, 48 bits virtual
|
174
|
+
power management:
|
175
|
+
|
176
|
+
processor : 7
|
177
|
+
vendor_id : GenuineIntel
|
178
|
+
cpu family : 6
|
179
|
+
model : 44
|
180
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
181
|
+
stepping : 2
|
182
|
+
cpu MHz : 3068.000
|
183
|
+
cache size : 12288 KB
|
184
|
+
physical id : 1
|
185
|
+
siblings : 12
|
186
|
+
core id : 1
|
187
|
+
cpu cores : 6
|
188
|
+
apicid : 34
|
189
|
+
initial apicid : 34
|
190
|
+
fpu : yes
|
191
|
+
fpu_exception : yes
|
192
|
+
cpuid level : 11
|
193
|
+
wp : yes
|
194
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
195
|
+
bogomips : 6133.17
|
196
|
+
clflush size : 64
|
197
|
+
cache_alignment : 64
|
198
|
+
address sizes : 40 bits physical, 48 bits virtual
|
199
|
+
power management:
|
200
|
+
|
201
|
+
processor : 8
|
202
|
+
vendor_id : GenuineIntel
|
203
|
+
cpu family : 6
|
204
|
+
model : 44
|
205
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
206
|
+
stepping : 2
|
207
|
+
cpu MHz : 3068.000
|
208
|
+
cache size : 12288 KB
|
209
|
+
physical id : 1
|
210
|
+
siblings : 12
|
211
|
+
core id : 2
|
212
|
+
cpu cores : 6
|
213
|
+
apicid : 36
|
214
|
+
initial apicid : 36
|
215
|
+
fpu : yes
|
216
|
+
fpu_exception : yes
|
217
|
+
cpuid level : 11
|
218
|
+
wp : yes
|
219
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
220
|
+
bogomips : 6133.17
|
221
|
+
clflush size : 64
|
222
|
+
cache_alignment : 64
|
223
|
+
address sizes : 40 bits physical, 48 bits virtual
|
224
|
+
power management:
|
225
|
+
|
226
|
+
processor : 9
|
227
|
+
vendor_id : GenuineIntel
|
228
|
+
cpu family : 6
|
229
|
+
model : 44
|
230
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
231
|
+
stepping : 2
|
232
|
+
cpu MHz : 3068.000
|
233
|
+
cache size : 12288 KB
|
234
|
+
physical id : 1
|
235
|
+
siblings : 12
|
236
|
+
core id : 8
|
237
|
+
cpu cores : 6
|
238
|
+
apicid : 48
|
239
|
+
initial apicid : 48
|
240
|
+
fpu : yes
|
241
|
+
fpu_exception : yes
|
242
|
+
cpuid level : 11
|
243
|
+
wp : yes
|
244
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
245
|
+
bogomips : 6133.17
|
246
|
+
clflush size : 64
|
247
|
+
cache_alignment : 64
|
248
|
+
address sizes : 40 bits physical, 48 bits virtual
|
249
|
+
power management:
|
250
|
+
|
251
|
+
processor : 10
|
252
|
+
vendor_id : GenuineIntel
|
253
|
+
cpu family : 6
|
254
|
+
model : 44
|
255
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
256
|
+
stepping : 2
|
257
|
+
cpu MHz : 3068.000
|
258
|
+
cache size : 12288 KB
|
259
|
+
physical id : 1
|
260
|
+
siblings : 12
|
261
|
+
core id : 9
|
262
|
+
cpu cores : 6
|
263
|
+
apicid : 50
|
264
|
+
initial apicid : 50
|
265
|
+
fpu : yes
|
266
|
+
fpu_exception : yes
|
267
|
+
cpuid level : 11
|
268
|
+
wp : yes
|
269
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
270
|
+
bogomips : 6133.17
|
271
|
+
clflush size : 64
|
272
|
+
cache_alignment : 64
|
273
|
+
address sizes : 40 bits physical, 48 bits virtual
|
274
|
+
power management:
|
275
|
+
|
276
|
+
processor : 11
|
277
|
+
vendor_id : GenuineIntel
|
278
|
+
cpu family : 6
|
279
|
+
model : 44
|
280
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
281
|
+
stepping : 2
|
282
|
+
cpu MHz : 3068.000
|
283
|
+
cache size : 12288 KB
|
284
|
+
physical id : 1
|
285
|
+
siblings : 12
|
286
|
+
core id : 10
|
287
|
+
cpu cores : 6
|
288
|
+
apicid : 52
|
289
|
+
initial apicid : 52
|
290
|
+
fpu : yes
|
291
|
+
fpu_exception : yes
|
292
|
+
cpuid level : 11
|
293
|
+
wp : yes
|
294
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
295
|
+
bogomips : 6133.17
|
296
|
+
clflush size : 64
|
297
|
+
cache_alignment : 64
|
298
|
+
address sizes : 40 bits physical, 48 bits virtual
|
299
|
+
power management:
|
300
|
+
|
301
|
+
processor : 12
|
302
|
+
vendor_id : GenuineIntel
|
303
|
+
cpu family : 6
|
304
|
+
model : 44
|
305
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
306
|
+
stepping : 2
|
307
|
+
cpu MHz : 3068.000
|
308
|
+
cache size : 12288 KB
|
309
|
+
physical id : 0
|
310
|
+
siblings : 12
|
311
|
+
core id : 0
|
312
|
+
cpu cores : 6
|
313
|
+
apicid : 1
|
314
|
+
initial apicid : 1
|
315
|
+
fpu : yes
|
316
|
+
fpu_exception : yes
|
317
|
+
cpuid level : 11
|
318
|
+
wp : yes
|
319
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
320
|
+
bogomips : 6133.05
|
321
|
+
clflush size : 64
|
322
|
+
cache_alignment : 64
|
323
|
+
address sizes : 40 bits physical, 48 bits virtual
|
324
|
+
power management:
|
325
|
+
|
326
|
+
processor : 13
|
327
|
+
vendor_id : GenuineIntel
|
328
|
+
cpu family : 6
|
329
|
+
model : 44
|
330
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
331
|
+
stepping : 2
|
332
|
+
cpu MHz : 3068.000
|
333
|
+
cache size : 12288 KB
|
334
|
+
physical id : 0
|
335
|
+
siblings : 12
|
336
|
+
core id : 1
|
337
|
+
cpu cores : 6
|
338
|
+
apicid : 3
|
339
|
+
initial apicid : 3
|
340
|
+
fpu : yes
|
341
|
+
fpu_exception : yes
|
342
|
+
cpuid level : 11
|
343
|
+
wp : yes
|
344
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
345
|
+
bogomips : 6133.05
|
346
|
+
clflush size : 64
|
347
|
+
cache_alignment : 64
|
348
|
+
address sizes : 40 bits physical, 48 bits virtual
|
349
|
+
power management:
|
350
|
+
|
351
|
+
processor : 14
|
352
|
+
vendor_id : GenuineIntel
|
353
|
+
cpu family : 6
|
354
|
+
model : 44
|
355
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
356
|
+
stepping : 2
|
357
|
+
cpu MHz : 3068.000
|
358
|
+
cache size : 12288 KB
|
359
|
+
physical id : 0
|
360
|
+
siblings : 12
|
361
|
+
core id : 2
|
362
|
+
cpu cores : 6
|
363
|
+
apicid : 5
|
364
|
+
initial apicid : 5
|
365
|
+
fpu : yes
|
366
|
+
fpu_exception : yes
|
367
|
+
cpuid level : 11
|
368
|
+
wp : yes
|
369
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
370
|
+
bogomips : 6133.05
|
371
|
+
clflush size : 64
|
372
|
+
cache_alignment : 64
|
373
|
+
address sizes : 40 bits physical, 48 bits virtual
|
374
|
+
power management:
|
375
|
+
|
376
|
+
processor : 15
|
377
|
+
vendor_id : GenuineIntel
|
378
|
+
cpu family : 6
|
379
|
+
model : 44
|
380
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
381
|
+
stepping : 2
|
382
|
+
cpu MHz : 3068.000
|
383
|
+
cache size : 12288 KB
|
384
|
+
physical id : 0
|
385
|
+
siblings : 12
|
386
|
+
core id : 8
|
387
|
+
cpu cores : 6
|
388
|
+
apicid : 17
|
389
|
+
initial apicid : 17
|
390
|
+
fpu : yes
|
391
|
+
fpu_exception : yes
|
392
|
+
cpuid level : 11
|
393
|
+
wp : yes
|
394
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
395
|
+
bogomips : 6133.05
|
396
|
+
clflush size : 64
|
397
|
+
cache_alignment : 64
|
398
|
+
address sizes : 40 bits physical, 48 bits virtual
|
399
|
+
power management:
|
400
|
+
|
401
|
+
processor : 16
|
402
|
+
vendor_id : GenuineIntel
|
403
|
+
cpu family : 6
|
404
|
+
model : 44
|
405
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
406
|
+
stepping : 2
|
407
|
+
cpu MHz : 3068.000
|
408
|
+
cache size : 12288 KB
|
409
|
+
physical id : 0
|
410
|
+
siblings : 12
|
411
|
+
core id : 9
|
412
|
+
cpu cores : 6
|
413
|
+
apicid : 19
|
414
|
+
initial apicid : 19
|
415
|
+
fpu : yes
|
416
|
+
fpu_exception : yes
|
417
|
+
cpuid level : 11
|
418
|
+
wp : yes
|
419
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
420
|
+
bogomips : 6133.05
|
421
|
+
clflush size : 64
|
422
|
+
cache_alignment : 64
|
423
|
+
address sizes : 40 bits physical, 48 bits virtual
|
424
|
+
power management:
|
425
|
+
|
426
|
+
processor : 17
|
427
|
+
vendor_id : GenuineIntel
|
428
|
+
cpu family : 6
|
429
|
+
model : 44
|
430
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
431
|
+
stepping : 2
|
432
|
+
cpu MHz : 3068.000
|
433
|
+
cache size : 12288 KB
|
434
|
+
physical id : 0
|
435
|
+
siblings : 12
|
436
|
+
core id : 10
|
437
|
+
cpu cores : 6
|
438
|
+
apicid : 21
|
439
|
+
initial apicid : 21
|
440
|
+
fpu : yes
|
441
|
+
fpu_exception : yes
|
442
|
+
cpuid level : 11
|
443
|
+
wp : yes
|
444
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
445
|
+
bogomips : 6133.05
|
446
|
+
clflush size : 64
|
447
|
+
cache_alignment : 64
|
448
|
+
address sizes : 40 bits physical, 48 bits virtual
|
449
|
+
power management:
|
450
|
+
|
451
|
+
processor : 18
|
452
|
+
vendor_id : GenuineIntel
|
453
|
+
cpu family : 6
|
454
|
+
model : 44
|
455
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
456
|
+
stepping : 2
|
457
|
+
cpu MHz : 3068.000
|
458
|
+
cache size : 12288 KB
|
459
|
+
physical id : 1
|
460
|
+
siblings : 12
|
461
|
+
core id : 0
|
462
|
+
cpu cores : 6
|
463
|
+
apicid : 33
|
464
|
+
initial apicid : 33
|
465
|
+
fpu : yes
|
466
|
+
fpu_exception : yes
|
467
|
+
cpuid level : 11
|
468
|
+
wp : yes
|
469
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
470
|
+
bogomips : 6133.17
|
471
|
+
clflush size : 64
|
472
|
+
cache_alignment : 64
|
473
|
+
address sizes : 40 bits physical, 48 bits virtual
|
474
|
+
power management:
|
475
|
+
|
476
|
+
processor : 19
|
477
|
+
vendor_id : GenuineIntel
|
478
|
+
cpu family : 6
|
479
|
+
model : 44
|
480
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
481
|
+
stepping : 2
|
482
|
+
cpu MHz : 3068.000
|
483
|
+
cache size : 12288 KB
|
484
|
+
physical id : 1
|
485
|
+
siblings : 12
|
486
|
+
core id : 1
|
487
|
+
cpu cores : 6
|
488
|
+
apicid : 35
|
489
|
+
initial apicid : 35
|
490
|
+
fpu : yes
|
491
|
+
fpu_exception : yes
|
492
|
+
cpuid level : 11
|
493
|
+
wp : yes
|
494
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
495
|
+
bogomips : 6133.17
|
496
|
+
clflush size : 64
|
497
|
+
cache_alignment : 64
|
498
|
+
address sizes : 40 bits physical, 48 bits virtual
|
499
|
+
power management:
|
500
|
+
|
501
|
+
processor : 20
|
502
|
+
vendor_id : GenuineIntel
|
503
|
+
cpu family : 6
|
504
|
+
model : 44
|
505
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
506
|
+
stepping : 2
|
507
|
+
cpu MHz : 3068.000
|
508
|
+
cache size : 12288 KB
|
509
|
+
physical id : 1
|
510
|
+
siblings : 12
|
511
|
+
core id : 2
|
512
|
+
cpu cores : 6
|
513
|
+
apicid : 37
|
514
|
+
initial apicid : 37
|
515
|
+
fpu : yes
|
516
|
+
fpu_exception : yes
|
517
|
+
cpuid level : 11
|
518
|
+
wp : yes
|
519
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
520
|
+
bogomips : 6133.17
|
521
|
+
clflush size : 64
|
522
|
+
cache_alignment : 64
|
523
|
+
address sizes : 40 bits physical, 48 bits virtual
|
524
|
+
power management:
|
525
|
+
|
526
|
+
processor : 21
|
527
|
+
vendor_id : GenuineIntel
|
528
|
+
cpu family : 6
|
529
|
+
model : 44
|
530
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
531
|
+
stepping : 2
|
532
|
+
cpu MHz : 3068.000
|
533
|
+
cache size : 12288 KB
|
534
|
+
physical id : 1
|
535
|
+
siblings : 12
|
536
|
+
core id : 8
|
537
|
+
cpu cores : 6
|
538
|
+
apicid : 49
|
539
|
+
initial apicid : 49
|
540
|
+
fpu : yes
|
541
|
+
fpu_exception : yes
|
542
|
+
cpuid level : 11
|
543
|
+
wp : yes
|
544
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
545
|
+
bogomips : 6133.17
|
546
|
+
clflush size : 64
|
547
|
+
cache_alignment : 64
|
548
|
+
address sizes : 40 bits physical, 48 bits virtual
|
549
|
+
power management:
|
550
|
+
|
551
|
+
processor : 22
|
552
|
+
vendor_id : GenuineIntel
|
553
|
+
cpu family : 6
|
554
|
+
model : 44
|
555
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
556
|
+
stepping : 2
|
557
|
+
cpu MHz : 3068.000
|
558
|
+
cache size : 12288 KB
|
559
|
+
physical id : 1
|
560
|
+
siblings : 12
|
561
|
+
core id : 9
|
562
|
+
cpu cores : 6
|
563
|
+
apicid : 51
|
564
|
+
initial apicid : 51
|
565
|
+
fpu : yes
|
566
|
+
fpu_exception : yes
|
567
|
+
cpuid level : 11
|
568
|
+
wp : yes
|
569
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
570
|
+
bogomips : 6133.17
|
571
|
+
clflush size : 64
|
572
|
+
cache_alignment : 64
|
573
|
+
address sizes : 40 bits physical, 48 bits virtual
|
574
|
+
power management:
|
575
|
+
|
576
|
+
processor : 23
|
577
|
+
vendor_id : GenuineIntel
|
578
|
+
cpu family : 6
|
579
|
+
model : 44
|
580
|
+
model name : Intel(R) Xeon(R) CPU X5675 @ 3.07GHz
|
581
|
+
stepping : 2
|
582
|
+
cpu MHz : 3068.000
|
583
|
+
cache size : 12288 KB
|
584
|
+
physical id : 1
|
585
|
+
siblings : 12
|
586
|
+
core id : 10
|
587
|
+
cpu cores : 6
|
588
|
+
apicid : 53
|
589
|
+
initial apicid : 53
|
590
|
+
fpu : yes
|
591
|
+
fpu_exception : yes
|
592
|
+
cpuid level : 11
|
593
|
+
wp : yes
|
594
|
+
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
|
595
|
+
bogomips : 6133.17
|
596
|
+
clflush size : 64
|
597
|
+
cache_alignment : 64
|
598
|
+
address sizes : 40 bits physical, 48 bits virtual
|
599
|
+
power management:
|
600
|
+
|