├── .gitignore ├── LICENSE ├── LLM ├── _index.md ├── build-ollama-openwebui.md └── mcp.md ├── README.md ├── SUMMARY.md ├── _index.md ├── baremetal ├── _index.md ├── bmc.md ├── format-disk.md └── redfish-api.md ├── book.json ├── deploy.sh ├── disk ├── _index.md ├── disk-command.md ├── disk-raid.md ├── lvm-usage.md └── make-hardware-raid.md ├── file ├── _index.md ├── linux-command.md ├── linux-file-permission.md ├── linux-file-storage.md ├── linux-file-system.md └── linux-introduction.md ├── git ├── _index.md ├── git-alias-zsh.md ├── git-commands.md ├── git-commit-msg.md ├── git-common-cmd.md └── git.md ├── ide ├── _index.md ├── goland.md ├── vim │ ├── _index.md │ ├── basic-vimrc.md │ ├── vim-keymap.md │ └── vimrc-cn.md └── vscode.md ├── keepalived ├── _index.md ├── install-keepalived.md ├── keepalived-conf.md ├── keepalived-introduction.md └── keepalived-operation.md ├── keymap ├── _index.md ├── blog.md ├── chrome-keymap.md ├── eclipse-keymap.md ├── iterm2-rzsz.md ├── tmux-keymap.md └── vscode-keymap.md ├── memcached ├── _index.md ├── memcached-cmd.md └── memcached.md ├── mysql ├── _index.md ├── curd-commands.md ├── deploy-mysql.md ├── system-manage.md └── table-operation.md ├── network ├── _index.md ├── bond.md ├── iptables-command.md ├── iptables.md ├── netplan.md ├── tcpdump.md ├── vlan.md └── wrk-usage.md ├── nginx ├── _index.md ├── config-ssl-for-nginx.md ├── install-nginx.md ├── nginx-http.md └── nginx-proxy.md ├── redis ├── _index.md ├── redis-cluster.md ├── redis-conf-cn.md ├── redis-conf-en.md ├── redis-introduction.md └── redis-sentinel.md ├── shell ├── _index.md ├── shell-array.md ├── shell-char.md ├── shell-echo.md ├── shell-function.md ├── shell-if.md ├── shell-introduction.md ├── shell-loop.md ├── shell-stdout.md └── shell-var.md ├── tcpip ├── _index.md ├── http.md ├── ip.md ├── tcp.md ├── tcpip-basics.md └── udp.md └── tools ├── _index.md ├── ansible-usage.md ├── ceph-fuse.md ├── confd-usage.md ├── nfs-usage.md ├── ssh-tips.md └── supervisor-usage.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | _book 3 | .DS_Store 4 | gh-pages -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/LICENSE -------------------------------------------------------------------------------- /LLM/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/LLM/_index.md -------------------------------------------------------------------------------- /LLM/build-ollama-openwebui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/LLM/build-ollama-openwebui.md -------------------------------------------------------------------------------- /LLM/mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/LLM/mcp.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/_index.md -------------------------------------------------------------------------------- /baremetal/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/baremetal/_index.md -------------------------------------------------------------------------------- /baremetal/bmc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/baremetal/bmc.md -------------------------------------------------------------------------------- /baremetal/format-disk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/baremetal/format-disk.md -------------------------------------------------------------------------------- /baremetal/redfish-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/baremetal/redfish-api.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/book.json -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/deploy.sh -------------------------------------------------------------------------------- /disk/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/disk/_index.md -------------------------------------------------------------------------------- /disk/disk-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/disk/disk-command.md -------------------------------------------------------------------------------- /disk/disk-raid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/disk/disk-raid.md -------------------------------------------------------------------------------- /disk/lvm-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/disk/lvm-usage.md -------------------------------------------------------------------------------- /disk/make-hardware-raid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/disk/make-hardware-raid.md -------------------------------------------------------------------------------- /file/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/file/_index.md -------------------------------------------------------------------------------- /file/linux-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/file/linux-command.md -------------------------------------------------------------------------------- /file/linux-file-permission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/file/linux-file-permission.md -------------------------------------------------------------------------------- /file/linux-file-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/file/linux-file-storage.md -------------------------------------------------------------------------------- /file/linux-file-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/file/linux-file-system.md -------------------------------------------------------------------------------- /file/linux-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/file/linux-introduction.md -------------------------------------------------------------------------------- /git/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/git/_index.md -------------------------------------------------------------------------------- /git/git-alias-zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/git/git-alias-zsh.md -------------------------------------------------------------------------------- /git/git-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/git/git-commands.md -------------------------------------------------------------------------------- /git/git-commit-msg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/git/git-commit-msg.md -------------------------------------------------------------------------------- /git/git-common-cmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/git/git-common-cmd.md -------------------------------------------------------------------------------- /git/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/git/git.md -------------------------------------------------------------------------------- /ide/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/ide/_index.md -------------------------------------------------------------------------------- /ide/goland.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/ide/goland.md -------------------------------------------------------------------------------- /ide/vim/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/ide/vim/_index.md -------------------------------------------------------------------------------- /ide/vim/basic-vimrc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/ide/vim/basic-vimrc.md -------------------------------------------------------------------------------- /ide/vim/vim-keymap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/ide/vim/vim-keymap.md -------------------------------------------------------------------------------- /ide/vim/vimrc-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/ide/vim/vimrc-cn.md -------------------------------------------------------------------------------- /ide/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/ide/vscode.md -------------------------------------------------------------------------------- /keepalived/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keepalived/_index.md -------------------------------------------------------------------------------- /keepalived/install-keepalived.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keepalived/install-keepalived.md -------------------------------------------------------------------------------- /keepalived/keepalived-conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keepalived/keepalived-conf.md -------------------------------------------------------------------------------- /keepalived/keepalived-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keepalived/keepalived-introduction.md -------------------------------------------------------------------------------- /keepalived/keepalived-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keepalived/keepalived-operation.md -------------------------------------------------------------------------------- /keymap/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keymap/_index.md -------------------------------------------------------------------------------- /keymap/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keymap/blog.md -------------------------------------------------------------------------------- /keymap/chrome-keymap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keymap/chrome-keymap.md -------------------------------------------------------------------------------- /keymap/eclipse-keymap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keymap/eclipse-keymap.md -------------------------------------------------------------------------------- /keymap/iterm2-rzsz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keymap/iterm2-rzsz.md -------------------------------------------------------------------------------- /keymap/tmux-keymap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keymap/tmux-keymap.md -------------------------------------------------------------------------------- /keymap/vscode-keymap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/keymap/vscode-keymap.md -------------------------------------------------------------------------------- /memcached/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/memcached/_index.md -------------------------------------------------------------------------------- /memcached/memcached-cmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/memcached/memcached-cmd.md -------------------------------------------------------------------------------- /memcached/memcached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/memcached/memcached.md -------------------------------------------------------------------------------- /mysql/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/mysql/_index.md -------------------------------------------------------------------------------- /mysql/curd-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/mysql/curd-commands.md -------------------------------------------------------------------------------- /mysql/deploy-mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/mysql/deploy-mysql.md -------------------------------------------------------------------------------- /mysql/system-manage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/mysql/system-manage.md -------------------------------------------------------------------------------- /mysql/table-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/mysql/table-operation.md -------------------------------------------------------------------------------- /network/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/network/_index.md -------------------------------------------------------------------------------- /network/bond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/network/bond.md -------------------------------------------------------------------------------- /network/iptables-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/network/iptables-command.md -------------------------------------------------------------------------------- /network/iptables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/network/iptables.md -------------------------------------------------------------------------------- /network/netplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/network/netplan.md -------------------------------------------------------------------------------- /network/tcpdump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/network/tcpdump.md -------------------------------------------------------------------------------- /network/vlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/network/vlan.md -------------------------------------------------------------------------------- /network/wrk-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/network/wrk-usage.md -------------------------------------------------------------------------------- /nginx/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/nginx/_index.md -------------------------------------------------------------------------------- /nginx/config-ssl-for-nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/nginx/config-ssl-for-nginx.md -------------------------------------------------------------------------------- /nginx/install-nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/nginx/install-nginx.md -------------------------------------------------------------------------------- /nginx/nginx-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/nginx/nginx-http.md -------------------------------------------------------------------------------- /nginx/nginx-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/nginx/nginx-proxy.md -------------------------------------------------------------------------------- /redis/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/redis/_index.md -------------------------------------------------------------------------------- /redis/redis-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/redis/redis-cluster.md -------------------------------------------------------------------------------- /redis/redis-conf-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/redis/redis-conf-cn.md -------------------------------------------------------------------------------- /redis/redis-conf-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/redis/redis-conf-en.md -------------------------------------------------------------------------------- /redis/redis-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/redis/redis-introduction.md -------------------------------------------------------------------------------- /redis/redis-sentinel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/redis/redis-sentinel.md -------------------------------------------------------------------------------- /shell/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/_index.md -------------------------------------------------------------------------------- /shell/shell-array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-array.md -------------------------------------------------------------------------------- /shell/shell-char.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-char.md -------------------------------------------------------------------------------- /shell/shell-echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-echo.md -------------------------------------------------------------------------------- /shell/shell-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-function.md -------------------------------------------------------------------------------- /shell/shell-if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-if.md -------------------------------------------------------------------------------- /shell/shell-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-introduction.md -------------------------------------------------------------------------------- /shell/shell-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-loop.md -------------------------------------------------------------------------------- /shell/shell-stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-stdout.md -------------------------------------------------------------------------------- /shell/shell-var.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/shell/shell-var.md -------------------------------------------------------------------------------- /tcpip/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tcpip/_index.md -------------------------------------------------------------------------------- /tcpip/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tcpip/http.md -------------------------------------------------------------------------------- /tcpip/ip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tcpip/ip.md -------------------------------------------------------------------------------- /tcpip/tcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tcpip/tcp.md -------------------------------------------------------------------------------- /tcpip/tcpip-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tcpip/tcpip-basics.md -------------------------------------------------------------------------------- /tcpip/udp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tcpip/udp.md -------------------------------------------------------------------------------- /tools/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tools/_index.md -------------------------------------------------------------------------------- /tools/ansible-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tools/ansible-usage.md -------------------------------------------------------------------------------- /tools/ceph-fuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tools/ceph-fuse.md -------------------------------------------------------------------------------- /tools/confd-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tools/confd-usage.md -------------------------------------------------------------------------------- /tools/nfs-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tools/nfs-usage.md -------------------------------------------------------------------------------- /tools/ssh-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tools/ssh-tips.md -------------------------------------------------------------------------------- /tools/supervisor-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huweihuang/linux-notes/HEAD/tools/supervisor-usage.md --------------------------------------------------------------------------------