-
Dropbox won't sync files that you don't have read permissions.
-
You'd better not merge an old Dropbox folder while installing/configuring Dropbox.
-
You'd better not store symbolic links in the Dropbox folder, because the symbolic links will be replaced by the real files/folders when synchronized to other computers.
-
It …
Comparision of Linux Emulation Solutions on Windows
-
Virtual machine based on Virtualbox, etc. is an overkill, generally speaking. It provides complete functionalities but is more CPU and memory hangry.
-
WSL 2 is the currently the best solution comes with Windows 10+. It is essentially a virtual machine but based on Hyper-V.
-
Cygwin, MobaXterm, etc. are outdated as …
Resolve the DNS Contamination Issue in Firefox
The local DNS you use in China is probably contaminated
and popular sites like Google, Facebook, etc. are not interpreted correctly.
So if you are in China and use Firefox with Proxy,
make sure to set network.proxy.socks_remote_dns
to be true (follow steps below).
-
Open an empty tab in …
Synchronization and Backup Solutions
Tips and Traps
-
Almost all sychronization tools have problems with symbolic links. Most of them just ignore symbolic links. This makes sense as following symbolic links can causes serious disk problems. If not followed then symbolic links are likely broken on other device. The simple suggestion is do not place …
Docker for Nvidia GPU
Instruction on Using Nvidia GPU (CUDA) for Computing in Docker
-
Install Nvidia
cuda-drivers
(or equivalent) on your Linux machine following instructions at CUDA Downloads. Notice that instead of installingcuda
(usingsudo apt-get install cuda
), it is suggested that you installcuda-drivers
only (usingsudo apt-get install cuda-drivers
). This is …
Init for Docker Containers
** Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement! **
Built-in Support
Docker has built-in support for init process (which is based on tini) now.
In short,
you just have to specify the option --init
when you start a container using …