font, 2D drawing on linux

Origin link 2023-4-10

 Here come several basic concept for font, drawing on linux




remote desktop on linux

Origin link 2023-4-7

clash

Origin link 2023-4-5

X11 forwarding

Origin link 2023-4-2

 I tried to ssh to linux server (Archlinux) from wsl2 and run X-windows application on wsls. Here comes summary

At beginning, I always fail since I use "ssh -X linux-server" but actually I should use "ssh -Y linux-server". -X is untrust X11 forwarding and  -Y is trust X11 forwarding. untrust X11 forwarding need X server support and I guess wsl2 doesn't support it. See detail on link1, link2 .

You could just igore following error message when you "ssh linux server"
"debug1: No xauth program.
Warning: No xauth data; using fake authentication data for X11 forwarding.
debug1: Requesting X11 forwarding with authentication spoofing.
debug1: Remote: No xauth program; cannot forward X11."

rtorrent/clash/ipfs/ipv6-dhcp

Origin link 2023-4-1

Regular expression

Origin link 2022-7-3

"$" are different in basic regular expression and extend regular expression, see https://stackoverflow.com/questions/38114132/why-does-dollar-not-match-literal-dollar-when-extended-regex-ere-option-is-use.


https://www.gnu.org/software/findutils/manual/html_node/find_html/posix_002degrep-regular-expression-syntax.html#posix_002degrep-regular-expression-syntax

Stack

Origin link 2022-5-14

Windows

Origin link 2022-3-13

Texlive

Origin link 2022-2-19

 if ($opts{"usermode"}) {
    $packagelogfile ||= "$::maintree/web2c/tlmgr.log";
  } else {
    $packagelogfile ||= "$texmfsysvar/web2c/tlmgr.log";
  }

SSH

Origin link 2022-1-29

 

configuration on server side

on the /etc/ssh/sshd_config

access server

put public key into server side ~/.ssh/authorized_keys and then use private key on your computer to access remote server.

SSH2_MSG_KEX_ECDH_REPLY

if encounter "SSH2_MSG_KEX_ECDH_REPLY" issue, try 

old page page 2 new page