mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-04 16:30:09 +00:00
diagnostics-server: add more diagnostics
For networking: - ifconfig -a - brctl show For storage: - mount - df Signed-off-by: David Scott <dave@recoil.org>
This commit is contained in:
parent
d842e1b5dc
commit
d402a579f5
@ -10,8 +10,12 @@ cd $TEMP
|
|||||||
ps uax > "ps -aux"
|
ps uax > "ps -aux"
|
||||||
netstat -an > "netstat -an"
|
netstat -an > "netstat -an"
|
||||||
iptables -L > "iptables -L"
|
iptables -L > "iptables -L"
|
||||||
|
ifconfig -a > "ifconfig -a"
|
||||||
|
brctl show > "brctl show"
|
||||||
dmesg > dmesg
|
dmesg > dmesg
|
||||||
timeout -t 2 docker ps > "docker ps"
|
timeout -t 2 docker ps > "docker ps"
|
||||||
|
mount > "mount"
|
||||||
|
df > "df"
|
||||||
/usr/bin/diagnostics > "diagnostics"
|
/usr/bin/diagnostics > "diagnostics"
|
||||||
dig docker.com > "dig docker.com"
|
dig docker.com > "dig docker.com"
|
||||||
wget -O - http://www.docker.com/ &> "wget docker.com"
|
wget -O - http://www.docker.com/ &> "wget docker.com"
|
||||||
|
Loading…
Reference in New Issue
Block a user