Changes between Initial Version and Version 1 of jazz/21-10-04


Ignore:
Timestamp:
Oct 4, 2021, 9:34:28 PM (3 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/21-10-04

    v1 v1  
     1= 2021-10-04 =
     2
     3== JMeter ==
     4
     5* 目的:製作可以裝在 EC2 (Amazon Linux) 的 JMeter RPM 套件
     6
     7== homebrew ==
     8{{{
     9~$ brew tap
     10coursier/formulas
     11homebrew/cask
     12homebrew/cask-fonts
     13homebrew/cask-versions
     14homebrew/core
     15homebrew/services
     16jlhonora/lsusb
     17}}}
     18{{{
     19~$ brew list --formula
     20bash-completion dos2unix        git             libidn2         openssl@1.1     readline        unrar
     21ca-certificates fzf             git-extras      libunistring    p7zip           sqlite          wget
     22coreutils       gdbm            gmp             ncurses         pcre2           tig
     23ddrescue        gettext         htop            nmap            pidof           tree
     24}}}
     25{{{
     26~$ brew list --cask
     27firefox                   joplin                    skype                     tableau-public            vmware-horizon-client
     28font-hack                 messenger                 slack                     visual-studio-code        zulu8
     29google-chrome             pingid                    spectacle                 vlc
     30}}}
     31{{{
     32#!graphviz
     33digraph "brew-dep" { rankdir=LR; node [shape=record];
     34"ca-certificates"->"openssl@1.1"; "gettext"->"git"; "gettext"->"libidn2"; "gettext"->"wget"; "gmp"->"coreutils"; "libidn2"->"wget"; "libunistring"->"libidn2"; "libunistring"->"wget"; "ncurses"->"htop"; "openssl@1.1"->"nmap"; "openssl@1.1"->"wget"; "pcre2"->"git"; "readline"->"sqlite"; "readline"->"tig"; "bash-completion"; "ca-certificates"; "ddrescue"; "dos2unix"; "fzf"; "gdbm"; "gettext"; "git-extras"; "gmp"; "libunistring"; "ncurses"; "p7zip"; "pcre2"; "pidof"; "readline"; "tree"; "unrar";
     35}
     36}}}