老男孩-yum以及Linux必备命令(补充)
2.2必备工具
#lrzsz windows和linux的桥梁 rz和sz
#rz
Windows文件软件 上传到Linux
把Windows文件 直接拖到 xshell窗口中
#sz Linux文件 下载到 windows
##大神手把手教学
[root@oldboyedu ~]# scp /etc/hosts 10.0.0.201:/tmp
root@10.0.0.201's password:
hosts 100% 158 210.5KB/s 00:00
[root@oldboyedu ~]# ll /tmp/hosts
-rw-r--r--. 1 root root 158 Jan 9 02:06 /tmp/hosts
#7. top 升级版htop
Linux:swap 交换分区:当Linux系统内存不足的时候 swap充当内存
Windows:虚拟内存
#8. nmap 网络扫描工具
#扫描百度网站
[root@oldboyedu ~]# nmap www.baidu.com
Starting Nmap 6.40 ( http://nmap.org ) at 2020-01-09 02:20 CST
Nmap scan report for www.baidu.com (182.61.200.6)
Host is up (0.0071s latency).
Other addresses for www.baidu.com (not scanned): 182.61.200.7
Not shown: 998 filtered ports
PORT STATE SERVICE
80/tcp open http
443/tcp open https
Nmap done: 1 IP address (1 host up) scanned in 17.15 seconds
#扫描10.0.0.201(自己)
[root@oldboyedu ~]# nmap 10.0.0.201
Starting Nmap 6.40 ( http://nmap.org ) at 2020-01-09 02:23 CST
Nmap scan report for 10.0.0.201
Host is up (0.0000080s latency).
Not shown: 999 closed ports
PORT STATE SERVICE
22/tcp open ssh
Nmap done: 1 IP address (1 host up) scanned in 0.07 seconds
#port 端口
端口是用来区分不同服务
远程连接的服务端口 sshd 默认的端口是22
#检查指定端口 是否开启 Linux 端口范围是 1-65535
[root@oldboyedu ~]# nmap -p22 www.baidu.com
Starting Nmap 6.40 ( http://nmap.org ) at 2020-01-09 02:27 CST
Nmap scan report for www.baidu.com (182.61.200.6)
Host is up (0.00041s latency).
Other addresses for www.baidu.com (not scanned): 182.61.200.7
PORT STATE SERVICE
22/tcp filtered ssh
Nmap done: 1 IP address (1 host up) scanned in 0.27 seconds
80/tcp open http #网站默认端口 80
443/tcp open https #https端口 加密
3.远程连接排错流程
3.1连接排错
远程连接排错三部曲 |
1.道路是否通畅 |
2.是否被拦截(防火墙、selinux(NSA)) |
3.检查服务是否开启、检查端口是否开启 |
3.2详细操作过程
#道路是否通畅
ping 服务器ip
本地shell===cmd 相当于是在Windows下面输入 执行命令
[c:\~]$ ping 10.0.0.201
正在 Ping 10.0.0.201 具有 32 字节的数据:
来自 10.0.0.201 的回复: 字节=32 时间<1ms TTL=64
来自 10.0.0.201 的回复: 字节=32 时间<1ms TTL=64
来自 10.0.0.201 的回复: 字节=32 时间<1ms TTL=64
来自 10.0.0.201 的回复: 字节=32 时间<1ms TTL=64
10.0.0.201 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
往返行程的估计时间(以毫秒为单位):
最短 = 0ms,最长 = 0ms,平均 = 0ms
[c:\~]$ ping 10.0.0.254
正在 Ping 10.0.0.254 具有 32 字节的数据:
来自 10.0.0.1 的回复: 无法访问目标主机。
请求超时。
请求超时。
请求超时。
10.0.0.254 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 1,丢失 = 3 (75% 丢失),
#2.是否被拦截
###不会拦截你
###防火墙 selinux (NSA)
#3.检查服务是否开启、检查端口是否开启
telnet 检查端口是否开启
telnet ip 端口
telnet 10.0.0.201 22
[c:\~]$ telnet 10.0.0.201 22
Connecting to 10.0.0.201:22...
Connection established. #连接已经建立
To escape to local shell, press 'Ctrl+Alt+]'.
SSH-2.0-OpenSSH_7.4
Protocol mismatch.
Connection closed by foreign host.
Disconnected from remote host(10.0.0.201:22) at 20:18:48.
Type `help' to learn how to use Xshell prompt.
3.3常见导致道路不通 原因
1.网卡的配置
nmtui #查看
#cat /etc/sysconfig/network-scripts/ifcfg-ens33# #网卡配置文件
/etc/ linux系统配置文件的目录
/etc/sysconfig system configure 系统配置
/etc/sysconfig/network-scripts network 网络 scripts 脚本(命令)
/etc/sysconfig/network-scripts/ifcfg-ens33 if interface
接口(网卡) cfg configure
ens33网卡名称
CentOS 7默认
eth0 网卡名称
CentOS 6
2.Windows>VMware编辑>虚拟网络编辑器
- 注意子网IP (10.0.0.0)
- 网关(10.0.0.254)
3.Windows VMware相关服务
- Windows+r
- 输入services.msc
- windows下面 服务管理页面
- 找到VMware开头的 ==已启动/正在运行=== ==自动==
服务名称 |
状态 |
是否开机自启动 |
VMware Authorization Service |
==已启动/正在运行== |
==自动== |
VMware NAT Service |
==已启动/正在运行== |
==自动== |
4.Windows:vmware 网卡问题
- Windows+e 打开我的电脑
- 搜索输入“网络连接”
- 查看vmnet8状态