
CentOS
Javier Zhang
程序相关学习中……
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS 7 增加root分区容量
CentOS 7默认分配给root 50G容量,其余的分配给home. 查看分区大小: df -lh 打算把home分区的容量分一部分给root,具体操作步骤如下: 备份home分区 cp -r /home/ homebak 卸载【home】目录 umount /home/ 现在可以看到home分区不存在了 删除【home】所在的LVM逻辑卷 lvrem...转载 2020-02-11 15:25:16 · 2166 阅读 · 0 评论 -
CentOS7 Yum卸载open-jdk
查看CentOS自带JDK是否已安装 1 [root@test ~]# yum list installed |grep java 若有自带安装的JDK,应如下操作进行卸载CentOS系统自带Java环境 1 2 3 4 5 6 7 8 9 10 [r...转载 2019-01-28 09:53:28 · 2656 阅读 · 0 评论 -
CentOS7 Yum安装Docker
Get Docker CE for CentOS Estimated reading time: 10 minutes To get started with Docker CE on CentOS, make sure you meet the prerequisites, then install Docker. Prerequisites Docker EE customers T...转载 2019-01-28 09:57:21 · 585 阅读 · 0 评论 -
CentOS7 RPM安装JDK8
Installation of the 64-bit JDK on RPM-based Linux Platforms This procedure installs the Java Development Kit (JDK) for 64-bit RPM-based Linux platforms, such as Red Hat and SuSE, using an RPM binar...转载 2019-01-28 10:53:02 · 367 阅读 · 0 评论 -
CentOS7 Yum安装Mysql
A Quick Guide to Using the MySQL Yum Repository Abstract The MySQL Yum repository provides RPM packages for installing the MySQL server, client, and other components on Linux platforms. The packages...转载 2019-01-28 11:17:16 · 446 阅读 · 0 评论 -
CentOS7 Yum安装Nginx
1、首先添加一下nginx的官网yum源,命令如下: vim /etc/yum.repos.d/nginx.repo 进去加入以下内容,根据你自己的系统选择: CentOS: [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1 ...转载 2019-01-28 14:01:18 · 252 阅读 · 0 评论