• git-clone-ss git clone 使用 SS socks5代理
    netnr 2019-07-29 10
    # 已经有了SS
    
    git config --global http.proxy socks5://127.0.0.1:1080
    git config --global https.proxy socks5://127.0.0.1:1080
    
    # 取消
    git config --global --unset http.proxy
    git config --global --unset https.proxy
    
    # 只对github进行代理
  • firewall-cmd-iptables centos 防火墙的启动、停止
    netnr 2019-07-25 312
    systemctl status firewalld  # 查看firewall服务状态
    systemctl start firewalld   # 启动
    service firewalld restart   # 重启
    systemctl stop firewalld    # 关闭
    systemctl disable firewalld # 开机禁用
    systemctl enable firewalld  # 开机启用
    
    firewall-cmd --zone=public --permanent ... # 指定区域、永久的命令
    
    firewall-cmd --list-all # 查看防火墙规则
  • 思维导图示例
    netnr 2019-07-20 178
  • zip-tar Linux 上常用的压缩/解压工具,介绍了 zip、tar 的使用
    netnr 2019-07-18 335
    # 【zip 打包】
    # -r 表示递归打包包含子目录的全部内容,-q 表示安静模式,-o 表示输出文件
    zip -r -q -o tmp.zip  /tmp
    # 使用 du 命令查看打包后文件的大小
    du -h tmp.zip
    
    # 【unzip 解压缩】
    # 将 tmp.zip 解压到当前目录
    unzip tmp.zip
    # 使用安静模式,将文件解压到指定目录
  • 系统管理架构图 部门、用户、角色、权限、菜单、按钮
    netnr 2019-07-16 179
  • 绘图示例
    netnr 2019-07-12 177
  • barrage.js 弹幕,斗鱼弹幕临时解决方案
    netnr 2019-06-06 3
    /*
     *  barrage 弹幕
     *  
     *  2019-06
     *  netnr
     */
    
    (function (window) {
    
        var bar = function (obj) {
  • wsl Windows Subsystem Linux(WSL)安装
    netnr 2019-05-11 4
    # 教程链接
    https://docs.microsoft.com/zh-cn/windows/wsl/install-manual
    
    # 使用开发人员模式
    设置》更新和安全》开发中选项》开发人员模式
    
    # 添加 Windows 应用程序
    # 适用于 Linux 的 Windows 子系统,或 PowerShell 执行命令安装
    Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
  • aegis centos卸载阿里云盾服务
    netnr 2019-05-09 3
    # 查看开机启动的服务名
    chkconfig --list
    
    # 一般情况下阿里云盾的服务是aegis
    # 停止服务
    service aegis stop
    
    # 删除服务
    chkconfig --del aegis
  • linux-task-manager.sh 任务管理器
    netnr 2019-04-20 2
    yum install epel-release -y && yum install htop -y # 安装 htop
    
    # help
    https://www.tecmint.com/htop-linux-process-monitoring/
    
    
    npm install gtop -g # 安装 gtop
    
    # help
    https://github.com/aksakalli/gtop
  • OfficeOnlineServer Office Online Server 调用说明
    netnr 2019-04-17 536
  • ab Linux 使用 ab 压力测试工具
    netnr 2019-04-17 426
    yum install httpd-tools # 安装
    ab -V # 版本
    
    # Get 请求,10 并发 总 100 次
    ab -c 10 -n 100 https://netnr.eu.org/
    
    # Post 请求(发送当前目录下的 post.txt 文件:uid=1&pwd=1)
    ab -c 10 -n 100 -p post.txt https://netnr.eu.org/
    # Post 请求(发送当前目录下的 post.txt)
    ab -c 10 -n 100 -T 'application/json' -p post.txt https://netnr.eu.org/
  • 88 88
    念尘草 2019-04-13 180
  • rwx.md Linux修改文件属性和权限
    netnr 2019-04-09 443
    ### 文件权限描述由10个字符组成,例如,“-rwxr-xr--”、"drwxr-xr-x"
    + 第一个字符的含义为:
        - d: 目录
        - -: 文件
        - l: 连接文件
        - b: 设备文件里面的可供存储的接口设备
        - c: 设备文件里面的串行端口设置,例如键盘、鼠标
    + 接下来的9个字符,分为三组,每组三个字符,均为 `rwx` 的三个参数组合。位置不会改变,没有某权限,则出现 `-` 号
    + 三组字符中,第一组表示文件所有者的权限;第二组表示同用户组的权限;第三组表示others的权限
    + 三种身份又有三种权限,r(读)、w(写)、x(执行)
  • netsh-interface.bat windows使用netsh命令实现端口转发
    netnr 2019-03-29 322
    ::安装IPv6,XP或更低版本要安装,安装后不需要启用,win7及以上不需要
    netsh interface ipv6 install
    
    ::添加端口转发 192.168.1.2:2433 => 192.168.1.3:1433
    netsh interface portproxy add v4tov4 listenaddress=192.168.1.2 listenport=2433 connectaddress=192.168.1.3 connectport=1433
    
    ::添加端口转发 *:2433 => 192.168.1.3:1433 不设置listenaddress
    netsh interface portproxy add v4tov4 listenport=2433 connectaddress=192.168.1.3 connectport=1433
    
    ::删除端口转发 192.168.1.2:1433