热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

Linux系统基本管理

实验环境为Centos7.91、自建yum仓库,分别为网络源和本地源1)网络源[root@OurLab~]#vimetcyum.repos.dCentos-7.repo[base]

实验环境为Centos 7.9


1、自建yum仓库,分别为网络源和本地源

1)网络源

[root@OurLab ~]# vim /etc/yum.repos.d/Centos-7.repo
[base]
name=CentOS-$releasever - Base - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/os/$basearch/
http://mirrors.aliyuncs.com/centos/$releasever/os/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
#released updates
[updates]
name=CentOS-$releasever - Updates - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/updates/$basearch/
http://mirrors.aliyuncs.com/centos/$releasever/updates/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/extras/$basearch/
http://mirrors.aliyuncs.com/centos/$releasever/extras/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/centosplus/$basearch/
http://mirrors.aliyuncs.com/centos/$releasever/centosplus/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-7
#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/contrib/$basearch/
http://mirrors.aliyuncs.com/centos/$releasever/contrib/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/$releasever/contrib/$basearch/

​ 验证

[root@OurLab ~]# yum repolist
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
repo id repo name status
base/7/x86_64 CentOS-7 - Base - mirrors.aliyun.com 10,072
extras/7/x86_64 CentOS-7 - Extras - mirrors.aliyun.com 498
updates/7/x86_64 CentOS-7 - Updates - mirrors.aliyun.com 2,543
repolist: 17,134

2)本地源

​ 选择光盘镜像作为本地源,挂载光盘镜像

[root@OurLab ~]# mount /dev/cdrom /mnt/cdrom/
mount: /dev/sr0 is write-protected, mounting read-only

​ 编辑repo文件

[root@OurLab ~]# vim /etc/yum.repos.d/local.repo
[local]
name=local
baseurl=file:///mnt/cdrom
gpgcheck=0
enabled=1

​ 验证

[root@OurLab ~]# yum repolist
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
repo id repo name status
base/7/x86_64 CentOS-7 - Base - mirrors.aliyun.com 10,072
extras/7/x86_64 CentOS-7 - Extras - mirrors.aliyun.com 498
local local 4,021
updates/7/x86_64 CentOS-7 - Updates - mirrors.aliyun.com 2,543
repolist: 17,134

2、编译安装http2.4,实现可以正常访问

1).下载http 2.4

​ 进入https://httpd.apache.org/download.cgi,下载http2.4


2).查看是否安装http

[root@OurLab ~]# rpm -qa | grep http
httpd-tools-2.4.6-93.el7.centos.x86_64
http-parser-2.7.1-8.el7_7.2.x86_64
httpd-2.4.6-93.el7.centos.x86_64

​ 卸载http

[root@OurLab ~]# yum remove httpd httpd-tools http-parser

3).源码包安装环境依赖的包

yum install apr-devel apr-util-devel openssl-devel pcre-devel gcc -y

4).解包

[root@OurLab data]# ls
httpd-2.4.48.tar.bz2
[root@OurLab data]# tar -jxvf httpd-2.4.48.tar.bz2

5).编译安装httpd

[root@OurLab httpd-2.4.48]# ./configure --prefix=/usr/local/httpd24 --syscOnfdir=/etc/httpd/ --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --enable-modules=most --enable-mpms-shared=all --with-mpm=prefork
[root@OurLab httpd-2.4.48]# make && make install

6).配置环境变量,启动httpd服务

[root@OurLab httpd-2.4.48]# cd /usr/local/httpd24/bin/
[root@OurLab bin]# echo 'PATH=$PATH:/usr/local/httpd24/bin' > /etc/profile.d/httpd.sh
[root@OurLab bin]# . /etc/profile.d/httpd.sh
[root@OurLab bin]# apachectl start
[root@OurLab bin]# curl 127.0.0.1
It works!

3、利用sed 取出ifconfig命令中本机的IPv4地址

[root@OurLab bin]# ifconfig ens33 | sed -n '/inet /s#\(.*inet \)\(.*\)\( n.*\)##gp'
192.168.1.59

4、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符

[root@OurLab bin]# cat /etc/fstab |sed -r 's/^#\ ?(.*)//'|sed '/^$/d'
/etc/fstab
Created by anaconda on Fri May 17 05:52:23 2019
Accessible filesystems, by reference, are maintained under '/dev/disk'
See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
/dev/mapper/centos-root / xfs defaults 0 0
UUID=89dbf7a6-b689-4b3b-9a2e-2c56613dcecf /boot xfs defaults 0 0
/dev/mapper/centos-home /home xfs defaults 0 0
/dev/mapper/centos-swap swap swap defaults 0 0

5、处理/etc/fstab路径,使用sed命令取出其目录名和基名

目录名

[root@OurLab bin]# ls -d /etc/fstab | sed -nr 's@^(.*)/([^/]+)/?$@@p'
/etc

基名

[root@OurLab bin]# ls -d /etc/fstab | sed -nr 's@^(.*)/([^/]+)/?$@@p'
fstab

6、列出ubuntu软件管理工具apt的一些用法(以vim软件包为例)

1).安装软件包

gw@node2:~$ sudo apt-get install vim -y
Reading package lists... Done
Building dependency tree
......

2).卸载软件包

gw@node2:~$ sudo apt-get remove vim -y
Reading package lists... Done
Building dependency tree
Reading state information... Done
......

3).更新软件包列表

gw@node2:~$ sudo apt-get update
0% [Connecting to mirrors.aliyun.com]
......

4).升级有可用更新的系统(慎用)

gw@node2:~$ sudo apt-get update
Hit:1 http://mirrors.aliyun.com/ubuntu bionic InRelease
Get:2 http://mirrors.aliyun.com/ubuntu bionic-security InRelease [88.7 kB]
......

