记录一些 linux 环境下会用到的命令。

  1. 设置代理。

    1
    2
    3
    4
    5
    6
    # export http_proxy='http://windows 的 ip: 代理端口 '
    # curl -vv google.com
    # git config --global https.proxy http://windows 的 ip: 代理端口
    # git config --global https.proxy https://windows 的 ip: 代理端口
    # git config --global http.proxy 'socks5://windows 的 ip: 代理端口 '
    # git config --global https.proxy 'socks5://windows 的 ip: 代理端口 '

  2. 批量添加后缀名。

    1
    # find . -type f | awk -F "." '{print $2}' | xargs -i -t mv ./{} ./{}.apk

  3. 查看 python 版本。

    1
    2
    #  ls /usr/bin/python*

  4. 添加 python 版本。

    1
    2
    #  sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 1

  5. 查看和更换 python 版本。

    1
    2
    #  update-alternatives --config python

  6. 解决 apt install 失败的问题

    1
    2
    # sudo apt-get install aptitude
    # sudo aptitude install <package-name>

    之后从 aptitude 提供的解决方案中选择一种使用。