EricHu's Blog

Thinking will not overcome fear but action will.

对DNS进行性能测试

DNS Performance Test

Using dnsperftest Dnsperftest is a Shell script to test the performance of the most popular DNS resolvers from your location. First install dc and dig. $ sudo apt-get install bc dnsutils Usa...

可视化管理 MongoDB Atlas

连接到MongoDB Compass 进入MongoDB Atlas控制台,点击 connect 将当前ip添加到白名单,然后点击Connect with mongoDB Compass 选择当前的MongoDB Compass版本,复制URL MongoDB Compass会自动检测剪贴板URL,补全P...

Ubuntu16.04 Setup

本文介绍了在VMware中安装Ubuntu16.04,并配置Flatabulous主题和Flat Icons图标来美化Ubuntu GUI,安装并简要配置了Zsh和oh-my-zsh 目录 在VMware中安装Ubuntu16.04 安装配置Flatabulous主题 完成主题配置 安装Zsh并替换Bash 修改Zsh主题 ...

Linux常用软件推荐

目录 系统工具 截图相关 系统监控 密码管理🔑 开发工具 日常软件 多人使用&远程连接 常用命令替换 使用fd代替find 使用ccat代替cat实现高亮 历史命令查找 使用fkill代替kill 使用tldr代替man 使用cppman 使用icdif...

利用Proxychains-ng和Privoxy实现多种代理

目录 临时使用代理 安装Shadowsocks 安装Shadowsocks-qt5 安装shadowsocks Python 安装Shadowsocks-libev 使用proxychains-ng 安装Proxychains-ng 配置Proxychains-ng ...

树莓派安装homeassistant和Homebridge

安装Python3并更换镜像源 sudo apt-get install python3-pip python3-venv 编辑 ~/.pip/pip.conf 文件,用以下内容取代: [global] index-url = https://mirrors.ustc.edu.cn/pypi/web/simple 注:应先创建 .pip 文件...

使用Telegram-cli完成自动化签到

如今越来越多的网站使用Telegram Bot签到,telegram-cli 是一个Telegram的非官方客户端,可以实现在终端中访问Telegram,本文使用telegram-cli+crontab完成了自动签到 在 CentOS 下安装 telegram-cli 快速编译安装 cd ~/ git clone --recursive https://github.com/vysh...

树莓派简明上手指南

本指南基于Raspbian Stretch(2017.11),使用Etcher烧录镜像安装系统 开启SSH、VNC 点击左上角 树莓派图标 — Preferences — Raspberry Pi Configuration 在System面板中修改登陆密码和默认频率分辨率 在Interfaces面板中开启SSH,VNC, 在Localisation面板中设置Loca...

使用wsl-terminal美化WSL

本文基于Windows10 1709更新后在Windows Store安装的Bash 下载安装wsl-terminal wsl-terminal是一个Github上的一个基于mintty和wslbridge的WSL模拟器 下载 wsl-terminal 解压后运行目录下的open-wsl.exe 运行tools目录下的1-add-open-wsl-terminal-he...

使用Clang编译C++

前置准备(更加推荐使用aptitude安装) sudo apt-get install clang sudo apt-get install libstdc++ sudo apt-get install libc++-dev 常用编译选项 1.编译C语言时,使用如下指令 clang/gcc -Wall -g xxx.c -o xxx 2.编译C++语言时,使用如下指令...