Ubuntu จะรู้ยี่ห้อและรุ่นของแล็ปท็อปของฉันได้อย่างไร


33

ผมเพิ่งติดตั้ง 15.04 carl-lenovo-g710แล็ปท็อปใหม่ของฉันและติดตั้งแนะนำชื่อคอมพิวเตอร์ของ

แล็ปท็อปเป็น Lenovo G710 แน่นอน แต่ตัวติดตั้งรู้ได้อย่างไร

ฉันพยายามsudo lshw | grep -i productซึ่งให้ผล:

product: Intel(R) Pentium(R) CPU 3550M @ 2.30GHz
product: Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller
product: 4th Gen Core Processor Integrated Graphics Controller
product: Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller
product: 8 Series/C220 Series Chipset Family USB xHCI
product: xHCI Host Controller
product: xHCI Host Controller
product: Flash Card Reader/Writer
product: Card  Reader
product: Lenovo EasyCamera
product: 8 Series/C220 Series Chipset Family MEI Controller #1
product: 8 Series/C220 Series Chipset Family USB EHCI #2
product: EHCI Host Controller
product: 8 Series/C220 Series Chipset High Definition Audio Controller
product: 8 Series/C220 Series Chipset Family PCI Express Root Port #2
product: QCA9565 / AR9565 Wireless Network Adapter
product: 8 Series/C220 Series Chipset Family PCI Express Root Port #3
product: QCA8172 Fast Ethernet
product: 8 Series/C220 Series Chipset Family USB EHCI #1
product: EHCI Host Controller
product: HM86 Express LPC Controller
product: 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]
product: 8 Series/C220 Series Chipset Family SMBus Controller
product: DVDRAM GTA0N
product: ST1000LM024 HN-M

จากนั้นฉันก็ลองsudo lshw | grep -i 710ซึ่งไม่มีอะไรปรากฏขึ้น

ดังนั้นlshwไม่ทราบยี่ห้อและรุ่น ดังนั้นข้อมูลนี้ถูกเก็บไว้ที่ไหน?


1
อาจจะเป็น dmidecode?
hanetzer

เพื่อชี้แจงคุณต้องการทราบว่าอยู่ที่ไหนในระบบที่พบข้อมูล / ตรวจพบสิ่งใด หรือวิธีการค้นหาข้อมูลด้วยตัวเอง?
Hilton Shumway

@HiltonShumway พบข้อมูลที่ไหนในระบบ
Carl H

คำตอบ:


37

ติดตั้งอูบุนตูจะเรียกว่าแพร่หลาย การเปลี่ยนแปลงของ ubiquity 2.3.18กล่าวถึง

"Use dmidecode to get a more unique suffix for the hostname (LP: #628087)."

รหัสหลามที่แน่นอนคือ:

def dmimodel():
    model = ''
    kwargs = {}
    if os.geteuid() != 0:
        # Silence annoying warnings during the test suite.
        kwargs['stderr'] = open('/dev/null', 'w')
    try:
        proc = subprocess.Popen(
            ['dmidecode', '--quiet', '--string', 'system-manufacturer'],
            stdout=subprocess.PIPE, universal_newlines=True, **kwargs)
        manufacturer = proc.communicate()[0]
        if not manufacturer:
            return
        manufacturer = manufacturer.lower()
        if 'to be filled' in manufacturer:
            # Don't bother with products in development.
            return
        if 'bochs' in manufacturer or 'vmware' in manufacturer:
            model = 'virtual machine'
            # VirtualBox sets an appropriate system-product-name.
        else:
            if 'lenovo' in manufacturer or 'ibm' in manufacturer:
                key = 'system-version'
            else:
                key = 'system-product-name'
            proc = subprocess.Popen(
                ['dmidecode', '--quiet', '--string', key],
                stdout=subprocess.PIPE,
                universal_newlines=True)
            model = proc.communicate()[0]
        if 'apple' in manufacturer:
            # MacBook4,1 - strip the 4,1
            model = re.sub('[^a-zA-Z\s]', '', model)
        # Replace each gap of non-alphanumeric characters with a dash.
        # Ensure the resulting string does not begin or end with a dash.
        model = re.sub('[^a-zA-Z0-9]+', '-', model).rstrip('-').lstrip('-')
        if model.lower() == 'not-available':
            return
        if model.lower() == "To be filled by O.E.M.".lower():
            return
    except Exception:
        syslog.syslog(syslog.LOG_ERR, 'Unable to determine the model from DMI')
    finally:
        if 'stderr' in kwargs:
            kwargs['stderr'].close()
    return model

LP: # 628087

แก้ไข: คุณสามารถเรียกดูรหัสด้วยตนเองโดยดาวน์โหลดด้วย:

cd /tmp
apt-get source ubiquity

1
ดังนั้นจะdmidecodeได้รับข้อมูลนี้ที่ไหน
ζ--

9
@hexafraction มันเก็บไว้ในหน่วยความจำอ่านอย่างเดียวโดยผู้ผลิตเครื่องคอมพิวเตอร์ของคุณ, เลอโนโวในกรณีนี้และสามารถใช้ได้กับผู้ดูแลระบบผ่านอินเตอร์เฟซที่เรียกว่าDMI นั่นคือสิ่งที่dmidecodeอ่าน Windows ก็สามารถรู้ได้เช่นกัน
Federico Poloni

20

dmidecodeแสดงข้อมูลทั้งหมดเกี่ยวกับระบบของคุณ ดูโดยใช้คำสั่ง:

sudo dmidecode | grep -A 9 "System Information"
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.