常用基础知识参考汇总

知识列表

1. 网络配置

  • Ubuntu网络配置
    http://einverne.github.io/post/2019/08/ubuntu-linux-mint-network-configuration.html
    https://wiki.ubuntu.org.cn/UbuntuManual:%E7%BD%91%E7%BB%9C%E8%AE%BE%E7%BD%AE
    https://www.howtoforge.com/linux-basics-set-a-static-ip-on-ubuntu
  • Ubuntu网卡配置
    https://zhuanlan.zhihu.com/p/65480107

2. 开机自运行脚本

Ubuntu
http://jackqdyulei.github.io/2016/03/06/linux-auto-script/

Windows 10

  • 批处理.bat文件语法
    @注释输出;rem注释一行
    start启动一个单独的窗口以运行指定的程序或命令。适应于执行多个无需终止的程序,比如服务器。
    call从批处理程序调用另一个批处理程序,调用后返回调用程序执行后续脚本。
  • PowerShell.ps1文件语法
    类似于unix

3. 环境变量设置

Windows 10

  • PowerShell
    https://stackoverflow.com/questions/12587253/how-to-modify-gopath-in-powershell
  • cmd.exe
    https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/set_1

4. ProgLang&Util变量设置

Golang env设置

  • GO111MODULE设置
    go env -w GO1111MODULE=auto
  • GOPROXY设置
    go env -w GOPROXY=https://goproxy.io,direct
    https://goproxy.io/
  • git config设置
    https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup

5. 语法杂项

  • URL结构
    [scheme:]//[user[:password]@]host[:port][/path][?query][#fragment]
    eg: http://user:[email protected]:8042/over/there?name=ferret#nose

6. USB安装系统

  • Windows
    https://www.microsoft.com/zh-cn/software-download/windows10
  • Ubuntu
    https://ubuntu.com/tutorials/create-a-usb-stick-on-windows

7. Vi/Vim使用

$ vimtutor

  • Ubuntu
    How to copy to clipboard in Vim?
    How can I copy text to the system clipboard from Vim?

8. Tmux使用

https://www.ruanyifeng.com/blog/2019/10/tmux.html

你可能感兴趣的:(常用基础知识参考汇总)