当前位置:首页
> 第7页
Linux配置代理上网
代理服务端: yum -y install epel-releas yum install -y tinyproxy ( sudo apt-get -y install tinyproxy ) vim /etc/tinyprox...
手动安装gnome-shell扩展
查看版本: 下载: https://extensions.gnome.org/ 必须选择对应版本: cd /usr/share/gnome-shell/extensions/...
openAnolis、openEuler、AlmaLinux(CloudLinux)、RockyLinux对比
openAnolis openEuler AlmaLinux(CloudLinux) RockyLinux 最新长期支持版本 Anolis&n...
ip route命令获取json结果
方法一(CentOS7需要自编译iproute5版本): [root@device shells]# ip --json route list type unicast table all [{"dst":"default","gate...
大小端byte与int互转
java部分来自:https://blog.csdn.net/a22422931/article/details/64929815 /** * 以大端模式将int转成byte[] */ public static byte[]...
java公钥分段加密
转自:https://www.cnblogs.com/runliuv/p/10460793.html /* * To change this license header, choose License Headers in Proj...
获取linux唯一标识
1、获取系统uuid dmidecode -s system-uuid 2、可以通过以下方式获取machine-id(最近的)Linux 系统: cat /etc/machine-id cat /var/...
254个VIP时脚本生成keepalived.conf配置文件(待改进)
部署LVS+Keepalived高可用时,因业务需求一共要配置254个VIP,每个VIP有9台真实server,每台真实server还要配置些参数。如果手动写,要累死去了。所以编写了如下生成配置脚本。...
shell实现netmask掩码和cidr掩码位转换
转自:http://www.361way.com/mask2cidr/5562.html 在写一个脚本时需要实现掩码位和掩码之间的转换,想简单的通过shell 实现,在openwrt程序上刚好有此脚本,内容如下: #!/bin/...