linux获取cpu id和disk id

// 获得CPU ID


public static final String CPU_ID_CMD = "dmidecode -t 4 | grep ID |sort -u |awk -F': ' '{print $2}'";


// 获得磁盘ID

public static final String DISK_ID_CMD = "fdisk -l |grep \"Disk identifier\" |awk {'print $3'}";

 

/**
     * 获得CPU ID
     *
     * @return info[0]
     * @throws SigarException
     */
    public static String getCpuId() throws SigarException, IOException, InterruptedException {
        StringBuffer buffer = new StringBuffer();
        CMDUtils.runCMD(CPU_ID_CMD, buffer, null);
        String[] info = buffer.toString().trim().split("\n");
        if (info != null && info.length > 0) {
            return info[0];
        }
        return null;

    }

    /**
     * 仅获得第一块磁盘的ID
     *
     * @return info[0]
     * @throws IOException
     * @throws InterruptedException
     */
    public static String getDiskId() throws IOException, InterruptedException {
        StringBuffer buffer = new StringBuffer();
        CMDUtils.runCMD(DISK_ID_CMD, buffer, null);
        String[] info = buffer.toString().trim().split("\n");
        if (info != null && info.length > 0) {
            return info[0];
        }
        return null;

    }

    /**
     * 获得网卡的MAC地址
     *
     * @return macAddr
     * @throws SigarException
     */
    public static String getMacAddress() throws SigarException {
        NetInterfaceConfig nic = sigar.getNetInterfaceConfig();
        String macAddr = nic.getHwaddr();
        if (macAddr != null && !macAddr.isEmpty()) {
            return macAddr;
        }
        return null;

    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值