使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
automation
/
linux-utils
镜像自地址
https://git.bjphoster.com/automation/linux-utils.git
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
0
百科
动态
浏览代码
Merge branch 'master' of github.com:bryanpedini/linux-utils
master
Bryan Pedini
5 年前
父节点
e54e2423a8
2b8a0eb126
当前提交
a577cc5423
共有
2 个文件被更改
,包括
10 次插入
和
0 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+7
-0
noos-noarch/home/bryanpedini/bin/iommu-discovery
+3
-0
noos-noarch/home/bryanpedini/bin/ssh-passphrase
+ 7
- 0
noos-noarch/home/bryanpedini/bin/iommu-discovery
查看文件
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
for d in /sys/kernel/iommu_groups/*/devices/*; do
n=${d#*/iommu_groups/*}; n=${n%%/*}
printf 'IOMMU Group %s ' "$n"
lspci -nns "${d##*/}"
done;
+ 3
- 0
noos-noarch/home/bryanpedini/bin/ssh-passphrase
查看文件
@@ -0,0 +1,3 @@
#!/bin/sh
ssh-keygen -p
撰写
预览
正在加载...
取消
保存