1、前情回顾 至目前为止,我们已经安装了一个最小化的 CentOS 系统,并且建立了以 CentOS7 发行版光盘为软件仓库的本地 yum源。本篇以下几个软件的安装都将在此基础上安装,这样在没有互联网的情况下,也能安装软件了。 2、安装 vim 图 2.1 查找本地yum源是否有 vim 软件 图 ...
分类:
其他好文 时间:
2020-06-28 09:54:07
阅读次数:
80
1、解释器 1.1 shell认识 Shell 是一个用 C 语言编写的程序,它是用户使用 Linux 的桥梁。Shell 既是一种命令语言,又是一种程序设计语言。 Shell 是指一种应用程序,这个应用程序提供了一个界面,用户通过这个界面访问操作系统内核的服务。 shell是解释器的总称,bash ...
分类:
系统相关 时间:
2020-06-28 00:38:00
阅读次数:
106
firewalld 服务管理 1、安装firewalld yum -y install firewalld 2、开机启动/禁用服务 systemctl enable/disable firewalld 3、启动/关闭服务 systemctl start/stop firewalld 4、查看服务状态 ...
分类:
其他好文 时间:
2020-06-28 00:18:22
阅读次数:
210
怎么在CentOS 8上安装启用Apache服务器 sudo systemctl status firewalld 安装Apache(在基于RHEL的发行版中,Apache软件包和服务称为httpd)。 yum install httpd 启用Apache服务,并使其在系统启动时启动。 system ...
分类:
Web程序 时间:
2020-06-28 00:10:33
阅读次数:
74
1、windows上新建文本内容2、在linux上查看 cat -A filename # 查看文本内容中的隐藏属性 此时文本内容的行末尾多出^M字符3、格式转换 yum -y install dos2unix dos2unix filename4、查看文件内容 此时文本内容的行末尾多出^M字符去掉 ...
1、command line:nmtui 说明:如果没装nmtui,首先输入命令:yum install nmtui -y 2、select-->Activate a connection 3、select-->your WiFi-->Activate,input password-->Back 4 ...
分类:
其他好文 时间:
2020-06-27 13:21:17
阅读次数:
96
安装MySQL linux安装mysql8 参考教程: https://www.cnblogs.com/kevingrace/p/10482469.html 基本命令 安装 : yum install mysql-community-server 启动 : service mysqld start/ ...
分类:
数据库 时间:
2020-06-27 13:13:56
阅读次数:
101
1:安装从网上下载文件的wget命令[root@master ~]# yum -y install wget 2:下载mysql的repo源[root@master ~]# wget http://repo.mysql.com/mysql-community-release-el7-5.noarch ...
分类:
数据库 时间:
2020-06-27 11:23:34
阅读次数:
64
Centos系统请使用以下命令:yum install wget -y && wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.sh Ubuntu系统请使用以下命令:wget -O auto ...
分类:
系统相关 时间:
2020-06-27 11:17:00
阅读次数:
207
源码编译安装mysql 一 准备工作 添加一块硬盘 用该硬盘创建逻辑卷1检测新此盘 df -hT2创建物理卷 pvcreate /dev/sd。。。3创建卷组 vgcreate 卷组名 /dev/sd。。。4创建逻辑卷 lvcreate -L 几G -n 逻辑卷名 卷组名5查看一下创建的逻辑卷 lv ...
分类:
数据库 时间:
2020-06-27 09:34:41
阅读次数:
93