Ben Chuanlong Du's Blog

It is never too late to learn.

Git Large File Storage

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Installation

Please refer to git-lfs Installation for instructions on how to install git-lfs.

Tips and Traps

  1. Track a large file.

    git lfs track "*.pickle"
    
  2. It seems to be that git-lfs automatically …

Proxychains-Ng Issues on Mac

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

ProxyChains-ng does not work on macOS due to System Integration Protection (SIP). There are basically 3 ways to fix/avoid it.

  1. The issue only happens if you execute a system binary …

Network in Docker Containers

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. DNS is a common issue in Docker containers, especially behind a corporate firewall. While the Linux way of handling DNS is to configure the file /etc/resolv.conf (or via other …

Git Errors and Solutions

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

git clone throws the error message "fatal: unable to fork"

The reason is due to missing SSH.

The solution is simply to install openssh-client.

sudo apt-get install openssh

git pull throw …

Monitoring and Alerting Tools

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Grafana seems like another great choice!!! https://grafana.com/grafana/download?platform=docker

Prometheus sounds like a good one!

ELKI sounds like a possible tool for monitoring & alerting

Argus another one …