5).搜索

gw@node2:~$ apt search vim
Sorting... Done
Full Text Search... Done
acr/bionic,bionic 1.2-1 all
autoconf like tool
......

6).获取包信息

gw@node2:~$ apt show vim
Package: vim
Version: 2:8.0.1453-1ubuntu1.4
Priority: optional
Section: editors
......

7).了解使用依赖

gw@node2:~$ apt depends vim
vim
Depends: vim-common (= 2:8.0.1453-1ubuntu1.4)
Depends: vim-runtime (= 2:8.0.1453-1ubuntu1.4)
Depends: libacl1 (>= 2.2.51-8)
......

8).查看被那些包依赖

gw@node2:~$ apt-cache rdepends vim
vim
Reverse Depends:
byobu
vim-athena
vim-gtk
vim-gtk3
......

9).安装相关的编译环境

gw@node2:~$ sudo apt-get build-dep vim
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
......

10).下载源代码

gw@node2:~$ apt-get source vim
Reading package lists... Done
NOTICE: 'vim' packaging is maintained in the 'Git' version control system at:
https://salsa.debian.org/vim-team/vim.git
......

11).清理无用包

gw@node2:~$ sudo apt-get clean
gw@node2:~$ sudo apt-get autoclean
Reading package lists... Done
Building dependency tree
Reading state information... Done

12).检查是否有损坏的依赖

gw@node2:~$ sudo apt-get check
Reading package lists... Done
Building dependency tree
Reading state information... Done


推荐阅读
  • 本文详细介绍了 Dockerfile 的编写方法及其在网络配置中的应用,涵盖基础指令、镜像构建与发布流程,并深入探讨了 Docker 的默认网络、容器互联及自定义网络的实现。 ... [详细]
  • CentOS 7 磁盘与文件系统管理指南
    本文详细介绍了磁盘的基本结构、接口类型、分区管理以及文件系统格式化等内容,并提供了实际操作步骤,帮助读者更好地理解和掌握 CentOS 7 中的磁盘与文件系统管理。 ... [详细]
  • MySQL 数据库迁移指南:从本地到远程及磁盘间迁移
    本文详细介绍了如何在不同场景下进行 MySQL 数据库的迁移,包括从一个硬盘迁移到另一个硬盘、从一台计算机迁移到另一台计算机,以及解决迁移过程中可能遇到的问题。 ... [详细]
  • 本文详细介绍了Linux系统中init进程的作用及其启动过程,解释了运行级别的概念,并提供了调整服务启动顺序的具体步骤和实例。通过了解这些内容,用户可以更好地管理系统的启动流程和服务配置。 ... [详细]
  • 本文介绍如何在现有网络中部署基于Linux系统的透明防火墙(网桥模式),以实现灵活的时间段控制、流量限制等功能。通过详细的步骤和配置说明,确保内部网络的安全性和稳定性。 ... [详细]
  • 在Python开发过程中,随着项目数量的增加,不同项目依赖于不同版本的库,容易引发依赖冲突。为了避免这些问题,并保持开发环境的整洁,可以使用Virtualenv和Virtualenvwrapper来创建和管理多个隔离的Python虚拟环境。 ... [详细]
  • PostgreSQL 10 离线安装指南
    本文详细介绍了如何在无法联网的服务器上进行 PostgreSQL 10 的离线安装,并涵盖了从下载安装包到配置远程访问的完整步骤。 ... [详细]
  • 通过Web界面管理Linux日志的解决方案
    本指南介绍了一种利用rsyslog、MariaDB和LogAnalyzer搭建集中式日志管理平台的方法,使用户可以通过Web界面查看和分析Linux系统的日志记录。此方案不仅适用于服务器环境,还提供了详细的步骤来确保系统的稳定性和安全性。 ... [详细]
  • 在Ubuntu 8.04中安装美观的Cairo-Dock桌面增强工具
    本文介绍如何在Ubuntu 8.04系统中安装和配置Cairo-Dock,这款桌面增强工具以其精美的界面和高效的功能备受用户青睐。文章将指导您通过简单的步骤完成安装,并提供一些实用的配置建议。 ... [详细]
  • 解决U盘安装系统后无法重启的问题
    本文详细探讨了运维新手常遇到的U盘安装系统后无法正常重启的问题,提供了从问题分析到具体解决方案的完整步骤。通过理解Boot Loader的工作原理和正确配置启动项,帮助用户顺利解决问题。 ... [详细]
  • 本文介绍了Linux系统中的文件IO操作,包括文件描述符、基本文件操作函数以及目录操作。详细解释了各个函数的参数和返回值,并提供了代码示例。 ... [详细]
  • 本文详细介绍了如何规划和部署一个高可用的Etcd集群,包括主机配置、软件安装、防火墙设置及集群健康检查等内容。通过合理的硬件配置和网络规划,确保Etcd集群在生产环境中的稳定运行。 ... [详细]
  • 本文详细介绍了如何通过RPM包在Linux系统(如CentOS)上安装MySQL 5.6。涵盖了检查现有安装、下载和安装RPM包、配置MySQL以及设置远程访问和开机自启动等步骤。 ... [详细]
  • 在成功安装和测试MySQL及Apache之后,接下来的步骤是安装PHP。为了确保安全性和配置的一致性,建议在安装PHP前先停止MySQL和Apache服务,并将MySQL集成到PHP中。 ... [详细]
  • CentOS 6.5 上安装 MySQL 5.7.23 的详细步骤
    本文详细介绍如何在 CentOS 6.5 系统上成功安装 MySQL 5.7.23,包括卸载旧版本、下载安装包、配置文件修改及启动服务等关键步骤。 ... [详细]
author-avatar
幸福taishanvv_660
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有