#1.登录root用户
#2.配置网络
vi /etc/sysconfig/network-scripts/if*(tab键回车补齐)
#删除UUID行,(按dd)
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.188.100
NETMASK=255.255.255.0
GATEWAY=192.168.188.2
DNS1=114.114.114.114
:wq
ip addr
systemctl restart network.service
#33.配置防火墙
#本次开机状态下防火墙关闭
systemctl stop firewalld
#服务器重启后防火墙关闭
systemctl disable firewalld
#查看状态
systemctl status firewalld
#4.解除软件安装限制
vi /etc/selinux/config
SELINUX=disabled
#5.关机
shutdown -h now
#6.修改主机名
vi /etc/hostname
#7.远程连接
Putty
Xshell
XFtp
#8.linux命令
#查看帮助
man
help
#常用命令
whereis #查询命令文件的位置
file #查看文件类型
who #查看当前在线用户
whoami #我是谁
pwd #当前路径
uname -a #内核信息
echo #打印语句
clear #清空
history #历史
#挂载
mount /dev/disk1 /usr/upload/photo
disk1 1T
#链接
#软连接
ln -s filename1 filename2 #1指向2
#硬链接
ln filename1 filename2 #1指向2
#查看文件
cat #顺序输出
tac #倒序输出
more #翻页输出(空格),后退一行(b),下一行(enter)
less #类似more
head #前
tail #后
#vi
vi +3 filename #定位到第三行
#9.文件传输
#win-linux
xshell+xftp #1
lrzsz #2
rz #上传
sz #下载
linux-linux
scp basefile [email protected]:/opt/ #上传
scp [email protected]:/opt/basefile /opt #下载
#文件夹
scp -r * *
#10.压缩解压
#解压
tar -zx(解压)v()f() lucky.tar.gz -C /opt/
#压缩
tar -zcf lucky.tar.gz apche-tomcat-7.0.61
#安装
yum install zip unzip -y
#压缩
zip -r tomcat.zip apache-tomcat-7.0.61
#解压缩
unzip tomcat.zip
#11.主机名和DNS
#临时修改
hostname name
#长久修改
vi /etc/hostname
#域名
vi /etc/hosts
#12.网络查看
ifconfig
netstat
telnet
curl
标签:opt,zip,vi,192.168,学习,etc,systemctl,Linux From: https://www.cnblogs.com/vicsee/p/14671164.html