新頁面
- 2022年5月19日 (四) 15:27 CentOS:网络初始化 (歷史 | 編輯) [176位元組] Riguz(討論 | 貢獻) (建立內容為「CentOS7 Minimal 安装 <source lang="bash"> ip addr cd /etc/sysconfig/network-scripts vi ifcfg-enp0s3 # ONBOOT=yes service network restart </source> Categor…」的新頁面)
- 2022年4月21日 (四) 16:47 K8s:Docker Desktop (歷史 | 編輯) [397位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> kubectl config get-contexts kubectl config use-context docker-desktop kubectl config use-context kubernetes-admin@cluster.local </s…」的新頁面)
- 2022年2月25日 (五) 09:57 Win10:压缩WSL磁盘 (歷史 | 編輯) [171位元組] Riguz(討論 | 貢獻) (建立內容為「<source lang="bash"> wsl --shutdown diskpart </source>」的新頁面)
- 2022年1月6日 (四) 15:35 Win10:Terminal美化 (歷史 | 編輯) [1,152位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> # C:\Users\riguz\Documents\WindowsPowerShell\Modules\oh-my-posh # C:\Program Files\WindowsPowerShell\Modules Install-Module oh-my…」的新頁面)
- 2022年1月6日 (四) 09:58 Win10:字体设置 (歷史 | 編輯) [655位元組] Riguz(討論 | 貢獻) (建立內容為「 更纱黑体 :https://github.com/be5invis/Sarasa-Gothic/ 思源黑体: https://github.com/adobe-fonts/source-han-sans https://github.com/adobe-fonts/source-…」的新頁面)
- 2022年1月6日 (四) 09:57 Win11:恢复右键菜单 (歷史 | 編輯) [263位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> # 恢复到win10 reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve # 还原设置…」的新頁面)
- 2022年1月6日 (四) 00:31 Arch:Thinkpad T14安装 (歷史 | 編輯) [760位元組] Riguz(討論 | 貢獻) (建立內容為「 <syntaxhighlight lang="bash"> iwctl > help device wlan0 get-networks device wlan0 connect xxx </syntaxhighlight> Category:Linux/Unix」的新頁面)
- 2021年11月23日 (二) 09:54 Kafka:吞吐量测试 (歷史 | 編輯) [288位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> kafka-producer-perf-test.sh \ --topic test \ --num-records 10000000 \ --record-size 1024 \ --throughput -1 \ --p…」的新頁面)
- 2021年11月23日 (二) 09:43 Docker:Kafka安装 (歷史 | 編輯) [1,315位元組] Riguz(討論 | 貢獻) (建立內容為「注意如果从docker外部连接的话需要增加额外的配置,如下: <syntaxhighlight lang="yaml"> version: "2" services: zookeeper: image: dock…」的新頁面)
- 2021年11月10日 (三) 10:00 K8s:搭建镜像加速 (歷史 | 編輯) [2,798位元組] Riguz(討論 | 貢獻) (建立內容為「= 生成证书 = 建一个空的网站,指向registry.riguz.com,然后更新证书: <syntaxhighlight lang="bash"> sudo certbot --apache </syntaxhighlight> =…」的新頁面)
- 2021年11月8日 (一) 16:17 Arch:安装tinyproxy (歷史 | 編輯) [181位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="java"> sudo pacman -S tinyproxy systemctl start tinyproxy.service # uncomment pid line # Comment Allow 127.0.0.1 </syntaxhighlight> Ca…」的新頁面)
- 2021年11月3日 (三) 11:51 Linux:Pass Store (歷史 | 編輯) [601位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> apt install gnupg2 gpg2 --expert --full-gen-key ls ~/.gnupg/ </syntaxhighlight> * https://www.fpcomplete.com/blog/2016/05/stack-s…」的新頁面)
- 2021年11月1日 (一) 13:15 K8s:自定义域名解析 (歷史 | 編輯) [1,173位元組] Riguz(討論 | 貢獻) (建立內容為「 <syntaxhighlight lang="bash"> kubectl -n kube-system get pods -l k8s-app=kube-dns kubectl edit cm coredns -n kube-system kubectl delete pod --namespace kube-sy…」的新頁面)
- 2021年10月29日 (五) 19:04 Docker:构建镜像到私有仓库 (歷史 | 編輯) [480位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> # ref: https://docs.koderover.com/zadig/settings/custom-image/ # docker build -t maven-agent:latest -f Dockerfile.agent . # docker r…」的新頁面)
- 2021年10月29日 (五) 11:45 Linux:自签证书生成 (歷史 | 編輯) [884位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> keytool\ -keystore server.jks -storepass thisisapassword -deststoretype pkcs12 \ -genkeypair -keyalg RSA -validity 395 -keysize…」的新頁面)
- 2021年10月27日 (三) 21:04 K8s:Minikube (歷史 | 編輯) [140位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> minikube start --kubernetes-version='v1.19.15'--nodes 3 -p k8s-dev </syntaxhighlight> Category:Linux/Unix」的新頁面)
- 2021年10月25日 (一) 10:04 Arch:安装AUR包 (歷史 | 編輯) [165位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> git clone https://aur.archlinux.org/yay-git.git makepkg -si yay -S debtap sudo debtap -u </syntaxhighlight> Category:Linux/Unix」的新頁面)
- 2021年10月24日 (日) 09:43 Svg:缩放 (歷史 | 編輯) [226位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="xml"> <svg x="0px" y="0px" width="1024" height="1024" viewBox="0 0 200 200"> </syntaxhighlight> 将viewBox设置为其原始大小,再…」的新頁面)
- 2021年10月16日 (六) 23:09 Linux:sockets代理转http代理 (歷史 | 編輯) [467位元組] Riguz(討論 | 貢獻) (建立內容為「<syntaxhighlight lang="bash"> brew install polipo polipo socksParentProxy=localhost:6500 curl --proxy http://127.0.0.1:8123 https://www.google.com export https_pr…」的新頁面)
- 2021年10月12日 (二) 18:42 Linux:Vagrant搭建K3s集群 (歷史 | 編輯) [1,628位元組] Riguz(討論 | 貢獻) (建立內容為「= Prepare vms = <syntaxhighlight lang="bash"> mkdir k3s cd k3s touch Vagratfile </syntaxhighlight> The content of Vagrantfile: <syntaxhighlight lang="bash"> # -*…」的新頁面)
- 2021年10月11日 (一) 22:34 Maven:SonarQube (歷史 | 編輯) [1,339位元組] Riguz(討論 | 貢獻) (建立內容為「= 部署SonarQube = == Docker部署 == = Maven集成 = == DependencyCheck == == Checkstyle == == PMD == == JaCoCo == Category:Linux/Unix」的新頁面)