This website works better with JavaScript.
Home
Explore
Help
Sign In
automation
/
linux-utils
mirror of
https://git.bjphoster.com/automation/linux-utils.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Merge branch 'master' of github.com:bryanpedini/linux-utils
master
Bryan Pedini
5 years ago
parent
e54e2423a8
2b8a0eb126
commit
a577cc5423
2 changed files
with
10 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
View File
@@ -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
View File
@@ -0,0 +1,3 @@
#!/bin/sh
ssh-keygen -p
Write
Preview
Loading…
Cancel
Save