root
-
shell-进阶1
[root@centos8 ~]# lscpu Architecture: x86_64 #架构 CPU op-mode(s): 32-bit, 64…
-
linux中创建自定义函数、加载自定义函数、调用自定义函数
1、创建自定义函数 格式: function name { command } [root@rhel7pc1 test]# ls test.sh [root@rhel7pc…
-
linux系统中系统环境变量和自定义变量
1、查看系统环境变量:env、export 2、查看自定义变量: set、declare 测试系统环境变量: [root@rhel7pc1 test]# ls [root@…
-
linux中取随机数
1、$RANDOM $RANDOM 的默认范围是 [0, 32767] [root@rhel7pc1 test]# echo $RANDOM % 100 + 1 | bc 80…
-
Centos8重启网络服务
注:本文基于CentOS 8.3编写 CentOS 7中支持network.service和NetworkManager.service 2种方式配置网络,而在CentOS 8中已…
-
Centos安装字体
windows字体目录 C:/Windows/Fonts CentOS字体目录 /usr/share/fonts 以下是字体目录下的内容 drwxr-xr-x 2 root roo…
-
Linux系统下安装Nginx
nginx安装包下载地址:http://nginx.org/en/download.html,注意下载Stable version 把nginx的源码包上传到linux系统 上传到…
-
linux的su/cd/ls命令
[lemon@localhost ~]$lemon:用户名@:不用管,没有意义localhost:服务器名称$:普通用户 ~:当前用户的家目录[lemon@localhost ro…
-
linux中如何统计文本字符的总个数
1、测试数据 [root@centos7 test3]# ls test.txt [root@centos7 test3]# cat test.txt deet dggh df…
-
Linux基本常用命令
cd :切换目录 绝对路径和相对路径 绝对路径 Linux中一切皆文件,一切的文件都在 /(根)目录下路径写法:由根目录写起 / 例如:/usr/local [root@LuoKi…