Linux
iwugd
脚踏实地 做好每一个内容
展开
-
【LINUX】ifconfig只有本地环回地址问题的解决方法
问题描述:ifconfig只有lo,没有看到ens33ifconfig -a看到了ens33,但是没有地址解决方法:(1)stop network-managersudo service network-manager stop(2)删除旧有的网络配置,重新让networkmanager自动配置文件 sudo rm -rf /var/lib/NetworkManager/NetworkManager.state(3)restart network-manager.原创 2021-07-30 13:39:33 · 2652 阅读 · 2 评论 -
【Linux】nohup 不挂断地运行命令
nohup [command]查看nohup的命令进程ps -aux | grep ... 如ps -aux | grep java TCPClient .此外,也可以通过对端口的查询获得进程号lsof -i:3333再kill -9 PID参考:nohup参考:https://www.cnblogs.com/baby123/p/6477429.html...原创 2021-01-12 14:13:26 · 146 阅读 · 0 评论 -
【Linux】iptables只允许指定网段的ip访问某端口
#先关闭所有的80端口iptables -I INPUT -p tcp --dport 80 -j DROP#开启ip段192.168.1.0/24端的80口iptables -I INPUT -s 192.168.1.0/24 -p tcp --dport 80 -j ACCEPT开启ip段211.123.16.123/24端ip段的80口# iptables -I INPUT -s 211.123.16.123/24 -p tcp --dport 80 -j ACCEPT(19...原创 2020-05-17 10:19:31 · 11873 阅读 · 2 评论 -
【安全】测试软件hping3的安装和使用
hping3hping3官网 Ubuntu下安装:sudo apt-get install hping3 Ubuntu官网对hping3的介绍 hping3命令详解:https://man.linuxde.net/hping3 hping3使用案例:https://mochazz.github.io/2017/07/23/hping3/#%E4%B8%BB%E6%9C%BA%E5%8F%91%E7%8E%B0https://blog.51cto.com/19920624/15844651.原创 2020-05-16 21:14:35 · 2974 阅读 · 0 评论 -
【Ubuntu】双系统物理机安装教程
1.制作U盘启动盘:https://blog.csdn.net/weixin_40554881/article/details/80625315https://jingyan.baidu.com/article/a3aad71a1310b1b1fb0096e6.html2.分区及安装ubuntu步骤:https://www.cnblogs.com/wkfvawl/p/11046204.h...原创 2020-05-06 15:11:16 · 695 阅读 · 1 评论 -
【xshell】XSHELL操作指南
系统:Windows,Ubuntu(或任意Linux,虚拟机或者远程都行)1.下载并安装XshellWindows下不赘述。Linux下,#Ubuntusudo apt install lrzsz#CentOSyum install -y lrzsz2.安装SSH由于xshell远程连接ubuntu是通过ssh协议的,所以,需要给ubuntu安装ssh服务器:...原创 2020-05-03 20:27:46 · 1375 阅读 · 0 评论