Linux命令——getconf
简介
getconf本身是个ELF可执行文件,用于获取系统信息
用法
getconf -a可以获取全部系统信息
对于这个命令,记住几个常用的信息获取方法就行
getconf PAGE_SIZE 查看系统内存分页大小
getconf LONG_BIT 看linux是32位还是64位最简单的方法
| _CS_PATH | Value for the PATH environment variable used to find commands. |
| ARG_MAX | Maximum length, in bytes, of the arguments for one of the exec subroutines, including environment data. |
| BC_BASE_MAX | Maximum value allowed for the obase variable with the bc command. |
| BC_DIM_MAX | Maximum number of elements permitted in an array by the bc command. |
| BC_SCALE_MAX | Maximum value allowed for the scale variable with the bc command. |
| BC_STRING_MAX | Maximum length of a string constant accepted by the bc command. |
| CHARCLASS_NAME_MAX | Maximum number of bytes in a character class name. |
| CHAR_BIT | Number of bits in a type character. |
| CHAR_MAX | Maximum value of a type character. |
| CHAR_MIN | Minimum value of a type character. |
| CHILD_MAX | Maximum number of simultaneous processes for each real user ID. |
| CLK_TCK | Number of clock ticks per second returned by the time subroutine. |
| COLL_WEIGHTS_MAX | Maximum number of weights that can be assigned to an entry in the LC_COLLATE locale stanza in a locale-definition file. |
| CS_PATH | Value of the PATH environment variable used to find commands. |
| EXPR_NEST_MAX | Maximum number of expressions that can be nested within parentheses by the expr command. |
| INT_MAX | Maximum value of a type int. |
| INT_MIN | Minimum value of a type int. |
| LINE_MAX | Maximum length, in bytes, of a command's input line (either standard input or another file) when the utility is described as processing text files. The length includes room for the trailing new-line character. |
| LONG_BIT | Number of bits in a type long int. |
| LONG_MAX | Maximum value of a type long int. |
| LONG_MIN | Minimum value of a type long int. |
| MB_LEN_MAX | Maximum number of bytes in a character for any supported locale. |
| NGROUPS_MAX | Maximum number of simultaneous supplementary group IDs for each process. |
| NL_ARGMAX | Maximum value of digit in calls to the printf and scanf subroutines. |
| NL_LANGMAX | Maximum number of bytes in a LANG name. |
| NL_MSGMAX | Maximum message number. |
| NL_NMAX | Maximum number of bytes in an N-to-1 collation mapping. |
| NL_SETMAX | Maximum set number. |
| NL_TEXTMAX | Maximum number of bytes in a message string. |
| NZERO | Default process priority. |
| OPEN_MAX | Maximum number of files that one process can have open at one time. |
| PATH | Sequence of colon-separated path prefixes used to find commands. |
| RE_DUP_MAX | Maximum number of repeated occurrences of a regular expression permitted when using the interval-notation parameters, such as the m and n parameters with the ed command. |
| SCHAR_MAX | Maximum value of a type signed char. |
| SCHAR_MIN | Minimum value of a type signed char. |
| SHRT_MAX | Maximum value of a type short. |
| SHRT_MIN | Minimum value of a type short. |
| SSIZE_MAX | Maximum value of an object of type ssize_t. |
| STREAM_MAX | Number of streams that one process can have open at one time. |
| TMP_MAX | Minimum number of unique path names generated by the tmpnam subroutine. Maximum number of times an application can reliably call the tmpnam subroutine. |
| TZNAME_MAX | Maximum number of bytes supported for the name of a time zone (not the length of the TZ environment variable). |
| UCHAR_MAX | Maximum value of a type unsigned char. |
| UINT_MAX | Maximum value of a type unsigned int. |
| ULONG_MAX | Maximum value of a type unsigned long int. |
| USHRT_MAX | Maximum value of a type unsigned short int. |
| WORD_BIT | Number of bits in a word or type int |
Linux命令——getconf的更多相关文章
- 运维工程师必会的109个Linux命令
运维工程师必会的109个Linux命令 版本1.0 崔存新 更新于2009-12-26 目录 1 文件管理 6 1.1 basename 6 1.2 cat 6 1.3 cd 7 1.4 chgrp ...
- linux 命令查看CPU和内存信息
几个cpu more /proc/cpuinfo |grep "physical id"|uniq|wc -l 每个cpu是几核(假设cpu配置相同) more /proc/cpu ...
- 我用的Linux命令
从今天起,会在这里记一些我使用过的linux命令 =======I'm 分割线======= 11.查看某个端口号被哪个应用占用 netstat -apn|grep 端口号,lsof -i:端口号,n ...
- 常用DOS命令和Linux命令
DOS命令 1.查询端口占用情况:netstat -aon |findstr "8080"; 查看端口进程号: 2.查看进程号信息: tasklist |findstr &qu ...
- 性能测试常用的linux命令
性能测试常用的linux命令 linux测试nginx64bitredhatlighttpd 查看日志 awk '$4 ~/^\[27\/Nov\/2008:15:2[0-5]/ {print ...
- linux命令汇总1
允许非root用户使用“sudo” root身份登录系统,执行“visudo”,根据示例添加新的一个规则(记住输入的密码是当前用户密码,而不是root密码)#不需要密码执行sudo命令hadoop ...
- 最实用的 Linux 命令行使用技巧
我们可能每天都会要使用到很多的 Linux 命令行. 我们也会网络上知晓一些使用它们的小技巧,但是如果我们没有时常来进行练习,就有可能会忘掉怎么去使用它们. 所以我就决定把那些你可能会忘记的小提示和小 ...
- 【Linux】linux命令大全
[注意]:命令[compgen -b]可以列出所有当前系统支持的命令. 109个Linux命令 目录 1 文件管理... 5 1.1 basename. 5 1.2 ...
- linux学习(1):linux命令大全
Linux命令 目录 1 文件管理... 5 1.1 basename. 5 1.2 cat 5 1.3 cd. 5 1.4 ...
随机推荐
- flink入门(一)——基本原理与应用场景
一.简介 1.简介 flink是一个开源的分布式流处理框架 优势:高性能处理.高度灵活window操作.有状态计算的Exactly-once等 详情简介,参考官网:https://flink.apac ...
- 数据分析入门——pandas之DataFrame多层/多级索引与聚合操作
一.行多层索引 1.隐式创建 在构造函数中给index.colunms等多个数组实现(datafarme与series都可以) df的多级索引创建方法类似: 2.显式创建pd.MultiIndex 其 ...
- Python3.7安装(解决ssl问题)
摘自:https://blog.csdn.net/love_cjiajia/article/details/82254371 python3.7安装(解决ssl的问题) 1) 安装准备 yum -y ...
- 【Linux】宝塔服务器磁盘爆满处理方法
直接上图 1 清理网站日志/php站点session/系统邮件/临时文件 cd /www/server/panel && python tools.pyc clear 2 清空面板回收 ...
- 持久化机器学习模型(joblib方式)
import numpy as np import matplotlib.pyplot as plt from sklearn.linear_model import LinearRegression ...
- Laya中地图拼接的缝隙问题
拼图的空隙. Egret也有拼图的空隙.比如制作飞机游戏,背景拼接轮换着下移,有明显的缝隙.用TextureMerger可以解决. 看了下Laya.可以设置repeat. 编辑模式,图片上右键,设置默 ...
- 自定义Shell分隔符
在shell中使用for循环语句时,参数列表有时候需要将空格纳入参数当中,这时就不好使用空格作为分隔符.如下例中,我实际想要输出的是a1.a2.b1.b2以及hello world,但却输出了如下内容 ...
- php连接mysql8报错如何解决
php版本为5.6,连接mysql8.0时报错,但是连接其他mysql8前的版本是正常的 原因可能是mysql8默认的使用密码认证方式不一样,mysql8.0默认使用caching_sha2_pass ...
- [LeetCode] 342. Power of Four 4的次方数
Given an integer (signed 32 bits), write a function to check whether it is a power of 4. Example:Giv ...
- C1128节数超过对象文件格式限制: 请使用 /bigobj 进行编译
今天debug C++项目是遇到 解决方案: 右键项目—>属性 输入 /bigobj 再次编译问题解决