动手部署linux(20220109)
作者:互联网
一、安装
1.内核数:任务管理器→性能→逻辑处理器(本电脑为8)
2.内存:①<2G 虚拟机分配1G ②>4G 虚拟机分配2G
3.网络类型
桥接 nat 仅主机
4.磁盘类型
选用SCSI或SATA
5.usb、声卡、打印机 移除
6.software selection:server with GUI
7.kdump:收集内核报错信息 取消勾选
二、rpm(redhat package manager红帽软件包管理器)
源代码+安装规则
三、yum 将常用的软件包打包成仓库(多个rpm的组合)
Yum (rhel6、7) / dnf(rhel8)
多用户不能同时安装 多用户同时安装
安装更多无用软件包
dnf:自动分析依赖关系,排列安装顺序
Location services(收集信息) 关闭
四、管理命令
Rhel5、6:init
Rhel7、8:
systemd服务名称
systemctl配置工具名称
Systemctl start 服务名称 启动
Systemctl stop 服务名称 关闭
Systemctl restart 服务名称 重启(PID变化)
Systemctl enable 服务名称 加入(开机启动项,下一次开机有效)
Systemctl status 服务名称 查看(服务状态)
Systemctl reload 服务名称 重加载(重新加载配置文件,PID不变)
标签:服务,软件包,动手,Systemctl,名称,linux,管理器,20220109,安装 来源: https://www.cnblogs.com/yyOops/p/15800815.html