zoukankan      html  css  js  c++  java
  • 小米R2D

    1.使系统可写

    mount -o remount -rw /

    2.OpenWrt使用dropbear作为服务端,~/.ssh/authorized_keys并不生效。其实,dropbear的公钥存储文件是600权限的 /etc/dropbear/authorized_keys文件

    3.golang 编译指令

    GOOS=linux GOARM=5 GOARCH=arm CGO_ENABLED=0 go build xxx.go

    4.查看当前所有监听端口

    netstat -nlp |grep LISTEN

    5.小米路由器R2D开机自启动

     vi /etc/init.d/mystart

     ==========================

    #!/bin/sh /etc/rc.common
    START=99
    start(){
    /mnt/sda1/myapp
    }
    stop(){
    /mnt/sda1/myapp -s
    }
    restart(){
    /mnt/sda1/myapp
    }

    ==========================

    chmod -R 777 init.d/mystart #设置权限,否则无法激活开机启动,提示权限不足
    /etc/init.d/mystart enable #激活开机启动
    /etc/init.d/mystart start #运行start函数启动程序

    doh-client 配置

    vi ~/work/start-dohc.sh

    sudo nohup ~/work/doh-client  -conf=~/work/doh-client.conf  > ~/work/dohc.log 2>&1 &

     加入开机启动 /etc/init.d/mystart

    指定特定端口的dns服务 查ip

    dig www.baidu.com @127.0.0.1 -p 5353

    nslookup www.facebook.com localhost:5380       //xiaomiR3G适用

    下载证书

    doh.dns.sb

    openssl
    s_client -showcerts -connect sni.cloudflaressl.com:443

  • 相关阅读:
    寒假周总结一
    1657. Determine if Two Strings Are Close
    1656. Design an Ordered Stream
    695. Max Area of Island (BFS)
    695. Max Area of Island (DFS)
    Daily Coding Problem: Problem #713
    939. Minimum Area Rectangle
    259. 3Sum Smaller
    29. Divide Two Integers
    16. 3Sum Closest
  • 原文地址:https://www.cnblogs.com/sanmubai/p/12166903.html
Copyright © 2011-2022 走看看