上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 66 下一页
摘要: title: linux安装最新版本的npm和node date: 2020-04-03 16:53:54 先安装旧版本npm # Deepin sudo apt install -y npm # CentOS sudo yum install npm 查看当前版本 npm -v 我的输出是 3.5 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(26) 评论(0) 推荐(0) 编辑
摘要: title: linux强制重启 date: 2021-01-15 17:24:03 一般情况下reboot -nf就够了。如果还不够,就reboot -nff。reboot的文档(man reboot): -n, --no-sync Don't sync hard disks/storage me 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(2) 评论(0) 推荐(0) 编辑
摘要: title: linux查看系统安装时间 date: 2022-02-13 11:03:53 tags: 方法一:查看root账户上次更改密码的时间 sudo passwd -S root 方法二:查看根目录所在的文件系统的创建时间: fs=$(df / | tail -1 | cut -f1 -d 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(38) 评论(0) 推荐(0) 编辑
摘要: title: netstat学习笔记 date: 2023-10-22 17:06:46 tags: 持续输出 -c, --continuous This will cause netstat to print the selected information every second contin 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(0) 评论(0) 推荐(0) 编辑
摘要: title: 在一个U盘中制作多个系统启动盘 date: 2022-01-21 22:45:03 tags: 用Ventoy可以实现,官网:https://www.ventoy.net/cn/index.html Windows和Linux都能用,官方教程:https://www.ventoy.ne 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(2) 评论(0) 推荐(0) 编辑
摘要: title: 在chroot里运行sshd date: 2023-05-17 17:57:52 tags: /usr/sbin/sshd -p 端口 但是登录进去之后会进入non-interactive模式。这是因为chroot环境默认没有/dev/*和/proc/*等文件。可以考虑用arch-ch 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(0) 评论(0) 推荐(0) 编辑
摘要: title: 更改SSH host key date: 2022-05-11 18:33:25 tags: 为了避免中间人攻击,每台SSH服务器都会生成一对公钥和私钥,在第一次连接SSH服务器时,SSH客户端会将公钥保存到~/.ssh/known_hosts里,以后每次登录这台服务器时都会验证服务器 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(14) 评论(0) 推荐(0) 编辑
摘要: title: 在服务器上使用vtune date: 2021-09-19 15:57:05 安装 在这里选择合适的下载方式:https://software.intel.com/content/www/cn/zh/develop/tools/oneapi/base-toolkit/download. 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(5) 评论(0) 推荐(0) 编辑
摘要: title: GPU编程优化笔记 date: 2020-12-31 17:08:08 GPU结构概览 参考:https://blog.csdn.net/fengtian12345/article/details/80546799 硬件上,GPU由多个SM(Steaming Multiprocesso 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(1) 评论(0) 推荐(0) 编辑
摘要: title: Intel SGX技术感性理解 date: 2021-11-29 11:53:17 tags: Intel SGX论文:https://eprint.iacr.org/2016/086.pdf 区块链课上提到了。有点意思,这里记录一下我的个人感性理解,不保证正确。 Intel SGX( 阅读全文
posted @ 2024-09-28 13:38 寻找繁星 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 66 下一页