ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

Linux uname command All In One

2022-08-17 23:00:08  阅读:163  来源: 互联网

标签:name -- uname command https Linux com


Linux uname command All In One

$ uname -a

# Darwin xgqfrms-mbp.local 21.4.0 Darwin Kernel Version 21.4.0: Mon Feb 21 20:34:37 PST 2022; root:xnu-8020.101.4~2/RELEASE_X86_64 x86_64

uname

$ uname [OPTIONS]...

# print all
$ uname -a
$ uname --all
The options are as follows:
-s, (--kernel-name) - Prints the kernel name.
-n, (--nodename) - Prints the system’s node name (hostname). This is the name the system uses when communicating over the network. When used with the -n option, uname produces the same output as the hostname command.
-r, (--kernel-release) - Prints the kernel release.
-v, (--kernel-version) - Prints the kernel version.
-m, (--machine) - Prints the name of the machine’s hardware name.
-p, (--processor) - Prints the architecture of the processor.
-i, (--hardware-platform) - Prints the hardware platform.
-o, (--operating-system) - Print the name of the operating system. On Linux systems that is “GNU/Linux”
-a, (--all) - When the -a option is used, uname behaves the same as if the -snrvmo options have been given.

https://linuxize.com/post/uname-command-in-linux/

https://www.geeksforgeeks.org/uname-command-in-linux-with-examples/

https://linuxhint.com/linux-uname-command-tutorial/

https://linuxopsys.com/topics/uname-command-in-linux

https://stackoverflow.com/questions/35910074/explain-uname-a-command-on-linux-how-to-find-venders-name-of-os

https://www.ibm.com/docs/en/aix/7.2?topic=u-uname-command

https://docs.oracle.com/cd/E19504-01/802-5750/6i9g464r0/index.html

DNS tools

# nslookup
$  nslookup www.google.com
Server:		8.8.8.8
Address:	8.8.8.8#53

Non-authoritative answer:
Name:	www.google.com
Address: 142.250.204.132

# dig
$ dig www.google.com     

; <<>> DiG 9.10.6 <<>> www.google.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 43210
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 1232
;; QUESTION SECTION:
;www.google.com.			IN	A

;; ANSWER SECTION:
www.google.com.		299	IN	A	142.250.204.132

;; Query time: 66 msec
;; SERVER: 8.8.8.8#53(8.8.8.8)
;; WHEN: Wed Aug 17 15:17:09 CST 2022
;; MSG SIZE  rcvd: 59



https://linuxjourney.com/lesson/dns-tools

https://linuxjourney.com/lesson/kernel-installation

refs

https://github.com/angular/angular-cli/issues/18667

https://github.com/xgqfrms/RAIO/issues/242


Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载

标签:name,--,uname,command,https,Linux,com
来源: https://www.cnblogs.com/xgqfrms/p/16595295.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有