Linux操作命令之云计算基础命令

一、图形化界面/文本模式

复制代码
ctrl+alt+F2-6      图形切换到文本
ctrl+alt  鼠标跳出虚拟机
ctrl+alt+F1    文本切换到图形
shift  +  ctrl +  "+"   扩大
ctrl +  "-"  缩小
shift  +  ctrl +  "n"  新终端
shift  +  ctrl +  "t"   新标签
alt + 1, 2 ,3  切换标签
shift  +  ctrl +  "w"  关闭标签
alt + F4 关闭终端
ctrl+c  中断命令
ctrl+l  清屏

二、修改网卡配置

复制代码
[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33
ONBOOT=yes
ESC键
shift + :    末行
:wq 
[root@localhost ~]# systemctl restart network
[root@localhost ~]# ip addr show

三、mobax连接

四、修改主机名

复制代码
[root@localhost ~]# hostnamectl set-hostname robin.com      设置主机名
[root@localhost ~]# vi /etc/hosts    解析主机名
你的ip地址  robin.com
ESC键
shift+:
:wq

五、关闭防火墙

复制代码
[root@controller ~]# systemctl stop firewalld
[root@controller ~]# systemctl disable firewalld

六、关闭selinux

复制代码
[root@controller ~]# setenforce 0
[root@controller ~]# vi /etc/selinux/config
SELINUX=disabled
ESC键
shift+:
:wq

关机:
[root@controller ~]# init 0      关机
[root@controller ~]# init 6      重启

七、同步时间

复制代码
[root@controller ~]# ntpdate ntp.aliyun.com
30 Dec 15:21:46 ntpdate[3271]: step time server 203.107.6.88 offset -28799.275663 sec

八、切换语言

复制代码
[root@controller ~]# LANG=c
[root@controller  ~]# LANG=zh_CN.utf-8
[root@controller ~]# LANG=en_US.utf-8

九、安装tree命令,配置yum源

复制代码
[root@controller ~]#  wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.huaweicloud.com/repository/conf/CentOS-7-anon.repo
[root@controller ~]# yum install -y tree

十、重置root密码

1.按e编辑启动项

2.找到vmlinuz删除到ro 输入rd.break

3.按快捷键 ctrl+x, 进入修复模式

4.以读写方式挂载sysrootmount -o remount,rw /sysroot/

5.进入 /sysroot 子系统重置密码

6.强制重置文件系统的上下文 touch /.autorelabel

7.执行两次 exit 退出,重置系统文件上下文,会有个百分比

相关推荐
欧云服务器几秒前
宝塔计划任务怎么自动删除多少个以外的文件?
linux·运维·服务器
淼淼爱喝水16 分钟前
openEuler 系统下 Ansible 一键安装教程(保姆级)
运维·ansible·openeuler
XXOOXRT19 分钟前
零基础掌握Linux常用命令
linux·运维·服务器
迷海39 分钟前
Linux g++编译与GDB调试完整流程(文末附图)
linux·gdb调试工具·g++编译器
softbangong41 分钟前
815-批量Excel文件合并工具,批量excel文件、工作表合并软件
linux·windows·excel·文件合并·excel合并·数据整理
123过去1 小时前
responder使用教程
linux·网络·测试工具·安全·哈希算法
不知名。。。。。。。。1 小时前
数据链路层
linux·网络
桌面运维家1 小时前
KVM虚拟机:快照增量备份与Linux系统快速恢复
linux·运维·服务器
charlie1145141911 小时前
嵌入式C++教程实战之Linux下的单片机编程:从零搭建 STM32 开发工具链(2) —— HAL 库获取、启动文件坑位与目录搭建
linux·开发语言·c++·stm32·单片机·学习·嵌入式
Sarapines Programmer1 小时前
【Docker】Windows 安装 Docker 简明指南
运维·docker·容器