首页 > 系统相关 >Linux uname command All In One

Linux uname command All In One

时间:2022-08-17 22:55:08浏览次数:117  
标签: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
From: https://www.cnblogs.com/xgqfrms/p/16595295.html

相关文章

  • linux性能工具--ftrace框架
    对于ftrace架构,主要来了解下内核是如何实现的,其主要包括如下内容:ringbuffer的原理和代码分析tracer(function、function_graph、irq_off)原理和代码分析traceevent......
  • Linux下搭建ZooKeeper集群并整合Dubbo配置
    1.环境说明Zookeeper不仅可以单机提供服务,同时也支持多机组成集群来提供服务,实际上Zookeeper还支持另外一种伪集群的方式,也就是可以在一台物理机上运行多个Zookeeper......
  • (待更新)【鸟哥 Linux 10.6】管线(管道)命令
    【鸟哥Linux10.6】管线(管道)命令管道命令使用|创建匿名管道。默认管道命令仅仅能处理标准输出,对于标准错误输出予以忽略。但可以使用重定向改变这一行为。管道......
  • Linux进程管理
    Linux进程管理简介在Linux系统当中,触发任何一个事件时,系统都会将它定义成为一个进程,并给予这个进程一个ID,称为PID,同时依据启发这个进程的使用者与相关属性关系,给予这个......
  • 安装linux子系统CentOS与WSL2
    目录开启windows系统的WSL支持下载LxRunOffline工具下载CentOSDocker镜像LxRunOffline安装子系统WSL1升级为WSL21.下载WSL内核更新包下载Linux内核更新包2.设置WSL......
  • Linux初始化脚本
    #!/bin/bash#********************************************************************#Author:HEhandsome#QQ:2700565402#Date:2022-07-01#F......
  • 如何在Windows 10上使用Kali Linux应用程序
    Linux操作系统在一些企业中越来越受欢迎。有许多发行版,包括Mint、Ubuntu和Kali。Kali是最著名的Linux发行版之一,渗透测试人员通常使用它。KaliLinux配备了一系列免费的开......
  • Linux-进程管理(1)Linux进程睡眠状态 disk sleep (kill -9 杀不掉D状态进程)
    参考文档Linux进程睡眠状态disksleep1.Linux进程状态Running(R):运行或将要运行Interruptible(S):被阻断而等待一个事件,可能会被一个信号**Uninterruptible(D):被阻......
  • linux 中awk命令跳出外层循环的方法
     001、(base)root@PC1:/home/test4#lsa.txt(base)root@PC1:/home/test4#cata.txt##测试数据##1##2##34i6y#kkmma97......
  • 在linux服务器上搭建FTP服务器
    一、在Linux服务器上安装vsftpyum-yinstallvsftpd二、编辑vsftp.conf文件 参数作用listen=[YES|NO]是否以独立运......