摘要: git git config --global user.name "clipboard" git config --global user.email "clipboard@fastmail.com" git config --global --list ssh-keygen -t rsa -b 阅读全文
posted @ 2022-12-07 22:51 clipboard 阅读(33) 评论(0) 推荐(0) 编辑
摘要: https://www.rabbitmq.com/ https://www.rabbitmq.com/download.html https://www.rabbitmq.com/getstarted.html CentOS 7.6 静态IP 192.168.149.135 yum groupins 阅读全文
posted @ 2021-12-11 01:49 clipboard 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 静态IP配置 su root vi /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=static DEFROUTE=yes IPV4_FAILUR 阅读全文
posted @ 2021-12-01 20:20 clipboard 阅读(357) 评论(0) 推荐(0) 编辑
摘要: public class BitwiseShiftOperators { private static int lhs; private static int rhs; private static int result; private static final int count = 10; p 阅读全文
posted @ 2021-10-19 21:28 clipboard 阅读(60) 评论(0) 推荐(0) 编辑
摘要: git commit -m "hello world" Commit message 的格式 每次提交,Commit message 都包括三个部分:Message header,Message body 和 Message footer。 <type>(<scope>): <subject> // 阅读全文
posted @ 2021-07-20 18:39 clipboard 阅读(307) 评论(0) 推荐(0) 编辑
摘要: Sublime Text 3 https://www.sublimetext.com/ Preferences --> Settings File Path: C:\Users\wuyong\AppData\Roaming\Sublime Text 3\Packages\User\Preferenc 阅读全文
posted @ 2021-04-03 13:36 clipboard 阅读(295) 评论(0) 推荐(0) 编辑
摘要: Unix 下可用的 5 种I/O模型: 阻塞式 I/O 非阻塞式 I/O I/O 复用(select 和 poll) 信号驱动式 I/O(SIGIO) 异步 I/O(POSIX 的 aio_ 系列函数) 一个输入操作通常包括两个不同的阶段: 等待数据准备好; 从内核向进程复制数据。 对于一个套接字上 阅读全文
posted @ 2021-03-09 17:30 clipboard 阅读(164) 评论(0) 推荐(0) 编辑
摘要: Step 1 — Installing Apache and Updating the Firewall Adjust the Firewall to Allow Web Traffic sudo apt update sudo apt upgrade sudo apt install apache 阅读全文
posted @ 2021-03-06 09:07 clipboard 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1 Basics Figure 2: A prototypical command-line command. 1.1 Running a terminal Figure 5: Anatomy of a command line. (Your prompt may differ.) Figure 7 阅读全文
posted @ 2021-03-05 12:04 clipboard 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 控制台 → 服务器运维 → 远程连接 控制台 服务器列表 可以通过输入 sudo su root 切换至 root 账号。 sudo su root 将 /etc/ssh/sshd_config 文件中的 PasswordAuthentication no 修改为 PasswordAuthentic 阅读全文
posted @ 2021-03-01 09:51 clipboard 阅读(720) 评论(0) 推荐(0) 编辑