摘要: 1. 到/home/student/.vscode-server/bin目录下查找commit_id 2. 替换commit_id并下载 https://update.code.visualstudio.com/commit:f80445acd5a3dadef24aa209168452a3d97cc 阅读全文
posted @ 2024-01-30 15:56 风影旋新月 阅读(47) 评论(0) 推荐(0) 编辑
摘要: centos根目录满了 查找大文件:find / -xdev -size +1G -exec ls -l {} \; 删掉几个vmcore-incomplete 阅读全文
posted @ 2023-11-14 15:59 风影旋新月 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 视频讲解:https://www.bilibili.com/video/BV13t411v7Fs?p=3&vd_source=df505e255a0c2e428b302beccab437c3 代码: #include <string> #include <unordered_set> #includ 阅读全文
posted @ 2023-02-28 21:30 风影旋新月 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 视频链接:https://www.bilibili.com/video/BV1cb411t7AM/?spm_id_from=333.788.top_right_bar_window_history.content.click&vd_source=df505e255a0c2e428b302beccab 阅读全文
posted @ 2023-02-28 16:41 风影旋新月 阅读(13) 评论(0) 推荐(0) 编辑
摘要: cd /usr/src wget https://golang.google.cn/dl/go1.18.linux-amd64.tar.gz tar -xvf go1.18.linux-amd64.tar.gz -C /usr/local/ vim ~/.bashrc # 设置GO语言路径 expo 阅读全文
posted @ 2022-11-15 19:30 风影旋新月 阅读(49) 评论(0) 推荐(0) 编辑
摘要: ntpdate time.nist.gov 阅读全文
posted @ 2022-11-09 15:55 风影旋新月 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 总是将这两个弄混了,特此记录如下: 大端模式(Big-endian):高位字节排放在内存的低地址端,低位字节排放在内存的高地址端,即正序排列,高尾端; 小端模式(Little-endian):低位字节排放在内存的低地址端,高位字节排放在内存的高地址端,即逆序排列,低尾端; 一般操作系统都是小端,而通 阅读全文
posted @ 2022-09-29 16:14 风影旋新月 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 远程桌面服务器端 frps -c frps.ini frpc -c frpc.ini frpc -c frpc2.ini 阅读全文
posted @ 2022-07-01 20:47 风影旋新月 阅读(8) 评论(0) 推荐(0) 编辑
摘要: yum install -y texinfo wget http://ftp.gnu.org/gnu/gdb/gdb-10.2.tar.xz tar -Jxvf gdb-10.2.tar.xz cd gdb-10.2 ./configure make make install 阅读全文
posted @ 2022-05-17 15:22 风影旋新月 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 更新,使用这个! 可调试版本需要使用gdwarf-2,不然会导致调试的结果和程序运行的结果不一致 ./configure --prefix=./install --disable-static --enable-shared --enable-gpl --enable-debug=3 --disab 阅读全文
posted @ 2022-05-13 18:41 风影旋新月 阅读(34) 评论(0) 推荐(0) 编辑