码迷,mamicode.com
首页 >  
搜索关键字:centos7 ip配置 网络故障排查    ( 15159个结果
linux shell while循环
1、测试1 [root@centos7 test2]# i=0 [root@centos7 test2]# max=5 [root@centos7 test2]# while((i<max));do echo $i;((i++));done 0 1 2 3 4 ...
分类:系统相关   时间:2021-04-23 12:03:54    阅读次数:0
linux shell if语句
1、测试1 [root@centos7 test2]# ls a.txt [root@centos7 test2]# if [ -e a.txt ]; then echo "exist";else echo "no nxist"; fi exist [root@centos7 test2]# if ...
分类:系统相关   时间:2021-04-23 11:53:02    阅读次数:0
linux shell脚本中流程控制语句 if 、for、while、case
linux shell脚本中流程控制语句 if、for、while、case 1、if语句 [root@centos7 test2]# ls test.sh [root@centos7 test2]# pwd /home/test2 [root@centos7 test2]# cat test.sh ...
分类:系统相关   时间:2021-04-22 16:20:40    阅读次数:0
rhel | centos7上配置python3环境和pip
这个东西折腾了一天,在rhel7上死活pip不能用,网上找了各种方法,基本都是垃圾文章,在无数次试验后,终于这篇文章成功装上了 rhel红帽时面对企业的,centos是基于redhat重新编译后的开源免费版,网上找不到适用rhel的很多东西和操作,以后还是用centos吧,两个差不多 centos7 ...
分类:编程语言   时间:2021-04-22 16:07:34    阅读次数:0
linux 系统中read命令
1、read从键盘读入 [root@centos7 test]# echo $a [root@centos7 test]# read a 123456 [root@centos7 test]# echo $a 123456 2、-p 参数 加入提示 [root@centos7 test]# unse ...
分类:系统相关   时间:2021-04-22 15:41:37    阅读次数:0
Centos7重新分配分区
Centos7重新分配分区 新装的系统安装时没有自定义分区,导致home的空间太大,但是home使用的并不多,所以打算重新规划分区: 1、查看分区 # df -h 2、卸载/home分区 # umount /home 如果出现 home 存在进程,使用 fuser -m -v -i -k /home ...
分类:其他好文   时间:2021-04-22 15:32:12    阅读次数:0
<ZFS> ZFS on Centos7
ZFS文件系统的英文名称为ZettabyteFileSystem,也叫动态文件系统(DynamicFileSystem),是第一个128位文件系统。最初是由Sun公司为Solaris10操作系统开发的文件系统。作为OpenSolaris开源计划的一部分,ZFS于2005年11月发布,被Sun称为是终 ...
分类:其他好文   时间:2021-04-22 15:14:00    阅读次数:0
centos7 安装Oracle19C 数据库
本文为常规安装 centos7 使用 rpm方式安装 1.下载资源包 oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm 下载地址:https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/ ...
分类:数据库   时间:2021-04-22 15:13:42    阅读次数:0
CentOS7 yum安装、配置PostgreSQL 9.6
PostgreSQL 9.6安装 1、添加RPM sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 2、安 ...
分类:数据库   时间:2021-04-21 12:51:42    阅读次数:0
centos7 cannot find a valid baseurl for repo
原文地址:《centos7 cannot find a valid baseurl for repo》 出现这个问题是因为yum在安装包的过程中,虽然已经联网,但是没法解析远程包管理库对应的域名,所以我们只需要在网络配置中添加上DNS对应的ip地址即可。 操作 1.打开网络配置文件 vi /etc/ ...
分类:Web程序   时间:2021-04-21 12:09:02    阅读次数:0
15159条   上一页 1 ... 11 12 13 14 15 ... 1516 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!