dtvgo28624 2018-11-07 20:48
浏览 1119
已采纳

如何在Go中检测操作系统版本

Relatively new to Go. Seems trivial, but I can't figure out how to detect the OS version. I know I can use runtime.GOOS and runtime.GOARCH to get the platform and architecture, but say I know I'm on linux but I want to find if I'm on RH6 vice RH7, etc. is what I'm trying to figure out.

  • 写回答

1条回答 默认 最新

  • dongqiao2077 2018-11-07 21:02
    关注

    So there's this obscure Uname method in the syscall package that basically does it, at least on Linux. The struct it fills is a bit clunky and undocumented, but you can get the gist of it:

    import (
        "fmt"
        "syscall"
    )
    
    // A utility to convert the values to proper strings.
    func int8ToStr(arr []int8) string {
        b := make([]byte, 0, len(arr))
        for _, v := range arr {
            if v == 0x00 {
                break
            } 
            b = append(b, byte(v))
        }
        return string(b)
    }
    
    func main() {
    
        var uname syscall.Utsname
        if err := syscall.Uname(&uname); err == nil {
            // extract members:
            // type Utsname struct {
            //  Sysname    [65]int8
            //  Nodename   [65]int8
            //  Release    [65]int8
            //  Version    [65]int8
            //  Machine    [65]int8
            //  Domainname [65]int8
            // }
    
            fmt.Println(int8ToStr(uname.Sysname[:]), 
                        int8ToStr(uname.Release[:]), 
                        int8ToStr(uname.Version[:]))
    
        }
    }
    

    BTW This doesn't work on the playground, probably because of the sandbox limitations, but works on Linux. Haven't tested other systems.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用三极管设计—个共射极放大电路
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示