Compare commits

..

14 Commits

Author SHA1 Message Date
Denys Kondratenko
a9e321b6a2 fix debug 2022-08-24 11:08:30 +02:00
Denys Kondratenko
e4ded8fc75 Fix getopt to work on Mac, which has olf unix version. Add new option 2022-08-24 11:06:41 +02:00
Denys Kondratenko
e4fc31c047 Add options to specify doc build target 2022-08-23 18:04:59 +02:00
Anastasia Alexandrova
0e656391fa Merge pull request #548 from sleto-it/patch-1
v3.4.0 release notes
2022-08-18 12:33:27 +02:00
Rasika Chivate
af0ada1167 Update docs/release_notes.rst 2022-08-18 15:56:48 +05:30
Rasika Chivate
9cb28ef20a Update docs/release_notes.rst 2022-08-18 15:56:35 +05:30
Rasika Chivate
3458809530 Update docs/release_notes.rst 2022-08-18 15:56:29 +05:30
Santo
ed024d7bfa v3.4.0 release notes 2022-08-17 12:15:46 +02:00
Sveta Smirnova
19aa46d1a5 PT-1052 include numa information in pt tool output (#547)
* PT-1052: fix for pt-summary

* Re-added fix from commit 71fae6d117 into proper place: library directory
Added tests for PT-1052 (pt-summary only)

* Fixed tests for pt-summary,
set locale for pt-summary tests, so they are not affected by user environment.
Finished tests for PT-1052

* Added fix for PT-1983 into the proper place: library file

* PT-1052: fix for pt-stalk which now includes numastat data
2022-08-15 15:45:24 +03:00
I
a950b223ff Typo: Intsance -> Instance (#546) 2022-08-01 09:35:44 -03:00
Sveta Smirnova
ac3843bcb7 Pt 1897 lock information in8.0 in pt stalk (#544)
* PT-1897 pt-stalk on MySQL 8 not collecting lock information

For version prior 8.0 pt-stalk continue using Information Schema INNODB_LOCKS and INNODB_LOCK_WAITS tables for collecting lock information.
For version 8.0 and higher pt-stalk uses tables data_locks and data_lock_waits in Performance Schema

* PT-1897 - Better MariaDB support

We cannot simply compare version number with 8.0 to identify if lock tables are in Performance Schema,
because MariaDB 10.x still have them in the Information Schema.
Therefore added additional flag, indicating which syntax we should use

* Tests for PT-1897
2022-07-25 10:01:14 -03:00
Carlos Salguero
896fdcede8 Release 3.4.0 (#539)
* PT-1979 Improved mdb summary information

Added the MongoDB instance command line options to the output.
Also fixed the spacing in the replicaset section.

* Added new template file

* PT-1978 Implemented duplicated indexes detection

* WIP

* PT-1978 WIP

* PT-1978 New tool pt-mongodb-check-index

* Upgraded version and dependencies

* Updated Go sources

* Removed unused file

* Added version command

* Added changelog

* Updated required params

* Added system.profile to the ingored dbs

* Updated Changelog

* Updated version in all programs

* Updated changelog

* Update Changelog

Co-authored-by: rasika-chivate <95711051+rasika-chivate@users.noreply.github.com>

* Update Changelog

Co-authored-by: rasika-chivate <95711051+rasika-chivate@users.noreply.github.com>

* Update Changelog

Co-authored-by: rasika-chivate <95711051+rasika-chivate@users.noreply.github.com>

* Update Changelog

Co-authored-by: rasika-chivate <95711051+rasika-chivate@users.noreply.github.com>

* Update Changelog

Co-authored-by: rasika-chivate <95711051+rasika-chivate@users.noreply.github.com>

* PT-7 fix 3.4.0 build

* Updated Makefile

* Updated changelog

* Updated Changelog

Co-authored-by: rasika-chivate <95711051+rasika-chivate@users.noreply.github.com>
Co-authored-by: Evgeniy Patlan <evgeniy.patlan@percona.com>
2022-07-11 10:29:37 -03:00
Sveta Smirnova
8ebc9534c6 Pt 2075 fix tests for pt stalk (#541)
* Added mysql.proxies_priv to list of exceptions from checks in Sandbox.pm

* Fixed test for slave_status for 5.7+
2022-07-11 15:55:16 +03:00
Sveta Smirnova
07ee5eb1bf PS-2033, proof of concept (#540) 2022-07-11 15:51:29 +03:00
72 changed files with 18212 additions and 169 deletions

View File

@@ -5561,7 +5561,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -4875,7 +4875,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -3939,7 +3939,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -4475,7 +4475,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -4544,7 +4544,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -3258,7 +3258,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -3444,7 +3444,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -5164,7 +5164,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -5946,7 +5946,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -6373,7 +6373,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -7726,7 +7726,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -12665,7 +12665,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -3761,7 +3761,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -4489,7 +4489,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -809,6 +809,7 @@ collect() {
local mysql_error_log=""
local tail_error_log_pid=""
local have_lock_waits_table=""
local lock_table_p_s=""
local have_oprofile=""
local mysqladmin_pid=""
local mutex=""
@@ -932,6 +933,13 @@ collect_mysql_data_one() {
| grep -i "INNODB_LOCK_WAITS" >/dev/null 2>&1
if [ $? -eq 0 ]; then
have_lock_waits_table="yes"
else
$CMD_MYSQL $EXT_ARGV -e "SHOW TABLES FROM performance_schema" \
| grep -i "data_lock_waits" >/dev/null 2>&1
if [ $? -eq 0 ]; then
have_lock_waits_table="yes"
lock_table_p_s="yes"
fi
fi
$CMD_MYSQLADMIN $EXT_ARGV ext -i$OPT_SLEEP_COLLECT -c$cnt >>"$d/$p-mysqladmin" &
@@ -979,7 +987,7 @@ collect_mysql_data_loop() {
(echo $ts; $CMD_MYSQL $EXT_ARGV -e "SHOW FULL PROCESSLIST\G") \
>> "$d/$p-processlist" &
if [ "$have_lock_waits_table" ]; then
(echo $ts; lock_waits) >>"$d/$p-lock-waits" &
(echo $ts; lock_waits "$d/lock_waits.running") >>"$d/$p-lock-waits" &
(echo $ts; transactions) >>"$d/$p-transactions" &
fi
@@ -988,7 +996,7 @@ collect_mysql_data_loop() {
fi
if [ "${mysql_version}" '>' "5.6" ]; then
(echo $ts; ps_prepared_statements) >> "$d/$p-prepared-statements" &
(echo $ts; ps_prepared_statements "$d/prepared_statements.isrunnning") >> "$d/$p-prepared-statements" &
fi
slave_status "$d/$p-slave-status" "${mysql_version}"
@@ -1028,6 +1036,10 @@ collect_system_data_loop() {
(echo $ts; df -k) >> "$d/$p-df" &
(echo $ts; netstat -antp) >> "$d/$p-netstat" &
(echo $ts; netstat -s) >> "$d/$p-netstat_s" &
(echo $ts;
for node in `ls -d /sys/devices/system/node/node*`; do
echo `basename $node`; cat "$node/numastat"
done) >> "$d/$p-numastat" &
}
collect_mysql_data_two() {
@@ -1089,42 +1101,89 @@ open_tables() {
}
lock_waits() {
local sql1="SELECT SQL_NO_CACHE
CONCAT('thread ', b.trx_mysql_thread_id, ' from ', p.host) AS who_blocks,
IF(p.command = \"Sleep\", p.time, 0) AS idle_in_trx,
MAX(TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP)) AS max_wait_time,
COUNT(*) AS num_waiters
FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.blocking_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.requesting_trx_id
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
GROUP BY who_blocks ORDER BY num_waiters DESC\G"
$CMD_MYSQL $EXT_ARGV -e "$sql1"
local flag_file=$1
if test -f "$flag_file"; then
echo "Lock collection already running, skipping this iteration"
else
touch "$flag_file"
local sql1=""
local sql2=""
if [ "${lock_table_p_s}" != "yes" ]; then
sql1="SELECT SQL_NO_CACHE
CONCAT('thread ', b.trx_mysql_thread_id, ' from ', p.host) AS who_blocks,
MAX(IF(p.command = \"Sleep\", p.time, 0)) AS idle_in_trx,
MAX(TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP)) AS max_wait_time,
COUNT(*) AS num_waiters
FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.blocking_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.requesting_trx_id
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
GROUP BY who_blocks ORDER BY num_waiters DESC\G"
local sql2="SELECT SQL_NO_CACHE
r.trx_id AS waiting_trx_id,
r.trx_mysql_thread_id AS waiting_thread,
TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP) AS wait_time,
r.trx_query AS waiting_query,
l.lock_table AS waiting_table_lock,
b.trx_id AS blocking_trx_id, b.trx_mysql_thread_id AS blocking_thread,
SUBSTRING(p.host, 1, INSTR(p.host, ':') - 1) AS blocking_host,
SUBSTRING(p.host, INSTR(p.host, ':') +1) AS blocking_port,
IF(p.command = \"Sleep\", p.time, 0) AS idle_in_trx,
b.trx_query AS blocking_query
FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.blocking_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.requesting_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_LOCKS AS l ON w.requested_lock_id = l.lock_id
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
ORDER BY wait_time DESC\G"
$CMD_MYSQL $EXT_ARGV -e "$sql2"
sql2="SELECT SQL_NO_CACHE
r.trx_id AS waiting_trx_id,
r.trx_mysql_thread_id AS waiting_thread,
TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP) AS wait_time,
r.trx_query AS waiting_query,
l.lock_table AS waiting_table_lock,
b.trx_id AS blocking_trx_id, b.trx_mysql_thread_id AS blocking_thread,
SUBSTRING(p.host, 1, INSTR(p.host, ':') - 1) AS blocking_host,
SUBSTRING(p.host, INSTR(p.host, ':') +1) AS blocking_port,
IF(p.command = \"Sleep\", p.time, 0) AS idle_in_trx,
b.trx_query AS blocking_query
FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.blocking_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.requesting_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_LOCKS AS l ON w.requested_lock_id = l.lock_id
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
ORDER BY wait_time DESC\G"
else
sql1="SELECT SQL_NO_CACHE
CONCAT('thread ', b.trx_mysql_thread_id, ' from ', p.host) AS who_blocks,
MAX(IF(p.command = \"Sleep\", p.time, 0)) AS idle_in_trx,
MAX(TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP)) AS max_wait_time,
COUNT(*) AS num_waiters
FROM performance_schema.data_lock_waits AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.BLOCKING_ENGINE_TRANSACTION_ID
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.REQUESTING_ENGINE_TRANSACTION_ID
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
GROUP BY who_blocks ORDER BY num_waiters DESC\G"
sql2="SELECT SQL_NO_CACHE
r.trx_id AS waiting_trx_id,
r.trx_mysql_thread_id AS waiting_thread,
TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP) AS wait_time,
r.trx_query AS waiting_query,
CONCAT('\`', l.OBJECT_SCHEMA, '\`.\`', l.OBJECT_NAME, '\`') AS waiting_table_lock,
b.trx_id AS blocking_trx_id, b.trx_mysql_thread_id AS blocking_thread,
SUBSTRING(p.host, 1, INSTR(p.host, ':') - 1) AS blocking_host,
SUBSTRING(p.host, INSTR(p.host, ':') +1) AS blocking_port,
IF(p.command = \"Sleep\", p.time, 0) AS idle_in_trx,
b.trx_query AS blocking_query
FROM performance_schema.data_lock_waits AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.BLOCKING_ENGINE_TRANSACTION_ID
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.REQUESTING_ENGINE_TRANSACTION_ID
INNER JOIN performance_schema.data_locks AS l ON w.REQUESTING_ENGINE_LOCK_ID = l.ENGINE_LOCK_ID
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
ORDER BY wait_time DESC\G"
fi
$CMD_MYSQL $EXT_ARGV -e "$sql1"
$CMD_MYSQL $EXT_ARGV -e "$sql2"
rm "$flag_file"
fi
}
transactions() {
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_TRX ORDER BY trx_id\G"
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_LOCKS ORDER BY lock_trx_id\G"
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS ORDER BY blocking_trx_id, requesting_trx_id\G"
if [ "${lock_table_p_s}" != "yes" ]; then
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_LOCKS ORDER BY lock_trx_id\G"
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS ORDER BY blocking_trx_id, requesting_trx_id\G"
else
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM performance_schema.data_locks ORDER BY ENGINE_TRANSACTION_ID\G"
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM performance_schema.data_lock_waits ORDER BY BLOCKING_ENGINE_TRANSACTION_ID, REQUESTING_ENGINE_TRANSACTION_ID\G"
fi
}
tokudb_status() {
@@ -1200,10 +1259,17 @@ ps_locks_transactions() {
}
ps_prepared_statements() {
$CMD_MYSQL $EXT_ARGV -e "SELECT t.processlist_id, pse.* \
FROM performance_schema.prepared_statements_instances pse \
JOIN performance_schema.threads t \
ON (pse.OWNER_THREAD_ID=t.thread_id)\G"
local flag_file=$1
if test -f "$flag_file"; then
echo "Prepared statements collection already running, skipping this iteration"
else
touch "$flag_file"
$CMD_MYSQL $EXT_ARGV -e "SELECT t.processlist_id, pse.* \
FROM performance_schema.prepared_statements_instances pse \
JOIN performance_schema.threads t \
ON (pse.OWNER_THREAD_ID=t.thread_id)\G"
rm "$flag_file"
fi
}
slave_status() {

View File

@@ -16,10 +16,10 @@ export POSIXLY_CORRECT
# ###########################################################################
# log_warn_die package
# This package is a copy without comments from the original. The original
# with comments and its test file can be found in the Bazaar repository at,
# with comments and its test file can be found in the GitHub repository at,
# lib/bash/log_warn_die.sh
# t/lib/bash/log_warn_die.sh
# See https://launchpad.net/percona-toolkit for more information.
# See https://github.com/percona/percona-toolkit for more information.
# ###########################################################################
@@ -64,10 +64,10 @@ _d () {
# ###########################################################################
# parse_options package
# This package is a copy without comments from the original. The original
# with comments and its test file can be found in the Bazaar repository at,
# with comments and its test file can be found in the GitHub repository at,
# lib/bash/parse_options.sh
# t/lib/bash/parse_options.sh
# See https://launchpad.net/percona-toolkit for more information.
# See https://github.com/percona/percona-toolkit for more information.
# ###########################################################################
@@ -289,7 +289,7 @@ _eval_po() {
*)
echo "Invalid attribute in $opt_spec: $line" >&2
exit 1
esac
esac
done < "$opt_spec"
if [ -z "$opt" ]; then
@@ -413,7 +413,6 @@ _parse_command_line() {
else
spec=$(grep "^short form:-$opt\$" "$PT_TMPDIR"/po/* | cut -d ':' -f 1)
if [ -z "$spec" ]; then
option_error "Unknown option: $real_opt"
continue
fi
fi
@@ -429,7 +428,7 @@ _parse_command_line() {
if [ "$val" ]; then
option_error "Option $real_opt does not take a value"
continue
fi
fi
if [ "$opt_is_negated" ]; then
val=""
else
@@ -472,10 +471,10 @@ size_to_bytes() {
# ###########################################################################
# tmpdir package
# This package is a copy without comments from the original. The original
# with comments and its test file can be found in the Bazaar repository at,
# with comments and its test file can be found in the GitHub repository at,
# lib/bash/tmpdir.sh
# t/lib/bash/tmpdir.sh
# See https://launchpad.net/percona-toolkit for more information.
# See https://github.com/percona/percona-toolkit for more information.
# ###########################################################################
@@ -513,10 +512,10 @@ rm_tmpdir() {
# ###########################################################################
# alt_cmds package
# This package is a copy without comments from the original. The original
# with comments and its test file can be found in the Bazaar repository at,
# with comments and its test file can be found in the GitHub repository at,
# lib/bash/alt_cmds.sh
# t/lib/bash/alt_cmds.sh
# See https://launchpad.net/percona-toolkit for more information.
# See https://github.com/percona/percona-toolkit for more information.
# ###########################################################################
@@ -560,10 +559,10 @@ _which() {
# ###########################################################################
# summary_common package
# This package is a copy without comments from the original. The original
# with comments and its test file can be found in the Bazaar repository at,
# with comments and its test file can be found in the GitHub repository at,
# lib/bash/summary_common.sh
# t/lib/bash/summary_common.sh
# See https://launchpad.net/percona-toolkit for more information.
# See https://github.com/percona/percona-toolkit for more information.
# ###########################################################################
@@ -690,10 +689,10 @@ get_var () {
# ###########################################################################
# report_formatting package
# This package is a copy without comments from the original. The original
# with comments and its test file can be found in the Bazaar repository at,
# with comments and its test file can be found in the GitHub repository at,
# lib/bash/report_formatting.sh
# t/lib/bash/report_formatting.sh
# See https://launchpad.net/percona-toolkit for more information.
# See https://github.com/percona/percona-toolkit for more information.
# ###########################################################################
@@ -782,10 +781,10 @@ group_concat () {
# ###########################################################################
# collect_system_info package
# This package is a copy without comments from the original. The original
# with comments and its test file can be found in the Bazaar repository at,
# with comments and its test file can be found in the GitHub repository at,
# lib/bash/collect_system_info.sh
# t/lib/bash/collect_system_info.sh
# See https://launchpad.net/percona-toolkit for more information.
# See https://github.com/percona/percona-toolkit for more information.
# ###########################################################################
@@ -860,6 +859,7 @@ collect_system_data () { local PTFUNCNAME=collect_system_data;
[ "$CMD_DMIDECODE" ] && $CMD_DMIDECODE > "$data_dir/dmidecode" 2>/dev/null
find_memory_stats "$platform" > "$data_dir/memory"
find_numa_stats > "$data_dir/numactl"
[ "$OPT_SUMMARIZE_MOUNTS" ] && mounted_fs_info "$platform" > "$data_dir/mounted_fs"
raid_controller "$data_dir/dmesg_file" "$data_dir/lspci_file" >> "$data_dir/summary"
@@ -888,7 +888,7 @@ collect_system_data () { local PTFUNCNAME=collect_system_data;
fi
fio_status_minus_a "$data_dir/fusion-io_card"
for file in $data_dir/*; do
[ "$file" = "vmstat" ] && continue
[ ! -s "$file" ] && rm "$file"
@@ -925,7 +925,7 @@ fio_status_minus_a () {
print "${adapter}_general $adapter_general";
print "${adapter}_modules @connected_modules";
for my $module (@connected_modules) {
my ($rest, $attached, $general, $firmware, $temperature, $media_status) = /(
^ \s* $module \s+ (Attached[^\n]+) \n
@@ -946,7 +946,7 @@ fio_status_minus_a () {
} while <>;
print "adapters @adapters\n";
exit;
EOP
@@ -976,6 +976,12 @@ linux_exclusive_collection () { local PTFUNCNAME=linux_exclusive_collection;
echo "dirtystatus $(awk '/vm.dirty_bytes/{print $3}' "$data_dir/sysctl"), $(awk '/vm.dirty_background_bytes/{print $3}' "$data_dir/sysctl")" >> "$data_dir/summary"
fi
fi
if [ -e "$data_dir/numactl" ]; then
echo "numa-available $(awk '/available/{print $2}' "$data_dir/numactl")" >> "$data_dir/summary"
echo "numa-policy $(awk '/policy/{print $2}' "$data_dir/numactl")" >> "$data_dir/summary"
echo "numa-preferred-node $(awk '/preferred node/{print $3}' "$data_dir/numactl")" >> "$data_dir/summary"
fi
schedulers_and_queue_size "$data_dir/summary" > "$data_dir/partitioning"
@@ -1174,13 +1180,20 @@ find_memory_stats () { local PTFUNCNAME=find_memory_stats;
local platform="$1"
if [ "${platform}" = "Linux" ]; then
free -bw
free -b
cat /proc/meminfo
elif [ "${platform}" = "SunOS" ]; then
$CMD_PRTCONF | awk -F: '/Memory/{print $2}'
fi
}
find_numa_stats () { local PTFUNCNAME=find_numa_stats;
if command -v numactl >/dev/null; then
numactl --hardware
numactl --show
fi
}
mounted_fs_info () { local PTFUNCNAME=mounted_fs_info;
local platform="$1"
@@ -1278,7 +1291,7 @@ top_processes () { local PTFUNCNAME=top_processes;
notable_processes_info () { local PTFUNCNAME=notable_processes_info;
local format="%5s %+2d %s\n"
local sshd_pid=$(ps -eo pid,args | awk '$0 ~ /\/usr\/sbin\/sshd/ { print $1; exit }')
local sshd_pid=$(ps -eo pid,args | awk '$2 ~ /\/usr\/sbin\/sshd/ { print $1; exit }')
echo " PID OOM COMMAND"
@@ -1304,7 +1317,7 @@ processor_info () { local PTFUNCNAME=processor_info;
cat /proc/cpuinfo > "$data_dir/proc_cpuinfo_copy" 2>/dev/null
elif [ "${platform}" = "SunOS" ]; then
$CMD_PSRINFO -v > "$data_dir/psrinfo_minus_v"
fi
fi
}
propietary_raid_controller () { local PTFUNCNAME=propietary_raid_controller;
@@ -1327,7 +1340,7 @@ propietary_raid_controller () { local PTFUNCNAME=propietary_raid_controller;
echo "internal::raid_opt 2" >> "$variable_file"
fi
elif [ "${controller}" = "LSI Logic MegaRAID SAS" ]; then
if [ -z "$CMD_MEGACLI64" ]; then
if [ -z "$CMD_MEGACLI64" ]; then
notfound="your package repository or the manufacturer's website"
else
echo "internal::raid_opt 3" >> "$variable_file"
@@ -1351,16 +1364,16 @@ propietary_raid_controller () { local PTFUNCNAME=propietary_raid_controller;
# ###########################################################################
# report_system_info package
# This package is a copy without comments from the original. The original
# with comments and its test file can be found in the Bazaar repository at,
# with comments and its test file can be found in the GitHub repository at,
# lib/bash/report_system_info.sh
# t/lib/bash/report_system_info.sh
# See https://launchpad.net/percona-toolkit for more information.
# See https://github.com/percona/percona-toolkit for more information.
# ###########################################################################
set -u
parse_proc_cpuinfo () { local PTFUNCNAME=parse_proc_cpuinfo;
local file="$1"
local virtual="$(grep -c ^processor "${file}")";
@@ -1521,6 +1534,27 @@ parse_dmidecode_mem_devices () { local PTFUNCNAME=parse_dmidecode_mem_devices;
| awk -F'|' '{printf(" %-9s %-8s %-17s %-13s %-13s %-8s\n", $4, $2, $7, $3, $5, $6);}'
}
parse_numactl () { local PTFUNCNAME=parse_numactl;
local file="$1"
[ -e "$file" ] || return
echo " Node Size Free CPUs"
echo " ==== ==== ==== ===="
sed -n -e 's/node /node/g' \
-e '/node[[:digit:]]/p' \
"${file}" \
| sort -r \
| awk '$1 == cnode {
if (NF > 4) { for(i=3;i<=NF;i++){printf("%s ", $i)} printf "\n" }
else { printf("%-12s", $3" "$4); }
}
$1 != cnode { cnode = $1; printf(" %-8s", $1); printf("%-12s", $3" "$4); }'
echo
}
parse_ip_s_link () { local PTFUNCNAME=parse_ip_s_link;
local file="$1"
@@ -2045,6 +2079,9 @@ section_Memory () {
local platform="$1"
local data_dir="$2"
local name_val_len_orig=$NAME_VAL_LEN;
local NAME_VAL_LEN=14
section "Memory"
if [ "${platform}" = "Linux" ]; then
parse_free_minus_b "$data_dir/memory"
@@ -2070,6 +2107,16 @@ section_Memory () {
fi
fi
if [ -s "$data_dir/numactl" ]; then
name_val "Numa Nodes" "$(get_var "numa-available" "$data_dir/summary")"
name_val "Numa Policy" "$(get_var "numa-policy" "$data_dir/summary")"
name_val "Preferred Node" "$(get_var "numa-preferred-node" "$data_dir/summary")"
parse_numactl "$data_dir/numactl"
fi
local NAME_VAL_LEN=$name_val_len_orig;
if [ -s "$data_dir/dmidecode" ]; then
parse_dmidecode_mem_devices "$data_dir/dmidecode"
fi
@@ -2091,7 +2138,7 @@ report_fio_minus_a () {
local file="$1"
name_val "fio Driver" "$(get_var driver_version "$file")"
local adapters="$( get_var "adapters" "$file" )"
for adapter in $( echo $adapters | awk '{for (i=1; i<=NF; i++) print $i;}' ); do
local adapter_for_output="$(echo "$adapter" | sed 's/::[0-9]*$//' | tr ':' ' ')"
@@ -2161,7 +2208,7 @@ report_system_summary () { local PTFUNCNAME=report_system_summary;
section "Fusion-io Card"
report_fio_minus_a "$data_dir/fusion-io_card"
fi
if [ -s "$data_dir/mounted_fs" ]; then
section "Mounted Filesystems"
parse_filesystems "$data_dir/mounted_fs" "${platform}"
@@ -2253,23 +2300,17 @@ report_system_summary () { local PTFUNCNAME=report_system_summary;
section "Memory management"
report_transparent_huge_pages
section "The End"
}
report_transparent_huge_pages () {
STATUS_THP_SYSTEM=""
if [ -f /sys/kernel/mm/transparent_hugepage/enabled ]; then
CONTENT_TRANSHP=$(cat /sys/kernel/mm/transparent_hugepage/enabled)
STATUS_THP_SYSTEM=$(echo $CONTENT_TRANSHP | grep -cv '\[never\]')
elif [ -f /sys/kernel/mm/redhat_transparent_hugepage/enabled ]; then
CONTENT_TRANSHP=$(</sys/kernel/mm/redhat_transparent_hugepage/enabled)
CONTENT_TRANSHP=$(</sys/kernel/mm/transparent_hugepage/enabled)
STATUS_THP_SYSTEM=$(echo $CONTENT_TRANSHP | grep -cv '\[never\]')
fi
if [ -z $STATUS_THP_SYSTEM ]; then
echo "Unable to get Transparent huge pages status."
elif [ $STATUS_THP_SYSTEM = 0 ]; then
if [ $STATUS_THP_SYSTEM = 0 ]; then
echo "Transparent huge pages are currently disabled on the system."
else
echo "Transparent huge pages are enabled."
@@ -2277,7 +2318,6 @@ report_transparent_huge_pages () {
}
# ###########################################################################
# End report_system_info package
# ###########################################################################

View File

@@ -939,7 +939,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -9403,7 +9403,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -4250,7 +4250,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -4668,7 +4668,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -1,6 +1,44 @@
Percona Toolkit
***************
v3.4.0 released 2022-07-11
==========================
New Features
------------
* :jirabug:`PT-1978`: Add reporting on unused/redundant indexes for MongoDB by pt-mongodb-summary
Improvements
------------
* :jirabug:`PT-1417`: Inconsistent creation of toolkit tables
* :jirabug:`PT-1800`: The environment variable PTDEBUG=1 exposes the passwords
* :jirabug:`PT-1940`: ptsoc dropswap method that was rejected for Mysql 8 has been fixed with Mysql 8.0.14
* :jirabug:`PT-1979`: Add gathering of admin parameters for MongoDB by pt-mongodb-summary
* :jirabug:`PT-2037`: Add option --skip-mysql or --system-only for pt-stalk
Bugs Fixed
----------
* :jirabug:`PT-1218`: pt-stalk ominous open_tables function
* :jirabug:`PT-1336`: pt-stalk removes user's files from the destination directory
* :jirabug:`PT-1398`: pt-stalk gets the incorrect mysqld pid when the host installed a multi MySQL instance
* :jirabug:`PT-1627`: pt-mysql-summary doesn't verify which version of jemalloc is in use
* :jirabug:`PT-1747`: pt-online-schema-change: metadata lock can break database for rebuild_constraints
* :jirabug:`PT-1887`: pt-diskstat is not working for new kernels
* :jirabug:`PT-1900`: At times, pt-query-digest does not hide the parameters properly when parameter=binary
* :jirabug:`PT-1953`: pt-summary typo: Memory management.
* :jirabug:`PT-1959`: go part of the toolkit still has the version 3.3.0
* :jirabug:`PT-1965`: pt-stalk --mysql-only doesn't collect mysqladmin output
* :jirabug:`PT-1966`: Test no_drop_no_swap for the pt-online-schema-change is broken
* :jirabug:`PT-1974`: Support fingerprinting for --print in pt-kill
* :jirabug:`PT-1983`: pt-summary missing one DIMM
* :jirabug:`PT-2016`: pt-table-checksum fails to build replace query when table lacks primary key
* :jirabug:`PT-2023`: pt-upgrade Error: Wide character in print
v3.3.1 released 2021-04-28
==========================

View File

@@ -371,6 +371,7 @@ sub verify_test_data {
grep { !/server_cost$/ }
grep { !/tables_priv$/ }
grep { !/user$/ }
grep { !/proxies_priv$/ }
@{$master->selectcol_arrayref('SHOW TABLES FROM mysql')};
my @tables_in_sakila = qw(actor address category city country customer
film film_actor film_category film_text inventory

View File

@@ -234,7 +234,7 @@ sub get_instances_to_check {
my @instances_to_check;
foreach my $instance ( @$instances ) {
my $last_check_time = $last_check_time_for{ $instance->{id} };
PTDEBUG && _d('Intsance', $instance->{id}, 'last checked',
PTDEBUG && _d('Instance', $instance->{id}, 'last checked',
$last_check_time, 'now', $now, 'diff', $now - ($last_check_time || 0),
'hours until next check',
sprintf '%.2f',

View File

@@ -57,6 +57,7 @@ collect() {
local mysql_error_log=""
local tail_error_log_pid=""
local have_lock_waits_table=""
local lock_table_p_s=""
local have_oprofile=""
local mysqladmin_pid=""
local mutex=""
@@ -212,6 +213,15 @@ collect_mysql_data_one() {
| grep -i "INNODB_LOCK_WAITS" >/dev/null 2>&1
if [ $? -eq 0 ]; then
have_lock_waits_table="yes"
else
# We cannot simply check version here, because MariaDB uses
# Information Schema in its 10.x series
$CMD_MYSQL $EXT_ARGV -e "SHOW TABLES FROM performance_schema" \
| grep -i "data_lock_waits" >/dev/null 2>&1
if [ $? -eq 0 ]; then
have_lock_waits_table="yes"
lock_table_p_s="yes"
fi
fi
# Collect multiple snapshots of the status variables. We use
@@ -266,7 +276,7 @@ collect_mysql_data_loop() {
(echo $ts; $CMD_MYSQL $EXT_ARGV -e "SHOW FULL PROCESSLIST\G") \
>> "$d/$p-processlist" &
if [ "$have_lock_waits_table" ]; then
(echo $ts; lock_waits) >>"$d/$p-lock-waits" &
(echo $ts; lock_waits "$d/lock_waits.running") >>"$d/$p-lock-waits" &
(echo $ts; transactions) >>"$d/$p-transactions" &
fi
@@ -275,7 +285,7 @@ collect_mysql_data_loop() {
fi
if [ "${mysql_version}" '>' "5.6" ]; then
(echo $ts; ps_prepared_statements) >> "$d/$p-prepared-statements" &
(echo $ts; ps_prepared_statements "$d/prepared_statements.isrunnning") >> "$d/$p-prepared-statements" &
fi
slave_status "$d/$p-slave-status" "${mysql_version}"
@@ -322,6 +332,10 @@ collect_system_data_loop() {
(echo $ts; df -k) >> "$d/$p-df" &
(echo $ts; netstat -antp) >> "$d/$p-netstat" &
(echo $ts; netstat -s) >> "$d/$p-netstat_s" &
(echo $ts;
for node in `ls -d /sys/devices/system/node/node*`; do
echo `basename $node`; cat "$node/numastat"
done) >> "$d/$p-numastat" &
}
collect_mysql_data_two() {
@@ -387,42 +401,89 @@ open_tables() {
}
lock_waits() {
local sql1="SELECT SQL_NO_CACHE
CONCAT('thread ', b.trx_mysql_thread_id, ' from ', p.host) AS who_blocks,
IF(p.command = \"Sleep\", p.time, 0) AS idle_in_trx,
MAX(TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP)) AS max_wait_time,
COUNT(*) AS num_waiters
FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.blocking_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.requesting_trx_id
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
GROUP BY who_blocks ORDER BY num_waiters DESC\G"
$CMD_MYSQL $EXT_ARGV -e "$sql1"
local flag_file=$1
if test -f "$flag_file"; then
echo "Lock collection already running, skipping this iteration"
else
touch "$flag_file"
local sql1=""
local sql2=""
if [ "${lock_table_p_s}" != "yes" ]; then
sql1="SELECT SQL_NO_CACHE
CONCAT('thread ', b.trx_mysql_thread_id, ' from ', p.host) AS who_blocks,
MAX(IF(p.command = \"Sleep\", p.time, 0)) AS idle_in_trx,
MAX(TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP)) AS max_wait_time,
COUNT(*) AS num_waiters
FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.blocking_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.requesting_trx_id
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
GROUP BY who_blocks ORDER BY num_waiters DESC\G"
local sql2="SELECT SQL_NO_CACHE
r.trx_id AS waiting_trx_id,
r.trx_mysql_thread_id AS waiting_thread,
TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP) AS wait_time,
r.trx_query AS waiting_query,
l.lock_table AS waiting_table_lock,
b.trx_id AS blocking_trx_id, b.trx_mysql_thread_id AS blocking_thread,
SUBSTRING(p.host, 1, INSTR(p.host, ':') - 1) AS blocking_host,
SUBSTRING(p.host, INSTR(p.host, ':') +1) AS blocking_port,
IF(p.command = \"Sleep\", p.time, 0) AS idle_in_trx,
b.trx_query AS blocking_query
FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.blocking_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.requesting_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_LOCKS AS l ON w.requested_lock_id = l.lock_id
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
ORDER BY wait_time DESC\G"
$CMD_MYSQL $EXT_ARGV -e "$sql2"
sql2="SELECT SQL_NO_CACHE
r.trx_id AS waiting_trx_id,
r.trx_mysql_thread_id AS waiting_thread,
TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP) AS wait_time,
r.trx_query AS waiting_query,
l.lock_table AS waiting_table_lock,
b.trx_id AS blocking_trx_id, b.trx_mysql_thread_id AS blocking_thread,
SUBSTRING(p.host, 1, INSTR(p.host, ':') - 1) AS blocking_host,
SUBSTRING(p.host, INSTR(p.host, ':') +1) AS blocking_port,
IF(p.command = \"Sleep\", p.time, 0) AS idle_in_trx,
b.trx_query AS blocking_query
FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.blocking_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.requesting_trx_id
INNER JOIN INFORMATION_SCHEMA.INNODB_LOCKS AS l ON w.requested_lock_id = l.lock_id
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
ORDER BY wait_time DESC\G"
else
sql1="SELECT SQL_NO_CACHE
CONCAT('thread ', b.trx_mysql_thread_id, ' from ', p.host) AS who_blocks,
MAX(IF(p.command = \"Sleep\", p.time, 0)) AS idle_in_trx,
MAX(TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP)) AS max_wait_time,
COUNT(*) AS num_waiters
FROM performance_schema.data_lock_waits AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.BLOCKING_ENGINE_TRANSACTION_ID
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.REQUESTING_ENGINE_TRANSACTION_ID
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
GROUP BY who_blocks ORDER BY num_waiters DESC\G"
sql2="SELECT SQL_NO_CACHE
r.trx_id AS waiting_trx_id,
r.trx_mysql_thread_id AS waiting_thread,
TIMESTAMPDIFF(SECOND, r.trx_wait_started, CURRENT_TIMESTAMP) AS wait_time,
r.trx_query AS waiting_query,
CONCAT('\`', l.OBJECT_SCHEMA, '\`.\`', l.OBJECT_NAME, '\`') AS waiting_table_lock,
b.trx_id AS blocking_trx_id, b.trx_mysql_thread_id AS blocking_thread,
SUBSTRING(p.host, 1, INSTR(p.host, ':') - 1) AS blocking_host,
SUBSTRING(p.host, INSTR(p.host, ':') +1) AS blocking_port,
IF(p.command = \"Sleep\", p.time, 0) AS idle_in_trx,
b.trx_query AS blocking_query
FROM performance_schema.data_lock_waits AS w
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS b ON b.trx_id = w.BLOCKING_ENGINE_TRANSACTION_ID
INNER JOIN INFORMATION_SCHEMA.INNODB_TRX AS r ON r.trx_id = w.REQUESTING_ENGINE_TRANSACTION_ID
INNER JOIN performance_schema.data_locks AS l ON w.REQUESTING_ENGINE_LOCK_ID = l.ENGINE_LOCK_ID
LEFT JOIN INFORMATION_SCHEMA.PROCESSLIST AS p ON p.id = b.trx_mysql_thread_id
ORDER BY wait_time DESC\G"
fi
$CMD_MYSQL $EXT_ARGV -e "$sql1"
$CMD_MYSQL $EXT_ARGV -e "$sql2"
rm "$flag_file"
fi
}
transactions() {
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_TRX ORDER BY trx_id\G"
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_LOCKS ORDER BY lock_trx_id\G"
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS ORDER BY blocking_trx_id, requesting_trx_id\G"
if [ "${lock_table_p_s}" != "yes" ]; then
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_LOCKS ORDER BY lock_trx_id\G"
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_LOCK_WAITS ORDER BY blocking_trx_id, requesting_trx_id\G"
else
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM performance_schema.data_locks ORDER BY ENGINE_TRANSACTION_ID\G"
$CMD_MYSQL $EXT_ARGV -e "SELECT SQL_NO_CACHE * FROM performance_schema.data_lock_waits ORDER BY BLOCKING_ENGINE_TRANSACTION_ID, REQUESTING_ENGINE_TRANSACTION_ID\G"
fi
}
tokudb_status() {
@@ -498,10 +559,21 @@ ps_locks_transactions() {
}
ps_prepared_statements() {
$CMD_MYSQL $EXT_ARGV -e "SELECT t.processlist_id, pse.* \
FROM performance_schema.prepared_statements_instances pse \
JOIN performance_schema.threads t \
ON (pse.OWNER_THREAD_ID=t.thread_id)\G"
# PS-2033:
# If no flag file exists, create it, then collect data
# After data collected, remove the file
# If flag file exists, skip current iteration
local flag_file=$1
if test -f "$flag_file"; then
echo "Prepared statements collection already running, skipping this iteration"
else
touch "$flag_file"
$CMD_MYSQL $EXT_ARGV -e "SELECT t.processlist_id, pse.* \
FROM performance_schema.prepared_statements_instances pse \
JOIN performance_schema.threads t \
ON (pse.OWNER_THREAD_ID=t.thread_id)\G"
rm "$flag_file"
fi
}
slave_status() {

View File

@@ -101,6 +101,7 @@ collect_system_data () { local PTFUNCNAME=collect_system_data;
[ "$CMD_DMIDECODE" ] && $CMD_DMIDECODE > "$data_dir/dmidecode" 2>/dev/null
find_memory_stats "$platform" > "$data_dir/memory"
find_numa_stats > "$data_dir/numactl"
[ "$OPT_SUMMARIZE_MOUNTS" ] && mounted_fs_info "$platform" > "$data_dir/mounted_fs"
raid_controller "$data_dir/dmesg_file" "$data_dir/lspci_file" >> "$data_dir/summary"
@@ -225,6 +226,12 @@ linux_exclusive_collection () { local PTFUNCNAME=linux_exclusive_collection;
echo "dirtystatus $(awk '/vm.dirty_bytes/{print $3}' "$data_dir/sysctl"), $(awk '/vm.dirty_background_bytes/{print $3}' "$data_dir/sysctl")" >> "$data_dir/summary"
fi
fi
if [ -e "$data_dir/numactl" ]; then
echo "numa-available $(awk '/available/{print $2}' "$data_dir/numactl")" >> "$data_dir/summary"
echo "numa-policy $(awk '/policy/{print $2}' "$data_dir/numactl")" >> "$data_dir/summary"
echo "numa-preferred-node $(awk '/preferred node/{print $3}' "$data_dir/numactl")" >> "$data_dir/summary"
fi
schedulers_and_queue_size "$data_dir/summary" > "$data_dir/partitioning"
@@ -449,6 +456,13 @@ find_memory_stats () { local PTFUNCNAME=find_memory_stats;
fi
}
find_numa_stats () { local PTFUNCNAME=find_numa_stats;
if command -v numactl >/dev/null; then
numactl --hardware
numactl --show
fi
}
mounted_fs_info () { local PTFUNCNAME=mounted_fs_info;
local platform="$1"

View File

@@ -141,6 +141,7 @@ parse_free_minus_b () { local PTFUNCNAME=parse_free_minus_b;
name_val "Total" $(shorten $(awk '/Mem:/{print $2}' "${file}") 1)
name_val "Free" $(shorten $(awk '/Mem:/{print $4}' "${file}") 1)
name_val "Used" "physical = $(shorten ${physical} 1), swap allocated = $(shorten ${swap_alloc} 1), swap used = $(shorten ${swap_used} 1), virtual = ${virtual}"
name_val "Shared" $(shorten $(awk '/Mem:/{print $5}' "${file}") 1)
name_val "Buffers" $(shorten $(awk '/Mem:/{print $6}' "${file}") 1)
name_val "Caches" $(shorten $(awk '/Mem:/{print $7}' "${file}") 1)
name_val "Dirty" "$(awk '/Dirty:/ {print $2, $3}' "${file}")"
@@ -230,12 +231,38 @@ parse_dmidecode_mem_devices () { local PTFUNCNAME=parse_dmidecode_mem_devices;
-e 's/>/}/g' \
-e 's/[ \t]*\n/\n/g' \
"${file}" \
| awk -F: '/Size|Type|Form.Factor|Type.Detail|^[\t ]+Locator/{printf("|%s", $2)}/^[\t ]+Speed/{print "|" $2}' \
| awk -F: '/Size|Type|Form.Factor|Type.Detail|^[\t ]+Locator|^[\t ]+Speed/{printf("|%s", $2)}/^$/{print}' \
| sed '/^$/d' \
| sed -e 's/No Module Installed/{EMPTY}/' \
| sort \
| awk -F'|' '{printf(" %-9s %-8s %-17s %-13s %-13s %-8s\n", $4, $2, $7, $3, $5, $6);}'
}
# ##############################################################################
# Parse the output of 'numactl'.
# ##############################################################################
parse_numactl () { local PTFUNCNAME=parse_numactl;
local file="$1"
[ -e "$file" ] || return
# Print info about NUMA nodes
echo " Node Size Free CPUs"
echo " ==== ==== ==== ===="
sed -n -e 's/node /node/g' \
-e '/node[[:digit:]]/p' \
"${file}" \
| sort -r \
| awk '$1 == cnode {
if (NF > 4) { for(i=3;i<=NF;i++){printf("%s ", $i)} printf "\n" }
else { printf("%-12s", $3" "$4); }
}
$1 != cnode { cnode = $1; printf(" %-8s", $1); printf("%-12s", $3" "$4); }'
echo
}
# ##############################################################################
# Parse the output of 'ip -s link'
# ##############################################################################
@@ -842,6 +869,9 @@ section_Memory () {
local platform="$1"
local data_dir="$2"
local name_val_len_orig=$NAME_VAL_LEN;
local NAME_VAL_LEN=14
section "Memory"
if [ "${platform}" = "Linux" ]; then
parse_free_minus_b "$data_dir/memory"
@@ -867,6 +897,16 @@ section_Memory () {
fi
fi
if [ -s "$data_dir/numactl" ]; then
name_val "Numa Nodes" "$(get_var "numa-available" "$data_dir/summary")"
name_val "Numa Policy" "$(get_var "numa-policy" "$data_dir/summary")"
name_val "Preferred Node" "$(get_var "numa-preferred-node" "$data_dir/summary")"
parse_numactl "$data_dir/numactl"
fi
local NAME_VAL_LEN=$name_val_len_orig;
if [ -s "$data_dir/dmidecode" ]; then
parse_dmidecode_mem_devices "$data_dir/dmidecode"
fi
@@ -1071,12 +1111,29 @@ report_system_summary () { local PTFUNCNAME=report_system_summary;
"$data_dir/vmstat" \
"$platform"
section "Memory management"
report_transparent_huge_pages
# ########################################################################
# All done. Signal the end so it's explicit.
# ########################################################################
section "The End"
}
report_transparent_huge_pages () {
if [ -f /sys/kernel/mm/transparent_hugepage/enabled ]; then
CONTENT_TRANSHP=$(</sys/kernel/mm/transparent_hugepage/enabled)
STATUS_THP_SYSTEM=$(echo $CONTENT_TRANSHP | grep -cv '\[never\]')
fi
if [ $STATUS_THP_SYSTEM = 0 ]; then
echo "Transparent huge pages are currently disabled on the system."
else
echo "Transparent huge pages are enabled."
fi
}
# ###########################################################################
# End report_system_info package
# ###########################################################################

View File

@@ -755,7 +755,7 @@ SKIP: {
like(
$output,
qr/Slave has read all relay log; waiting for more updates/,
qr/SERVICE_STATE: ON/,
"MySQL 5.7 SLAVE STATUS"
) or diag ($output);
$sb->stop_sandbox(qw(chan_master1 chan_master2 chan_slave1));
@@ -826,6 +826,98 @@ SKIP: {
);
}
# #############################################################################
# Test if locks and transactions are printed
# #############################################################################
cleanup();
# We are not using SKIP here, because lock tables exist since version 5.1
# Currently, all active MySQL versions support them
sub start_thread_pt_1897_1 {
# this must run in a thread because we need to have an active session
# with open transaction
my ($dsn_opts) = @_;
my $dp = new DSNParser(opts=>$dsn_opts);
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $dbh = $sb->get_dbh_for('master');
$sb->load_file('master', "t/pt-stalk/samples/PT-1897-1.sql");
}
my $thr1 = threads->create('start_thread_pt_1897_1', $dsn_opts);
$thr1->detach();
threads->yield();
sleep 1;
sub start_thread_pt_1897_2 {
# this must run in a thread because we need to have an active session
# with waiting transaction
my ($dsn_opts) = @_;
my $dp = new DSNParser(opts=>$dsn_opts);
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
my $dbh = $sb->get_dbh_for('master');
$sb->load_file('master', "t/pt-stalk/samples/PT-1897-2.sql");
}
my $thr2 = threads->create('start_thread_pt_1897_2', $dsn_opts);
$thr2->detach();
threads->yield();
my $cmd = "$trunk/bin/pt-stalk --no-stalk --iterations=1 --host=127.0.0.1 --port=12345 --user=msandbox "
. "--password=msandbox --sleep 0 --run-time=10 --dest $dest --log $log_file --pid $pid_file "
. "--defaults-file=$cnf >$log_file 2>&1";
system($cmd);
sleep 15;
PerconaTest::kill_program(pid_file => $pid_file);
$output = `cat $dest/*-lock-waits 2>/dev/null`;
like(
$output,
qr/waiting_query: UPDATE test.t1 SET f1=3/,
"lock-wait: LOCK_WAITS collected correctly"
);
$output = `cat $dest/*[[:digit:]]-transactions 2>/dev/null`;
like(
$output,
qr/trx_query: UPDATE test.t1 SET f1=3/,
"transactions: InnoDB transaction info collected"
);
like(
$output,
qr/lock_type/i,
"transactions: Lock information collected"
);
like(
$output,
qr/requesting_(trx|ENGINE_TRANSACTION)_id/i,
"transactions: Lock wait information collected"
);
# ###########################################################################
# Test if option numastat collection works
# ###########################################################################
cleanup();
$retval = system("$trunk/bin/pt-stalk --no-stalk --system-only --run-time 10 --sleep 2 --dest $dest --pid $pid_file --iterations 1 -- --defaults-file=$cnf >$log_file 2>&1");
PerconaTest::wait_until(sub { !-f $pid_file });
$output = `ls $dest`;
like(
$output,
qr/numastat/,
"numastat data collected"
);
$output = `cat $dest/*-numastat`;
like(
$output,
qr/(numa_)/,
"numastat collection has data"
);
# #############################################################################
# Done.

View File

@@ -14,12 +14,12 @@ use PerconaTest;
my ($tool) = $PROGRAM_NAME =~ m/([\w-]+)\.t$/;
use Test::More tests => 3;
use Test::More tests => 5;
for my $i (2..3,5) {
for my $i (2..3,5..7) {
ok(
no_diff(
sub { print `$trunk/bin/pt-summary --read-samples "$trunk/t/pt-summary/samples/Linux/00$i/" | tail -n+3` },
sub { print `LC_NUMERIC=POSIX $trunk/bin/pt-summary --read-samples "$trunk/t/pt-summary/samples/Linux/00$i/" | tail -n+3` },
"t/pt-summary/samples/Linux/output_00$i.txt"),
"--read-samples samples/Linux/00$i works",
);

View File

@@ -0,0 +1,2 @@
join: -:4: is not sorted: cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
join: /tmp/pt-summary.2397616.XMBMxL/mounted_fs_info.tmp:11: is not sorted: /dev/loop1 9,0M 9,0M 0 100% /snap/canonical-livepatch/146

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,36 @@
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
RX: bytes packets errors dropped overrun mcast
7535270 73015 0 0 0 0
TX: bytes packets errors dropped carrier collsns
7535270 73015 0 0 0 0
2: wlp0s20f3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DORMANT group default qlen 1000
link/ether 98:af:65:26:69:57 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
1657084859 1627351 0 3636 0 0
TX: bytes packets errors dropped carrier collsns
428035923 961445 0 0 0 0
3: br-5bbb6abaea1c: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default
link/ether 02:42:1f:31:64:19 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
4: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default
link/ether 02:42:b7:f9:b8:f1 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
9263705 72006 0 0 0 0
TX: bytes packets errors dropped carrier collsns
38436691 83442 0 0 0 0
6: veth311b798@if5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default
link/ether 6e:52:2e:46:58:3f brd ff:ff:ff:ff:ff:ff link-netnsid 0
RX: bytes packets errors dropped overrun mcast
9194725 58288 0 0 0 0
TX: bytes packets errors dropped carrier collsns
8681936 66908 0 0 0 0
8: veth505c1de@if7: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default
link/ether 46:fd:9c:ed:47:ab brd ff:ff:ff:ff:ff:ff link-netnsid 1
RX: bytes packets errors dropped overrun mcast
1077064 13718 0 0 0 0
TX: bytes packets errors dropped carrier collsns
30420523 20005 0 0 0 0

View File

@@ -0,0 +1,25 @@
00:00.0 Host bridge: Intel Corporation Device 8a12 (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Iris Plus Graphics G7 (rev 07)
00:04.0 Signal processing controller: Intel Corporation Device 8a03 (rev 03)
00:05.0 Multimedia controller: Intel Corporation Device 8a19 (rev 03)
00:07.0 PCI bridge: Intel Corporation Ice Lake Thunderbolt 3 PCI Express Root Port #0 (rev 03)
00:07.2 PCI bridge: Intel Corporation Ice Lake Thunderbolt 3 PCI Express Root Port #2 (rev 03)
00:0d.0 USB controller: Intel Corporation Ice Lake Thunderbolt 3 USB Controller (rev 03)
00:0d.2 System peripheral: Intel Corporation Ice Lake Thunderbolt 3 NHI #0 (rev 03)
00:0d.3 System peripheral: Intel Corporation Ice Lake Thunderbolt 3 NHI #1 (rev 03)
00:12.0 Serial controller: Intel Corporation Device 34fc (rev 30)
00:14.0 USB controller: Intel Corporation Ice Lake-LP USB 3.1 xHCI Host Controller (rev 30)
00:14.2 RAM memory: Intel Corporation Device 34ef (rev 30)
00:14.3 Network controller: Intel Corporation Killer Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW) (rev 30)
00:15.0 Serial bus controller [0c80]: Intel Corporation Ice Lake-LP Serial IO I2C Controller #0 (rev 30)
00:15.1 Serial bus controller [0c80]: Intel Corporation Ice Lake-LP Serial IO I2C Controller #1 (rev 30)
00:15.3 Serial bus controller [0c80]: Intel Corporation Ice Lake-LP Serial IO I2C Controller #3 (rev 30)
00:16.0 Communication controller: Intel Corporation Management Engine Interface (rev 30)
00:1d.0 PCI bridge: Intel Corporation Ice Lake-LP PCI Express Root Port #9 (rev 30)
00:1d.7 PCI bridge: Intel Corporation Device 34b7 (rev 30)
00:1f.0 ISA bridge: Intel Corporation Ice Lake-LP LPC Controller (rev 30)
00:1f.3 Audio device: Intel Corporation Smart Sound Technology Audio Controller (rev 30)
00:1f.4 SMBus: Intel Corporation Ice Lake-LP SMBus Controller (rev 30)
00:1f.5 Serial bus controller [0c80]: Intel Corporation Ice Lake-LP SPI Controller (rev 30)
57:00.0 Non-Volatile memory controller: KIOXIA Corporation Device 0001
58:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01)

View File

@@ -0,0 +1,3 @@
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
root vgubuntu -wi-ao---- <930,37g
swap_1 vgubuntu -wi-ao---- 976,00m

View File

@@ -0,0 +1,54 @@
total used free shared buff/cache available
Mem: 33426010112 13475635200 2393817088 5954158592 17556557824 13557874688
Swap: 1023406080 128450560 894955520
MemTotal: 32642588 kB
MemFree: 2337712 kB
MemAvailable: 13240112 kB
Buffers: 2027332 kB
Cached: 14349788 kB
SwapCached: 12984 kB
Active: 9644920 kB
Inactive: 18029536 kB
Active(anon): 2285512 kB
Inactive(anon): 14784956 kB
Active(file): 7359408 kB
Inactive(file): 3244580 kB
Unevictable: 901668 kB
Mlocked: 144 kB
SwapTotal: 999420 kB
SwapFree: 873980 kB
Dirty: 3992 kB
Writeback: 0 kB
AnonPages: 12185872 kB
Mapped: 2033720 kB
Shmem: 5814608 kB
KReclaimable: 767956 kB
Slab: 1063368 kB
SReclaimable: 767956 kB
SUnreclaim: 295412 kB
KernelStack: 47372 kB
PageTables: 188572 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
WritebackTmp: 0 kB
CommitLimit: 17320712 kB
Committed_AS: 43974304 kB
VmallocTotal: 34359738367 kB
VmallocUsed: 83948 kB
VmallocChunk: 0 kB
Percpu: 10688 kB
HardwareCorrupted: 0 kB
AnonHugePages: 12288 kB
ShmemHugePages: 0 kB
ShmemPmdMapped: 0 kB
FileHugePages: 0 kB
FilePmdMapped: 0 kB
HugePages_Total: 0
HugePages_Free: 0
HugePages_Rsvd: 0
HugePages_Surp: 0
Hugepagesize: 2048 kB
Hugetlb: 0 kB
DirectMap4k: 1220240 kB
DirectMap2M: 22661120 kB
DirectMap1G: 10485760 kB

View File

@@ -0,0 +1,39 @@
/dev/mapper/vgubuntu-root 915G 646G 223G 75% / on / type ext4 (rw,relatime,errors=remount-ro)
/dev/mmcblk0p1 239G 214G 26G 90% /media/sveta/disk1 on /media/sveta/disk1 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)
/dev/nvme0n1p1 511M 19M 493M 4% /boot/efi on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
/dev/nvme0n1p2 704M 269M 384M 42% /boot on /boot type ext4 (rw,relatime)
overlay 915G 646G 223G 75% /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged on /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/FQIQG2VFFXJ426FBUGGBSCWRG2:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/diff,workdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/work)
overlay 915G 646G 223G 75% /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged on /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/RFAP7AE62T2GF223V7KCEJDN64:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/diff,workdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/work)
overlay 915G 646G 223G 75% /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged on /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/FQIQG2VFFXJ426FBUGGBSCWRG2:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/diff,workdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/work)
overlay 915G 646G 223G 75% /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged on /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/RFAP7AE62T2GF223V7KCEJDN64:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/diff,workdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/work)
tmpfs 16G 0 16G 0% /sys/fs/cgroup on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
tmpfs 16G 0 16G 0% /sys/fs/cgroup on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
tmpfs 16G 0 16G 0% /sys/fs/cgroup on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 16G 0 16G 0% /sys/fs/cgroup on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 16G 0 16G 0% /sys/fs/cgroup on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64)
tmpfs 16G 0 16G 0% /sys/fs/cgroup on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64)
tmpfs 16G 205M 16G 2% /dev/shm on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
tmpfs 16G 205M 16G 2% /dev/shm on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
tmpfs 16G 205M 16G 2% /dev/shm on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 16G 205M 16G 2% /dev/shm on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 16G 205M 16G 2% /dev/shm on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64)
tmpfs 16G 205M 16G 2% /dev/shm on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64)
tmpfs 3,2G 2,8M 3,2G 1% /run on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
tmpfs 3,2G 2,8M 3,2G 1% /run on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
tmpfs 3,2G 2,8M 3,2G 1% /run on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 3,2G 2,8M 3,2G 1% /run on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 3,2G 2,8M 3,2G 1% /run on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64)
tmpfs 3,2G 2,8M 3,2G 1% /run on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64)
tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64)
tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64)
tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64)
tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64)
tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64)
udev 16G 0 16G 0% /dev on /dev type devtmpfs (rw,nosuid,noexec,relatime,size=16256608k,nr_inodes=4064152,mode=755,inode64)

View File

@@ -0,0 +1,87 @@
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:2049 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 4451/docker-proxy
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1/init
tcp 0 0 0.0.0.0:17500 0.0.0.0:* LISTEN 6630/dropbox
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 1577/systemd-resolv
tcp 0 0 0.0.0.0:5100 0.0.0.0:* LISTEN 1889/haproxy
tcp 0 0 127.0.0.1:42857 0.0.0.0:* LISTEN 1825/pmm-agent
tcp 0 0 0.0.0.0:37607 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:38653 0.0.0.0:* LISTEN 1872/rpc.mountd
tcp 0 0 127.0.0.1:7777 0.0.0.0:* LISTEN 1825/pmm-agent
tcp 0 0 0.0.0.0:60983 0.0.0.0:* LISTEN 1872/rpc.mountd
tcp 0 0 127.0.0.1:39817 0.0.0.0:* LISTEN 1836/containerd
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN 2003/postgres
tcp 0 0 127.0.0.1:17603 0.0.0.0:* LISTEN 6630/dropbox
tcp 0 0 127.0.0.1:17600 0.0.0.0:* LISTEN 6630/dropbox
tcp 0 0 0.0.0.0:45741 0.0.0.0:* LISTEN 1872/rpc.mountd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 4777/master
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 1632/cupsd
tcp 0 0 192.168.1.25:42348 52.73.62.51:443 ESTABLISHED 2425/s1-network
tcp 0 0 172.17.0.1:48718 172.17.0.2:443 TIME_WAIT -
tcp 0 0 172.17.0.1:48720 172.17.0.2:443 TIME_WAIT -
tcp 0 0 192.168.1.25:36336 157.240.9.53:443 ESTABLISHED 13327/wavebox --typ
tcp 0 0 192.168.1.25:50798 185.166.143.25:443 ESTABLISHED 13327/wavebox --typ
tcp 0 0 192.168.1.25:38128 162.220.4.198:22 ESTABLISHED 2378176/ssh
tcp 0 0 192.168.1.25:41906 108.177.127.108:993 ESTABLISHED 474260/thunderbird
tcp 0 0 192.168.1.25:48500 18.197.249.189:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 192.168.1.25:48494 18.197.249.189:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 192.168.1.25:55614 198.57.27.221:993 ESTABLISHED 474260/thunderbird
tcp 0 0 192.168.1.25:34404 52.59.193.28:443 ESTABLISHED 13327/wavebox --typ
tcp 1 0 192.168.11.22:57302 108.157.4.6:443 CLOSE_WAIT 12357/python3
tcp 0 0 192.168.1.25:59664 82.202.226.23:443 ESTABLISHED 11292/firefox
tcp 0 0 192.168.1.25:34400 173.194.79.109:993 ESTABLISHED 474260/thunderbird
tcp 0 0 192.168.1.25:42474 84.38.188.87:443 ESTABLISHED 11292/firefox
tcp 0 0 192.168.1.25:51650 35.174.188.51:443 ESTABLISHED 11292/firefox
tcp 39 0 192.168.11.22:37302 35.168.140.53:443 CLOSE_WAIT 12357/python3
tcp 0 0 192.168.1.25:60640 162.125.19.131:443 ESTABLISHED 6630/dropbox
tcp 0 0 192.168.1.25:48504 18.197.249.189:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 192.168.1.25:38238 142.132.213.154:443 ESTABLISHED 13327/wavebox --typ
tcp 0 0 192.168.1.25:45476 149.96.232.184:443 ESTABLISHED 11292/firefox
tcp 0 0 172.17.0.1:48724 172.17.0.2:443 TIME_WAIT -
tcp 0 0 127.0.0.1:56862 127.0.0.1:42857 ESTABLISHED 1825/pmm-agent
tcp 1 0 192.168.11.22:40140 34.117.237.239:443 CLOSE_WAIT 12357/python3
tcp 0 0 192.168.1.25:44984 54.146.182.72:443 ESTABLISHED 11292/firefox
tcp 0 0 192.168.1.25:40314 108.177.119.109:993 ESTABLISHED 474260/thunderbird
tcp 0 0 192.168.1.25:45412 149.96.232.184:443 ESTABLISHED 11292/firefox
tcp 1 0 192.168.11.22:37304 35.168.140.53:443 CLOSE_WAIT 12357/python3
tcp 0 0 192.168.1.25:48502 18.197.249.189:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 192.168.1.25:35324 23.61.80.242:443 ESTABLISHED 13327/wavebox --typ
tcp 1 0 192.168.11.22:50386 35.186.227.140:443 CLOSE_WAIT 12357/python3
tcp 0 0 192.168.1.25:47450 172.67.8.157:443 TIME_WAIT -
tcp 0 0 192.168.1.25:58620 149.154.167.51:443 ESTABLISHED 181231/Telegram
tcp 1 0 192.168.11.22:49692 93.184.220.29:80 CLOSE_WAIT 12357/python3
tcp 0 0 192.168.1.25:42408 35.174.127.31:443 ESTABLISHED 13327/wavebox --typ
tcp 0 0 192.168.1.25:48498 18.197.249.189:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 172.17.0.1:48722 172.17.0.2:443 TIME_WAIT -
tcp 39 0 192.168.11.22:37306 35.168.140.53:443 CLOSE_WAIT 12357/python3
tcp 1 0 192.168.11.22:49690 93.184.220.29:80 CLOSE_WAIT 12357/python3
tcp 39 0 192.168.11.22:37300 35.168.140.53:443 CLOSE_WAIT 12357/python3
tcp 0 0 192.168.1.25:39040 3.233.54.64:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 192.168.1.25:59964 108.177.126.188:5228 ESTABLISHED 13327/wavebox --typ
tcp 0 0 192.168.1.25:58452 3.126.186.102:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 192.168.1.25:50262 173.194.69.108:993 ESTABLISHED 474260/thunderbird
tcp 0 0 127.0.0.1:42857 127.0.0.1:56862 ESTABLISHED 1825/pmm-agent
tcp 0 0 192.168.1.25:34402 173.194.79.109:993 ESTABLISHED 474260/thunderbird
tcp 0 0 192.168.1.25:54208 162.125.19.9:443 ESTABLISHED 6630/dropbox
tcp 0 0 192.168.1.25:42406 35.174.127.31:443 ESTABLISHED 11292/firefox
tcp 0 0 192.168.1.25:44784 3.67.131.16:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 192.168.1.25:48508 18.197.249.189:443 ESTABLISHED 7119/Slack --standa
tcp 0 0 192.168.1.25:50712 108.139.241.22:443 ESTABLISHED 11292/firefox
tcp 0 0 192.168.1.25:60766 54.244.16.100:443 ESTABLISHED 11292/firefox
tcp 0 0 192.168.1.25:48506 18.197.249.189:443 ESTABLISHED 7119/Slack --standa
tcp6 0 0 ::1:631 :::* LISTEN 1632/cupsd
tcp6 0 0 :::2049 :::* LISTEN -
tcp6 0 0 :::3000 :::* LISTEN 2882/grafana-server
tcp6 0 0 ::1:25 :::* LISTEN 4777/master
tcp6 0 0 :::3306 :::* LISTEN 1996/mysqld
tcp6 0 0 :::33060 :::* LISTEN 1996/mysqld
tcp6 0 0 :::443 :::* LISTEN 4459/docker-proxy
tcp6 0 0 :::111 :::* LISTEN 1/init
tcp6 0 0 :::17500 :::* LISTEN 6630/dropbox
tcp6 0 0 :::1716 :::* LISTEN 6285/kdeconnectd
tcp6 0 0 :::37817 :::* LISTEN -
tcp6 0 0 :::54381 :::* LISTEN 1872/rpc.mountd
tcp6 0 0 :::41909 :::* LISTEN 1872/rpc.mountd
tcp6 0 0 :::47587 :::* LISTEN 1872/rpc.mountd

View File

@@ -0,0 +1,36 @@
Settings for br-5bbb6abaea1c:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: Unknown!
Duplex: Unknown! (255)
Port: Other
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
Link detected: no
Settings for docker0:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10000Mb/s
Duplex: Unknown! (255)
Port: Other
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
Link detected: yes
Settings for wlp0s20f3:
Link detected: yes

View File

@@ -0,0 +1,2 @@
PID OOM COMMAND
? ? sshd doesn't appear to be running

View File

@@ -0,0 +1,13 @@
available: 1 nodes (0)
node 0 cpus: 0 1 2 3 4 5 6 7
node 0 size: 31877 MB
node 0 free: 2282 MB
node distances:
node 0
0: 10
policy: default
preferred node: current
physcpubind: 0 1 2 3 4 5 6 7
cpubind: 0
nodebind: 0
membind: 0

View File

@@ -0,0 +1,33 @@
Disk /dev/dm-0: 952,65 GiB, 1022886936576 bytes, 1997826048 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-1: 930,38 GiB, 998974160896 bytes, 1951121408 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-2: 976 MiB, 1023410176 bytes, 1998848 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mmcblk0: 238,51 GiB, 256087425024 bytes, 500170752 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x00000000
Device Boot Start End Sectors Size Id Type
/dev/mmcblk0p1 65536 500170751 500105216 238,5G 7 HPFS/NTFS/exFAT
Disk /dev/nvme0n1: 953,89 GiB, 1024209543168 bytes, 2000409264 sectors
Disk model: KBG40ZPZ1T02 NVMe KIOXIA 1024GB
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 85C611CD-5431-4294-868D-B74F61A4AEBC
Device Start End Sectors Size Type
/dev/nvme0n1p1 2048 1050623 1048576 512M EFI System
/dev/nvme0n1p2 1050624 2549759 1499136 732M Linux filesystem
/dev/nvme0n1p3 2549760 2000408575 1997858816 952,7G Linux filesystem

View File

@@ -0,0 +1,224 @@
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 126
model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
stepping : 5
microcode : 0xb0
cpu MHz : 1500.000
cache size : 8192 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 27
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling
bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data
bogomips : 2995.20
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 126
model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
stepping : 5
microcode : 0xb0
cpu MHz : 1500.000
cache size : 8192 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 27
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling
bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data
bogomips : 2995.20
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 126
model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
stepping : 5
microcode : 0xb0
cpu MHz : 1500.000
cache size : 8192 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 4
initial apicid : 4
fpu : yes
fpu_exception : yes
cpuid level : 27
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling
bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data
bogomips : 2995.20
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 126
model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
stepping : 5
microcode : 0xb0
cpu MHz : 1500.000
cache size : 8192 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 6
initial apicid : 6
fpu : yes
fpu_exception : yes
cpuid level : 27
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling
bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data
bogomips : 2995.20
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 126
model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
stepping : 5
microcode : 0xb0
cpu MHz : 3113.329
cache size : 8192 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 27
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling
bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data
bogomips : 2995.20
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 126
model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
stepping : 5
microcode : 0xb0
cpu MHz : 1500.000
cache size : 8192 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 27
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling
bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data
bogomips : 2995.20
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 126
model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
stepping : 5
microcode : 0xb0
cpu MHz : 1500.000
cache size : 8192 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 5
initial apicid : 5
fpu : yes
fpu_exception : yes
cpuid level : 27
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling
bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data
bogomips : 2995.20
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 126
model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
stepping : 5
microcode : 0xb0
cpu MHz : 1500.000
cache size : 8192 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 7
initial apicid : 7
fpu : yes
fpu_exception : yes
cpuid level : 27
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities
vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling
bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data
bogomips : 2995.20
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:

View File

@@ -0,0 +1,10 @@
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
1836 root 20 0 1862488 39156 14168 S 6,2 0,1 6:31.69 contain+
5074 sveta 20 0 715908 14380 3312 S 6,2 0,0 2:32.24 vmalert
5511 sveta 20 0 5958132 675752 593316 S 6,2 2,1 23:18.64 Xorg
5582 sveta 20 0 992772 140588 5952 S 6,2 0,4 1:32.41 percona+
5583 sveta 20 0 992516 246840 5964 S 6,2 0,8 1:29.62 percona+
5819 sveta 20 0 5997200 367992 81312 S 6,2 1,1 42:19.42 gnome-s+
13430 sveta 20 0 1124,6g 172364 74192 S 6,2 0,5 16:06.71 wavebox
14886 sveta 20 0 1124,5g 138544 72440 S 6,2 0,4 0:32.75 wavebox
474260 sveta 20 0 5069828 795952 162860 S 6,2 2,4 33:45.76 thunder+

View File

@@ -0,0 +1,29 @@
platform Linux
hostname Delly-7390
kernel 5.15.0-41-generic
release Ubuntu 20.04.4 LTS (focal)
CPU_ARCH 64-bit
OS_ARCH 64-bit
virt No virtualization detected
vendor Dell Inc.
system Dell Inc.; XPS 13 7390 2-in-1; vNot Specified (Convertible)
servicetag H3RJL13
rss 21008793600
raid_controller No RAID controller detected
threading NPTL 2.31
getenforce No SELinux detected
swappiness 60
dirtypolicy 20, 10
dirtystatus 0, 0
numa-available 1
numa-policy default
numa-preferred-node current
internal::disks dm-0 dm-1 dm-2 mmcblk0 nvme0n1
internal::dm-0 128
internal::dm-1 128
internal::dm-2 128
internal::mmcblk0 [mq-deadline] 128
internal::nvme0n1 [none] 127
dentry-state 456513 375385 45 0 141719 0
file-nr 30570 0 9223372036854775807
inode-nr 399300 88416

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
21:07:41 up 1 day, 6:15, 1 user, load average: 0,40, 0,72, 0,86

View File

@@ -0,0 +1,2 @@
VG VSize VFree
vgubuntu <952,64g <21,32g

View File

@@ -0,0 +1 @@
join: /tmp/pt-summary.21603.7sClIl/mounted_fs_info.tmp:5: is not sorted: /dev/loop1 114M 114M 0 100% /var/lib/snapd/snap/core/13308

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,974 @@
# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 2.7 present.
77 structures occupying 4848 bytes.
Table at 0x789A5020.
Handle 0xDA00, DMI type 218, 11 bytes
OEM-specific Type
Header and Data:
DA 0B 00 DA B2 00 17 20 0E 10 01
Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
Vendor: Dell Inc.
Version: 2.3.3
Release Date: 07/10/2014
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 8192 kB
Characteristics:
ISA is supported
PCI is supported
PNP is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
EDD is supported
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
CGA/mono video services are supported (int 10h)
ACPI is supported
USB legacy is supported
BIOS boot specification is supported
Function key-initiated network boot is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 2.3
Handle 0x0100, DMI type 1, 27 bytes
System Information
Manufacturer: Dell Inc.
Product Name: PowerEdge R520
Version: Not Specified
Serial Number: 6J6X9Y1
UUID: 4c4c4544-004a-3610-8058-b6c04f395931
Wake-up Type: Power Switch
SKU Number: SKU=NotProvided;ModelName=PowerEdge R520
Family: Not Specified
Handle 0x0200, DMI type 2, 9 bytes
Base Board Information
Manufacturer: Dell Inc.
Product Name: 051XDX
Version: A06
Serial Number: ..CN1374035600RC.
Asset Tag: Not Specified
Handle 0x0300, DMI type 3, 22 bytes
Chassis Information
Manufacturer: Dell Inc.
Type: Rack Mount Chassis
Lock: Present
Version: Not Specified
Serial Number: 6J6X9Y1
Asset Tag: Not Specified
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: Unknown
OEM Information: 0x00000000
Height: 2 U
Number Of Power Cords: Unspecified
Contained Elements: 0
SKU Number: Not Specified
Handle 0x0400, DMI type 4, 40 bytes
Processor Information
Socket Designation: CPU1
Type: Central Processor
Family: Xeon
Manufacturer: Intel
ID: D7 06 02 00 FF FB EB BF
Signature: Type 0, Family 6, Model 45, Stepping 7
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (FXSAVE and FXSTOR instructions supported)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Multi-threading)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
Voltage: 1.2 V
External Clock: 7200 MHz
Max Speed: 3600 MHz
Current Speed: 2200 MHz
Status: Populated, Enabled
Upgrade: Socket LGA1356
L1 Cache Handle: 0x0700
L2 Cache Handle: 0x0701
L3 Cache Handle: 0x0702
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified
Core Count: 6
Core Enabled: 6
Thread Count: 12
Characteristics:
64-bit capable
Multi-Core
Hardware Thread
Execute Protection
Enhanced Virtualization
Power/Performance Control
Handle 0x0401, DMI type 4, 40 bytes
Processor Information
Socket Designation: CPU2
Type: Central Processor
Family: Xeon
Manufacturer: Intel
ID: D7 06 02 00 FF FB EB BF
Signature: Type 0, Family 6, Model 45, Stepping 7
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (FXSAVE and FXSTOR instructions supported)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Multi-threading)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
Voltage: 1.2 V
External Clock: 7200 MHz
Max Speed: 3600 MHz
Current Speed: 2200 MHz
Status: Populated, Idle
Upgrade: Socket LGA1356
L1 Cache Handle: 0x0703
L2 Cache Handle: 0x0704
L3 Cache Handle: 0x0705
Serial Number: Not Specified
Asset Tag: Not Specified
Part Number: Not Specified
Core Count: 6
Core Enabled: 6
Thread Count: 12
Characteristics:
64-bit capable
Multi-Core
Hardware Thread
Execute Protection
Enhanced Virtualization
Power/Performance Control
Handle 0x0700, DMI type 7, 19 bytes
Cache Information
Socket Designation: Not Specified
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 192 kB
Maximum Size: 192 kB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative
Handle 0x0701, DMI type 7, 19 bytes
Cache Information
Socket Designation: Not Specified
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 1536 kB
Maximum Size: 1536 kB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 8-way Set-associative
Handle 0x0702, DMI type 7, 19 bytes
Cache Information
Socket Designation: Not Specified
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 15 MB
Maximum Size: 15 MB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 20-way Set-associative
Handle 0x0703, DMI type 7, 19 bytes
Cache Information
Socket Designation: Not Specified
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 192 kB
Maximum Size: 192 kB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative
Handle 0x0704, DMI type 7, 19 bytes
Cache Information
Socket Designation: Not Specified
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 1536 kB
Maximum Size: 1536 kB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 8-way Set-associative
Handle 0x0705, DMI type 7, 19 bytes
Cache Information
Socket Designation: Not Specified
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 15 MB
Maximum Size: 15 MB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 20-way Set-associative
Handle 0x0800, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: DB-15 female
Port Type: Video Port
Handle 0x0801, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: DB-15 female
Port Type: Video Port
Handle 0x0802, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0803, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0804, DMI type 126, 9 bytes
Inactive
Handle 0x0805, DMI type 126, 9 bytes
Inactive
Handle 0x0806, DMI type 126, 9 bytes
Inactive
Handle 0x0807, DMI type 126, 9 bytes
Inactive
Handle 0x0808, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0809, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x080A, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: INT_USB
Internal Connector Type: Access Bus (USB)
External Reference Designator: Not Specified
External Connector Type: None
Port Type: USB
Handle 0x080B, DMI type 126, 9 bytes
Inactive
Handle 0x080C, DMI type 126, 9 bytes
Inactive
Handle 0x080D, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: RJ-45
Port Type: Network Port
Handle 0x080E, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: RJ-45
Port Type: Network Port
Handle 0x080F, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Not Specified
External Connector Type: DB-9 male
Port Type: Serial Port 16550A Compatible
Handle 0x0900, DMI type 9, 17 bytes
System Slot Information
Designation: PCI1
Type: x16 PCI Express 3
Current Usage: Available
Length: Long
ID: 1
Characteristics:
3.3 V is provided
PME signal is supported
Handle 0x0901, DMI type 9, 17 bytes
System Slot Information
Designation: PCI2
Type: x8 PCI Express 3
Current Usage: In Use
Length: Long
ID: 2
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:08:00.0
Handle 0x0902, DMI type 9, 17 bytes
System Slot Information
Designation: PCI3
Type: x8 PCI Express 3
Current Usage: In Use
Length: Long
ID: 3
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:09:00.0
Handle 0x0903, DMI type 9, 17 bytes
System Slot Information
Designation: PCI4
Type: x8 PCI Express 3
Current Usage: Available
Length: Long
ID: 4
Characteristics:
3.3 V is provided
PME signal is supported
Handle 0x0904, DMI type 126, 17 bytes
Inactive
Handle 0x0905, DMI type 126, 17 bytes
Inactive
Handle 0x0B00, DMI type 11, 5 bytes
OEM Strings
String 1: Dell System
String 2: 5[0000]
String 3: 17[FFFFFFFFFFFFFFFF]
String 4: 17[FFFFFFFFFFFFFFFF]
String 5: 17[FFFFFFFFFFFFFFFF]
String 6: 17[FFFFFFFFFFFFFFFF]
Handle 0x7E00, DMI type 126, 170 bytes
Inactive
Handle 0x0C00, DMI type 12, 5 bytes
System Configuration Options
Option 1: NVRAM_CLR: Clear user settable NVRAM areas and set defaults
Option 2: PWRD_EN: Close to enable password
Handle 0x0D00, DMI type 13, 22 bytes
BIOS Language Information
Language Description Format: Long
Installable Languages: 1
en|US|iso8859-1
Currently Installed Language: en|US|iso8859-1
Handle 0x1000, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: Multi-bit ECC
Maximum Capacity: 384 GB
Error Information Handle: Not Provided
Number Of Devices: 12
Handle 0x1100, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 1
Locator: DIMM_A1
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2EA1C6F0
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1101, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 1
Locator: DIMM_A2
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E21C700
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1102, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 2
Locator: DIMM_A3
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E11C700
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1103, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 2
Locator: DIMM_A4
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E91C6FF
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1104, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 3
Locator: DIMM_A5
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E51C701
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1105, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 3
Locator: DIMM_A6
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E31C700
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1106, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 4
Locator: DIMM_B1
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2EA1C708
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1107, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 4
Locator: DIMM_B2
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E61C728
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1108, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 5
Locator: DIMM_B3
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E51C728
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1109, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 5
Locator: DIMM_B4
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E31C730
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x110A, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 6
Locator: DIMM_B5
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E21C709
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x110B, DMI type 17, 34 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 16384 MB
Form Factor: DIMM
Set: 6
Locator: DIMM_B6
Bank Locator: Not Specified
Type: DDR3
Type Detail: Synchronous Registered (Buffered)
Speed: 1333 MT/s
Manufacturer: 00AD04B300AD
Serial Number: 2E61C6F5
Asset Tag: 01131921
Part Number: HMT42GR7MFR4A-H9
Rank: 2
Configured Memory Speed: 1333 MT/s
Handle 0x1300, DMI type 19, 31 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x0007FFFFFFF
Range Size: 2 GB
Physical Array Handle: 0x1000
Partition Width: 2
Handle 0x1301, DMI type 19, 31 bytes
Memory Array Mapped Address
Starting Address: 0x00100000000
Ending Address: 0x0307FFFFFFF
Range Size: 190 GB
Physical Array Handle: 0x1000
Partition Width: 2
Handle 0x2000, DMI type 32, 11 bytes
System Boot Information
Status: No errors detected
Handle 0x2600, DMI type 38, 18 bytes
IPMI Device Information
Interface Type: KCS (Keyboard Control Style)
Specification Version: 2.0
I2C Slave Address: 0x10
NV Storage Device: Not Present
Base Address: 0x0000000000000CA8 (I/O)
Register Spacing: 32-bit Boundaries
Interrupt Polarity: Active High
Interrupt Trigger Mode: Edge
Interrupt Number: 10
Handle 0x2900, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Embedded NIC 1
Type: Ethernet
Status: Enabled
Type Instance: 1
Bus Address: 0000:02:00.0
Handle 0x2901, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Embedded NIC 2
Type: Ethernet
Status: Enabled
Type Instance: 2
Bus Address: 0000:02:00.1
Handle 0x2902, DMI type 126, 11 bytes
Inactive
Handle 0x2903, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Integrated RAID
Type: SAS Controller
Status: Enabled
Type Instance: 1
Bus Address: 0000:01:00.0
Handle 0x2904, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Embedded Video
Type: Video
Status: Enabled
Type Instance: 1
Bus Address: 0000:06:00.0
Handle 0x2905, DMI type 41, 11 bytes
Onboard Device
Reference Designation:
Type: SATA Controller
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:1f.2
Handle 0x2906, DMI type 126, 11 bytes
Inactive
Handle 0xB100, DMI type 177, 12 bytes
OEM-specific Type
Header and Data:
B1 0C 00 B1 00 02 00 00 00 00 00 00
Handle 0xD000, DMI type 208, 16 bytes
OEM-specific Type
Header and Data:
D0 10 00 D0 02 00 FE 00 F6 04 00 00 00 01 00 00
Handle 0xD200, DMI type 210, 12 bytes
OEM-specific Type
Header and Data:
D2 0C 00 D2 F8 02 03 03 06 80 04 05
Handle 0xC200, DMI type 194, 87 bytes
OEM-specific Type
Header and Data:
C2 57 00 C2 70 00 71 00 00 10 2D 2E 42 00 11 FE
01 43 00 11 FE 00 00 00 11 9F 20 00 00 11 9F 00
6E 01 11 9F 20 6D 01 11 9F 00 31 40 11 FB 00 32
40 11 FB 04 9D 00 11 FD 02 9E 00 11 FD 00 9F 00
26 FE 01 A0 00 26 FE 00 28 40 26 DF 20 29 40 26
DF 00 FF FF 00 00 00
Handle 0xC201, DMI type 194, 252 bytes
OEM-specific Type
Header and Data:
C2 FC 01 C2 70 00 71 00 03 40 5A 6D 6C 01 57 FC
00 6B 01 57 FC 01 6A 01 57 FC 02 12 02 57 EF 00
11 02 57 EF 10 00 00 5B FB 04 00 00 5B FB 00 77
01 54 FC 00 78 01 54 FC 01 79 01 54 FC 02 7A 01
54 FC 03 33 40 54 CF 00 34 40 54 CF 10 35 40 54
CF 20 36 40 54 CF 30 1A 40 54 FB 04 1B 40 54 FB
00 1C 40 54 F7 08 1D 40 54 F7 00 43 40 58 DF 20
42 40 58 DF 00 22 40 58 EF 10 23 40 58 EF 00 24
40 58 BF 40 25 40 58 BF 00 00 00 58 FC 01 00 00
58 FC 02 00 00 58 FC 03 00 00 58 F3 04 00 00 58
F3 08 00 00 58 F3 0C 2D 02 55 FE 01 2E 02 55 FE
00 D8 00 55 7F 80 D9 00 55 7F 00 54 02 56 DF 00
57 02 56 DF 20 4D 02 56 BF 00 4E 02 56 BF 40 2D
01 56 7F 80 2E 01 56 7F 00 28 03 5B 7F 00 29 03
5B 7F 80 2A 03 5B 9F 00 2B 03 5B 9F 20 2C 03 5B
9F 40 00 C0 5C 00 0A FF FF 00 00 00
Handle 0xC202, DMI type 194, 92 bytes
OEM-specific Type
Header and Data:
C2 5C 02 C2 70 00 71 00 03 40 5A 6D 03 C0 67 00
05 83 00 76 00 00 84 00 77 00 00 05 03 5A FC 00
06 03 5A FC 01 31 03 5A FC 02 07 03 5A F3 00 08
03 5A F3 04 32 03 5A F3 08 09 03 5A CF 00 10 03
5A CF 10 33 03 5A CF 20 11 03 5A 3F 00 12 03 5A
3F 40 34 03 5A 3F 80 FF FF 00 00 00
Handle 0xC203, DMI type 194, 252 bytes
OEM-specific Type
Header and Data:
C2 FC 03 C2 72 00 73 00 00 40 5D 5E D3 00 00 00
02 D4 00 02 00 02 13 7C 28 F7 00 12 7C 28 F7 08
00 90 2C 00 00 01 90 2D 00 00 4A 01 46 BF 40 4B
01 46 BF 00 00 00 49 D7 28 00 00 49 DF 20 DA 00
49 F7 08 00 00 49 D7 00 00 00 49 7F 00 00 00 49
7F 80 5D 02 49 F8 00 5E 02 49 F8 01 00 00 49 F8
02 60 02 49 F8 03 62 02 49 F8 04 65 02 49 F8 05
DE 00 63 FE 01 DF 00 63 FE 00 26 40 42 FE 01 27
40 42 FE 00 FF 02 42 F7 08 00 03 42 F7 00 01 03
42 EF 10 02 03 42 EF 00 0B 7C 42 DF 00 0A 7C 42
DF 20 0C 7C 42 BF 40 0D 7C 42 BF 00 17 01 4A FE
00 18 01 4A FE 01 19 01 4A FD 00 1A 01 4A FD 02
1B 01 4A FB 00 1C 01 4A FB 04 1D 01 4A F7 00 1E
01 4A F7 08 1F 01 44 FE 00 20 01 44 FE 01 00 00
44 FD 00 00 00 44 FD 02 35 01 4B FC 00 37 01 4B
FC 01 38 01 4B FC 02 FF FF 00 00 00
Handle 0xC204, DMI type 194, 252 bytes
OEM-specific Type
Header and Data:
C2 FC 04 C2 72 00 73 00 00 40 5D 5E 39 01 4B FC
03 F7 02 4B 7F 80 F8 02 4B 7F 00 02 40 46 DF 00
01 40 46 DF 20 CF 01 40 FD 02 D0 01 40 FD 00 FC
01 45 BF 00 FD 01 45 BF 40 00 00 45 7F 80 00 00
45 7F 00 A1 02 45 FB 00 A2 02 45 FB 04 D1 00 46
FE 00 D2 00 46 FE 01 71 01 46 FB 04 72 01 46 FB
00 73 01 46 F7 08 74 01 46 F7 00 40 01 47 EF 10
41 01 47 EF 00 EB 01 47 FD 00 EA 01 47 FD 02 33
02 40 07 08 32 02 40 07 10 31 02 40 07 20 00 00
40 07 30 00 00 40 07 40 00 00 40 07 50 00 00 40
07 60 6E 02 40 07 00 4B 02 47 DF 00 4C 02 47 DF
20 10 7C 47 7F 80 11 7C 47 7F 00 C5 02 48 BF 00
C6 02 48 BF 40 CB 02 48 DF 00 CC 02 48 DF 20 C4
01 50 FE 00 C5 01 50 FE 01 99 02 5C F7 00 98 02
5C F7 08 AE 02 5C FB 00 AD 02 5C FB 04 B6 02 5C
3F 40 B7 02 5C 3F 80 FF FF 00 00 00
Handle 0xC205, DMI type 194, 252 bytes
OEM-specific Type
Header and Data:
C2 FC 05 C2 72 00 73 00 00 40 5D 5E B8 02 5C 3F
00 E9 02 41 E7 00 EA 02 41 E7 08 EB 02 41 E7 10
ED 02 41 BF 00 EE 02 41 BF 40 D8 02 4F F8 00 D9
02 4F F8 01 DA 02 4F F8 02 DC 02 4F F8 04 DD 02
4F F8 03 DE 02 4F E7 00 DF 02 4F E7 08 E0 02 4F
E7 18 E1 02 4F 1F 00 00 00 4F 1F C0 E2 02 4F 1F
A0 E3 02 4F 1F 20 E4 02 4F 1F 40 E5 02 4F 1F 60
E6 02 4F 1F 80 F2 02 47 F3 00 00 00 47 F3 04 F4
02 47 F3 08 F5 02 47 F3 0C 06 7C 47 BF 40 07 7C
47 BF 00 19 03 4E CF 00 1A 03 4E CF 10 1B 03 4E
CF 20 1E 03 4E F3 00 1C 03 4E F3 08 1D 03 4E F3
04 1F 03 4E BF 00 20 03 4E BF 40 2D 03 60 BF 00
2E 03 60 BF 40 00 00 19 F3 00 00 00 19 F3 04 00
00 19 F3 08 00 00 19 CF 00 00 00 19 CF 10 00 00
19 CF 20 3A 03 4B F3 00 3B 03 4B F3 04 3C 03 4B
F3 08 3D 03 4B F3 0C FF FF 00 00 00
Handle 0xC206, DMI type 194, 77 bytes
OEM-specific Type
Header and Data:
C2 4D 06 C2 72 00 73 00 00 40 5D 5E 14 7C 53 FE
01 15 7C 53 FE 00 50 03 77 7F 00 51 03 77 7F 80
00 7C 7F FE 01 01 7C 7F FE 00 02 7C 7F F9 00 03
7C 7F F9 02 04 7C 7F F9 04 05 7C 7F F9 06 3E 03
48 EF 00 3F 03 48 EF 10 FF FF 00 00 00
Handle 0xD800, DMI type 216, 9 bytes
OEM-specific Type
Header and Data:
D8 09 00 D8 01 02 01 F0 03
Strings:
MATROX
VGA/VBE BIOS, Version V3.8WO
Handle 0xDE00, DMI type 222, 16 bytes
OEM-specific Type
Header and Data:
DE 10 00 DE 00 20 FF FF 00 00 00 00 00 00 00 00
Handle 0xE100, DMI type 225, 61 bytes
OEM-specific Type
Header and Data:
E1 3D 00 E1 01 01 00 04 00 02 01 04 00 03 00 11
00 04 01 11 00 05 02 11 00 06 03 11 00 07 04 11
00 08 05 11 00 09 06 11 00 0A 07 11 00 0B 08 11
00 0C 09 11 00 0D 0A 11 00 0E 00 00 00
Strings:
CPU.Socket.1
CPU.Socket.2
DIMM.Socket.A1
DIMM.Socket.A2
DIMM.Socket.A3
DIMM.Socket.A4
DIMM.Socket.A5
DIMM.Socket.A6
DIMM.Socket.B1
DIMM.Socket.B2
DIMM.Socket.B3
DIMM.Socket.B4
DIMM.Socket.B5
DIMM.Socket.B6
Handle 0x7F00, DMI type 127, 4 bytes
End Of Table

View File

@@ -0,0 +1,312 @@
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
RX: bytes packets errors dropped overrun mcast
288081053881 576594672 0 0 0 0
TX: bytes packets errors dropped carrier collsns
288081053881 576594672 0 0 0 0
2: em1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
link/ether 90:b1:1c:55:31:29 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
118451931881 163297856 0 0 0 5039072
TX: bytes packets errors dropped carrier collsns
90089682163 132411836 0 0 0 0
3: em2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
link/ether 90:b1:1c:55:31:29 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
404092078 5238978 0 0 0 5040008
TX: bytes packets errors dropped carrier collsns
228 2 0 0 0 0
4: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
link/ether 90:b1:1c:55:31:29 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
118856023959 168536834 0 0 0 10079080
TX: bytes packets errors dropped carrier collsns
90089682391 132411838 0 0 0 0
5: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default qlen 1000
link/ether 52:54:00:16:de:f8 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
6: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast master virbr0 state DOWN mode DEFAULT group default qlen 1000
link/ether 52:54:00:16:de:f8 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
7: br-5f8d81e2374e: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default
link/ether 02:42:bc:4d:e2:32 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
8: docker0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default
link/ether 02:42:3f:34:ce:fc brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
2984598222 10523632 0 0 0 0
TX: bytes packets errors dropped carrier collsns
18782619553 13752032 0 0 0 0
9: br-294661236c88: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default
link/ether 02:42:25:df:72:e4 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
267: vethe8b73084@if266: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 36:0b:fa:25:af:c6 brd ff:ff:ff:ff:ff:ff link-netnsid 12
RX: bytes packets errors dropped overrun mcast
2301917 33114 0 0 0 0
TX: bytes packets errors dropped carrier collsns
546852484 94651 0 0 0 0
269: veth1a2f3a50@if268: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 56:3b:9a:28:9b:53 brd ff:ff:ff:ff:ff:ff link-netnsid 7
RX: bytes packets errors dropped overrun mcast
267678933 1952641 0 0 0 0
TX: bytes packets errors dropped carrier collsns
519265875 1980967 0 0 0 0
271: vethb2e8fb78@if270: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 16:79:83:36:01:d0 brd ff:ff:ff:ff:ff:ff link-netnsid 22
RX: bytes packets errors dropped overrun mcast
268754591 1973312 0 0 0 0
TX: bytes packets errors dropped carrier collsns
539694490 2008261 0 0 0 0
273: vethc33cb528@if272: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 26:2b:06:f5:94:6e brd ff:ff:ff:ff:ff:ff link-netnsid 23
RX: bytes packets errors dropped overrun mcast
203289570 1649722 0 0 0 0
TX: bytes packets errors dropped carrier collsns
504084737 1636551 0 0 0 0
275: vethc52473d4@if274: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 82:94:9b:fb:73:53 brd ff:ff:ff:ff:ff:ff link-netnsid 24
RX: bytes packets errors dropped overrun mcast
495512410 46782 0 0 0 0
TX: bytes packets errors dropped carrier collsns
107685970 65766 0 0 0 0
277: vethf5136d77@if276: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 06:c6:d7:a2:51:6c brd ff:ff:ff:ff:ff:ff link-netnsid 9
RX: bytes packets errors dropped overrun mcast
1072875 14518 0 0 0 0
TX: bytes packets errors dropped carrier collsns
164168452 30643 0 0 0 0
21: vethfa2d922@if20: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default
link/ether aa:b6:e2:4f:54:dc brd ff:ff:ff:ff:ff:ff link-netnsid 5
RX: bytes packets errors dropped overrun mcast
73113056 462285 0 0 0 0
TX: bytes packets errors dropped carrier collsns
440101321 1081942 0 0 0 0
279: veth046457e1@if278: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether e6:1b:76:6b:82:ff brd ff:ff:ff:ff:ff:ff link-netnsid 10
RX: bytes packets errors dropped overrun mcast
1190508 16459 0 0 0 0
TX: bytes packets errors dropped carrier collsns
164390009 33373 0 0 0 0
281: veth522c3e56@if280: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 76:72:02:83:02:1c brd ff:ff:ff:ff:ff:ff link-netnsid 11
RX: bytes packets errors dropped overrun mcast
450447 5875 0 0 0 0
TX: bytes packets errors dropped carrier collsns
32596490 8685 0 0 0 0
283: vethc532c32b@if282: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 72:0b:fc:68:1f:b8 brd ff:ff:ff:ff:ff:ff link-netnsid 25
RX: bytes packets errors dropped overrun mcast
243841 3466 0 0 0 0
TX: bytes packets errors dropped carrier collsns
26670020 5751 0 0 0 0
121: vboxnet12: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:0c brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
122: vboxnet18: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:12 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
123: vboxnet19: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:13 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
124: vboxnet20: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:14 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
146: veth67e3da0@if145: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default
link/ether 6e:6c:20:61:1a:d6 brd ff:ff:ff:ff:ff:ff link-netnsid 0
RX: bytes packets errors dropped overrun mcast
25074983 290092 0 0 0 0
TX: bytes packets errors dropped carrier collsns
1685873208 506528 0 0 0 0
147: vboxnet0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:00 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
148: vboxnet21: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:15 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
149: vboxnet24: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:18 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
150: vboxnet25: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:19 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
25156 239 0 0 0 0
151: vboxnet3: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:03 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
152: vboxnet4: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
link/ether 0a:00:27:00:00:04 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
0 0 0 0 0 0
TX: bytes packets errors dropped carrier collsns
0 0 0 0 0 0
154: vethaa8f4de@if153: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default
link/ether de:1c:ac:dc:41:88 brd ff:ff:ff:ff:ff:ff link-netnsid 1
RX: bytes packets errors dropped overrun mcast
2384501026 5652928 0 0 0 0
TX: bytes packets errors dropped carrier collsns
9951815230 7743370 0 0 0 0
155: lxdbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
link/ether 00:16:3e:c9:ff:26 brd ff:ff:ff:ff:ff:ff
RX: bytes packets errors dropped overrun mcast
100847667 1591955 0 0 0 0
TX: bytes packets errors dropped carrier collsns
7405489236 1792866 0 0 0 0
157: veth0bd575f6@if156: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 16:a2:70:0f:af:53 brd ff:ff:ff:ff:ff:ff link-netnsid 2
RX: bytes packets errors dropped overrun mcast
398770 3913 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3441398 53752 0 0 0 0
159: veth1e01ee50@if158: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether c2:8a:d5:7a:fa:24 brd ff:ff:ff:ff:ff:ff link-netnsid 3
RX: bytes packets errors dropped overrun mcast
398710 3912 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3441020 53701 0 0 0 0
161: veth07d7db6b@if160: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether a6:a8:96:23:e8:58 brd ff:ff:ff:ff:ff:ff link-netnsid 4
RX: bytes packets errors dropped overrun mcast
398710 3912 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3439590 53684 0 0 0 0
177: veth12219f8c@if176: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether d2:a0:d5:df:32:04 brd ff:ff:ff:ff:ff:ff link-netnsid 13
RX: bytes packets errors dropped overrun mcast
396668 3892 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3401425 53413 0 0 0 0
179: vethb9d2af0d@if178: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 8e:c2:5a:cf:35:ac brd ff:ff:ff:ff:ff:ff link-netnsid 14
RX: bytes packets errors dropped overrun mcast
398770 3913 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3399264 53395 0 0 0 0
181: veth0c948a7c@if180: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether aa:1e:0b:83:66:3d brd ff:ff:ff:ff:ff:ff link-netnsid 15
RX: bytes packets errors dropped overrun mcast
397750 3903 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3397560 53381 0 0 0 0
183: vethad45a55a@if182: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether ee:45:28:ac:4a:d2 brd ff:ff:ff:ff:ff:ff link-netnsid 16
RX: bytes packets errors dropped overrun mcast
398198 3907 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3396836 53369 0 0 0 0
185: veth3bd42127@if184: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 2a:e9:0b:d7:a4:bb brd ff:ff:ff:ff:ff:ff link-netnsid 17
RX: bytes packets errors dropped overrun mcast
398260 3908 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3394912 53338 0 0 0 0
187: vetha67e3445@if186: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 3e:4c:8f:9e:cb:9f brd ff:ff:ff:ff:ff:ff link-netnsid 18
RX: bytes packets errors dropped overrun mcast
397688 3902 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3396256 53312 0 0 0 0
189: veth57871859@if188: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 4e:93:e6:28:56:9d brd ff:ff:ff:ff:ff:ff link-netnsid 19
RX: bytes packets errors dropped overrun mcast
398198 3907 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3391468 53275 0 0 0 0
191: veth61f76055@if190: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether e2:aa:bb:04:c3:51 brd ff:ff:ff:ff:ff:ff link-netnsid 20
RX: bytes packets errors dropped overrun mcast
400748 3932 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3391394 53262 0 0 0 0
193: veth67de6880@if192: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether e6:ed:ce:55:a0:b5 brd ff:ff:ff:ff:ff:ff link-netnsid 21
RX: bytes packets errors dropped overrun mcast
1285926 13204 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3475083 54268 0 0 0 0
209: veth45fa2bdb@if208: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether a2:e2:47:fc:54:3a brd ff:ff:ff:ff:ff:ff link-netnsid 30
RX: bytes packets errors dropped overrun mcast
397318 3899 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3370766 53144 0 0 0 0
219: vethce7b9a4d@if218: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 8e:a2:b6:ee:d2:37 brd ff:ff:ff:ff:ff:ff link-netnsid 35
RX: bytes packets errors dropped overrun mcast
1930874 19334 0 0 0 0
TX: bytes packets errors dropped carrier collsns
59751404 64926 0 0 0 0
221: veth19c266ca@if220: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether ae:17:9d:7e:42:4f brd ff:ff:ff:ff:ff:ff link-netnsid 36
RX: bytes packets errors dropped overrun mcast
395138 3877 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3367890 53030 0 0 0 0
225: veth140b78c8@if224: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 66:17:3f:a2:55:dc brd ff:ff:ff:ff:ff:ff link-netnsid 38
RX: bytes packets errors dropped overrun mcast
470366 5253 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3467344 54349 0 0 0 0
227: veth328abad5@if226: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether ce:9d:b7:e8:32:68 brd ff:ff:ff:ff:ff:ff link-netnsid 39
RX: bytes packets errors dropped overrun mcast
613062 6737 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3533422 55799 0 0 0 0
229: veth125aed80@if228: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 9e:06:5e:ae:9c:96 brd ff:ff:ff:ff:ff:ff link-netnsid 40
RX: bytes packets errors dropped overrun mcast
493486 5399 0 0 0 0
TX: bytes packets errors dropped carrier collsns
3487996 54527 0 0 0 0
231: vetha245bad8@if230: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 9e:d0:0e:cf:75:38 brd ff:ff:ff:ff:ff:ff link-netnsid 6
RX: bytes packets errors dropped overrun mcast
26900276 404736 0 0 0 0
TX: bytes packets errors dropped carrier collsns
2519395662 521491 0 0 0 0
245: vethe8577b3d@if244: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000
link/ether 62:7e:f7:14:45:3f brd ff:ff:ff:ff:ff:ff link-netnsid 8
RX: bytes packets errors dropped overrun mcast
1323198 17019 0 0 0 0
TX: bytes packets errors dropped carrier collsns
138649236 64065 0 0 0 0

View File

@@ -0,0 +1,109 @@
00:00.0 Host bridge: Intel Corporation Xeon E5/Core i7 DMI2 (rev 07)
00:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07)
00:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07)
00:03.2 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3c (rev 07)
00:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07)
00:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07)
00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 05)
00:16.0 Communication controller: Intel Corporation C600/X79 series chipset MEI Controller #1 (rev 05)
00:16.1 Communication controller: Intel Corporation C600/X79 series chipset MEI Controller #2 (rev 05)
00:1a.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2 (rev 05)
00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 1 (rev b5)
00:1c.4 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 5 (rev b5)
00:1c.7 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b5)
00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 05)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a5)
00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation C600/X79 series chipset 6-Port SATA AHCI Controller (rev 05)
01:00.0 RAID bus controller: Broadcom / LSI MegaRAID SAS 2208 [Thunderbolt] (rev 05)
02:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM5720 2-port Gigabit Ethernet PCIe
02:00.1 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM5720 2-port Gigabit Ethernet PCIe
03:00.0 PCI bridge: Renesas Technology Corp. SH7757 PCIe Switch [PS]
04:00.0 PCI bridge: Renesas Technology Corp. SH7757 PCIe Switch [PS]
04:01.0 PCI bridge: Renesas Technology Corp. SH7757 PCIe Switch [PS]
05:00.0 PCI bridge: Renesas Technology Corp. SH7757 PCIe-PCI Bridge [PPB]
06:00.0 VGA compatible controller: Matrox Electronics Systems Ltd. G200eR2
08:00.0 Non-Volatile memory controller: Intel Corporation PCIe Data Center SSD (rev 01)
09:00.0 Non-Volatile memory controller: Intel Corporation PCIe Data Center SSD (rev 01)
3f:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07)
3f:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07)
3f:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07)
3f:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07)
3f:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07)
3f:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07)
3f:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07)
3f:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07)
3f:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
3f:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
3f:0c.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
3f:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07)
3f:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07)
3f:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
3f:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
3f:0d.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
3f:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07)
3f:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07)
3f:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07)
3f:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07)
3f:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07)
3f:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07)
3f:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07)
3f:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07)
3f:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07)
3f:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07)
3f:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07)
3f:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07)
3f:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07)
3f:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07)
3f:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07)
3f:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07)
3f:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07)
3f:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07)
3f:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07)
3f:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07)
3f:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07)
3f:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07)
3f:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07)
40:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07)
40:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07)
40:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07)
40:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07)
7f:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07)
7f:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07)
7f:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07)
7f:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07)
7f:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07)
7f:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07)
7f:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07)
7f:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07)
7f:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
7f:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
7f:0c.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
7f:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07)
7f:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07)
7f:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
7f:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
7f:0d.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
7f:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07)
7f:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07)
7f:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07)
7f:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07)
7f:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07)
7f:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07)
7f:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07)
7f:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07)
7f:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07)
7f:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07)
7f:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07)
7f:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07)
7f:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07)
7f:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07)
7f:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07)
7f:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07)
7f:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07)
7f:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07)
7f:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07)
7f:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07)
7f:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07)
7f:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07)
7f:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07)

View File

@@ -0,0 +1,6 @@
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
home raid10 -wi-ao---- <2.76t
root raid10 -wi-ao---- 100.00g
testlv raid10 -wi-a----- 10.00g
tokutest1 raid10 -wi-a----- 35.00g
vinicius-test raid10 -wi-a----- 100.00g

View File

@@ -0,0 +1,52 @@
total used free shared buff/cache available
Mem: 202770395136 34394607616 77439123456 4469063680 90936664064 163263594496
Swap: 4294963200 227540992 4067422208
MemTotal: 198017964 kB
MemFree: 75624404 kB
MemAvailable: 159437364 kB
Buffers: 9117060 kB
Cached: 67197724 kB
SwapCached: 15024 kB
Active: 59782480 kB
Inactive: 36711100 kB
Active(anon): 16042904 kB
Inactive(anon): 6933996 kB
Active(file): 43739576 kB
Inactive(file): 29777104 kB
Unevictable: 100 kB
Mlocked: 100 kB
SwapTotal: 4194300 kB
SwapFree: 3972092 kB
Dirty: 7340 kB
Writeback: 0 kB
AnonPages: 19080708 kB
Mapped: 2415452 kB
Shmem: 4364320 kB
KReclaimable: 12490552 kB
Slab: 14653600 kB
SReclaimable: 12490552 kB
SUnreclaim: 2163048 kB
KernelStack: 98000 kB
PageTables: 398548 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
WritebackTmp: 0 kB
CommitLimit: 18919206700 kB
Committed_AS: 77642340 kB
VmallocTotal: 34359738367 kB
VmallocUsed: 0 kB
VmallocChunk: 0 kB
Percpu: 254784 kB
HardwareCorrupted: 0 kB
AnonHugePages: 38912 kB
ShmemHugePages: 0 kB
ShmemPmdMapped: 0 kB
HugePages_Total: 4330
HugePages_Free: 4299
HugePages_Rsvd: 185
HugePages_Surp: 0
Hugepagesize: 2048 kB
Hugetlb: 8867840 kB
DirectMap4k: 24671468 kB
DirectMap2M: 164007936 kB
DirectMap1G: 14680064 kB

View File

@@ -0,0 +1,326 @@
10.10.8.124:/srv/ftp 1.2T 588G 531G 53% /srv/ftp on /srv/ftp type nfs4 (ro,relatime,vers=4.1,rsize=524288,wsize=524288,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=krb5p,clientaddr=10.10.8.141,local_lock=none,addr=10.10.8.124)
/dev/mapper/bigdisk_crypt 5.5T 2.0T 3.2T 38% /bigdisk on /bigdisk type ext4 (rw,relatime,seclabel)
/dev/mapper/home_crypt 2.8T 1.7T 990G 63% /home on /home type ext4 (rw,relatime,seclabel)
/dev/mapper/root_crypt 99G 28G 66G 30% /root on /root type ext4 (rw,relatime,seclabel)
/dev/nvme0n1 367G 32G 317G 10% /mnt/nvme on /mnt/nvme type ext4 (rw,relatime,seclabel)
/dev/nvme1n1 367G 71G 297G 20% /mnt/nvme2 on /mnt/nvme2 type ext4 (rw,relatime,seclabel)
/dev/sda1 190M 12M 179M 6% /boot/efi on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=winnt,errors=remount-ro)
/dev/sda2 1014M 263M 752M 26% /boot on /boot type xfs (rw,relatime,seclabel,attr2,inode64,noquota)
/dev/sda3 150G 150G 368M 100% /opt on /opt type xfs (rw,relatime,seclabel,attr2,inode64,noquota)
/dev/sda5 310G 162G 149G 53% / on / type xfs (rw,relatime,seclabel,attr2,inode64,noquota)
devtmpfs 95G 0 95G 0% /dev on /dev type devtmpfs (rw,nosuid,seclabel,size=98996900k,nr_inodes=24749225,mode=755)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged on /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged on /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged on /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged on /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged on /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged on /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged on /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged on /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work)
overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged on /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/10006 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10006 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10006 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10006 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/10008 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10008 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10008 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10008 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/10014 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10014 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10014 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10014 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/10045 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10045 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10045 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10045 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/10078 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10078 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10078 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10078 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/10125 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10125 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10125 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10125 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/10201 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10201 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10201 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10201 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/10205 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10205 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/10205 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/10205 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/955600026 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600026 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600026 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/955600330 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600330 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600330 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/955600334 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600334 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600334 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/955600366 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600366 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600366 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 19G 0 19G 0% /run/user/955600371 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 19G 0 19G 0% /run/user/955600371 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 19G 0 19G 0% /run/user/955600371 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 95G 0 95G 0% /dev/shm on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 95G 0 95G 0% /dev/shm on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 95G 0 95G 0% /dev/shm on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 95G 0 95G 0% /dev/shm on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 95G 0 95G 0% /dev/shm on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 95G 0 95G 0% /sys/fs/cgroup on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)
tmpfs 95G 4.1G 91G 5% /run on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel)
tmpfs 95G 4.1G 91G 5% /run on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 95G 4.1G 91G 5% /run on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755)
tmpfs 95G 4.1G 91G 5% /run on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077)
tmpfs 95G 4.1G 91G 5% /run on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000)
tmpfs 95G 4.1G 91G 5% /run on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755)
tmpfs 95G 4.1G 91G 5% /run on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700)

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,289 @@
Settings for bond0:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 1000Mb/s
Duplex: Full
Port: Other
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
Link detected: yes
Settings for br-294661236c88:
Link detected: no
Settings for br-5f8d81e2374e:
Link detected: no
Settings for docker0:
Link detected: yes
Settings for em1:
Supported ports: [ TP ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Supported pause frame use: No
Supports auto-negotiation: Yes
Supported FEC modes: Not reported
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Advertised pause frame use: Symmetric
Advertised auto-negotiation: Yes
Advertised FEC modes: Not reported
Link partner advertised link modes: 100baseT/Full
1000baseT/Full
Link partner advertised pause frame use: Symmetric Receive-only
Link partner advertised auto-negotiation: Yes
Link partner advertised FEC modes: Not reported
Speed: 1000Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 1
Transceiver: internal
Auto-negotiation: on
MDI-X: on
Supports Wake-on: g
Wake-on: d
Current message level: 0x000000ff (255)
drv probe link timer ifdown ifup rx_err tx_err
Link detected: yes
Settings for em2:
Supported ports: [ TP ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Supported pause frame use: No
Supports auto-negotiation: Yes
Supported FEC modes: Not reported
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Advertised pause frame use: Symmetric
Advertised auto-negotiation: Yes
Advertised FEC modes: Not reported
Link partner advertised link modes: 100baseT/Full
1000baseT/Full
Link partner advertised pause frame use: Symmetric Receive-only
Link partner advertised auto-negotiation: Yes
Link partner advertised FEC modes: Not reported
Speed: 1000Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 2
Transceiver: internal
Auto-negotiation: on
MDI-X: off
Supports Wake-on: g
Wake-on: d
Current message level: 0x000000ff (255)
drv probe link timer ifdown ifup rx_err tx_err
Link detected: yes
Settings for lxdbr0:
Link detected: yes
Settings for vboxnet0:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet12:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet18:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet19:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet20:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet21:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet24:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet25:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet3:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for vboxnet4:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Link detected: no
Settings for virbr0:
Link detected: no
Settings for virbr0-nic:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 10Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
MDI-X: Unknown
Current message level: 0xffffffa1 (-95)
drv ifup tx_err tx_queued intr tx_done rx_status pktdata hw wol 0xffff8000
Link detected: no

View File

@@ -0,0 +1,6 @@
PID OOM COMMAND
2061 +0 sshd
42899 -17 sshd
44001 -17 sshd
44034 -17 sshd
48761 -17 sshd

View File

@@ -0,0 +1,17 @@
available: 2 nodes (0-1)
node 0 cpus: 0 2 4 6 8 10 12 14 16 18 20 22
node 0 size: 96614 MB
node 0 free: 53769 MB
node 1 cpus: 1 3 5 7 9 11 13 15 17 19 21 23
node 1 size: 96762 MB
node 1 free: 20083 MB
node distances:
node 0 1
0: 10 20
1: 20 10
policy: default
preferred node: current
physcpubind: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
cpubind: 0 1
nodebind: 0 1
membind: 0 1

View File

@@ -0,0 +1,98 @@
Disk /dev/dm-0: 3032.2 GB, 3032246910976 bytes, 5922357248 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-1: 37.6 GB, 37580963840 bytes, 73400320 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-2: 10.7 GB, 10737418240 bytes, 20971520 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-3: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-4: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-5: 6000.1 GB, 6000065118208 bytes, 11718877184 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-6: 107.4 GB, 107372085248 bytes, 209711104 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/dm-7: 3032.2 GB, 3032244813824 bytes, 5922353152 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/nvme0n1: 400.1 GB, 400088457216 bytes, 781422768 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/nvme1n1: 400.1 GB, 400088457216 bytes, 781422768 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/sda: 499.6 GB, 499558383616 bytes, 975699968 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: gpt
Disk identifier: 28DFB3B2-EBDC-4E03-A51F-71850B1FE388
# Start End Size Type Name
1 2048 391167 190M EFI System EFI System Partition
2 391168 2488319 1G Microsoft basic
3 2488320 317061119 150G Microsoft basic
4 317061120 325449727 4G Linux swap
5 325449728 975697919 310.1G Microsoft basic
Disk /dev/sdb: 3999.7 GB, 3999688294400 bytes, 7811891200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: gpt
Disk identifier: 19C86533-0E7A-384A-9ED9-C67C8F8A5CAB
# Start End Size Type Name
1 2048 195311615 93.1G Microsoft basic
2 195311616 7811889151 3.6T Linux LVM
Disk /dev/sdc: 6000.1 GB, 6000069312512 bytes, 11718885376 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: gpt
Disk identifier: D74F6077-C26D-4331-A5A9-81F5B8983794
# Start End Size Type Name
1 2048 11718883327 5.5T Linux filesyste primary

View File

@@ -0,0 +1,648 @@
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2389.942
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 0
cpu cores : 6
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1780.690
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 0
cpu cores : 6
apicid : 32
initial apicid : 32
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2345.087
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 1
cpu cores : 6
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1604.659
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 1
cpu cores : 6
apicid : 34
initial apicid : 34
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2385.594
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 2
cpu cores : 6
apicid : 4
initial apicid : 4
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1620.505
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 2
cpu cores : 6
apicid : 36
initial apicid : 36
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2307.331
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 3
cpu cores : 6
apicid : 6
initial apicid : 6
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1456.632
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 3
cpu cores : 6
apicid : 38
initial apicid : 38
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 8
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2211.704
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 4
cpu cores : 6
apicid : 8
initial apicid : 8
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 9
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1649.961
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 4
cpu cores : 6
apicid : 40
initial apicid : 40
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 10
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2265.713
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 5
cpu cores : 6
apicid : 10
initial apicid : 10
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 11
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1544.334
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 5
cpu cores : 6
apicid : 42
initial apicid : 42
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 12
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2194.581
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 0
cpu cores : 6
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 13
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1525.616
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 0
cpu cores : 6
apicid : 33
initial apicid : 33
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 14
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2320.030
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 1
cpu cores : 6
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 15
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1494.384
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 1
cpu cores : 6
apicid : 35
initial apicid : 35
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 16
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2246.397
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 2
cpu cores : 6
apicid : 5
initial apicid : 5
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 17
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1667.597
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 2
cpu cores : 6
apicid : 37
initial apicid : 37
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 18
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2452.398
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 3
cpu cores : 6
apicid : 7
initial apicid : 7
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 19
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1580.156
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 3
cpu cores : 6
apicid : 39
initial apicid : 39
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 20
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2084.880
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 4
cpu cores : 6
apicid : 9
initial apicid : 9
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 21
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1522.090
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 4
cpu cores : 6
apicid : 41
initial apicid : 41
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 22
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 2109.796
cache size : 15360 KB
physical id : 0
siblings : 12
core id : 5
cpu cores : 6
apicid : 11
initial apicid : 11
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4399.90
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 23
vendor_id : GenuineIntel
cpu family : 6
model : 45
model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
stepping : 7
microcode : 0x71a
cpu MHz : 1348.923
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 5
cpu cores : 6
apicid : 43
initial apicid : 43
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds
bogomips : 4443.72
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:

View File

@@ -0,0 +1,10 @@
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
21837 root 20 0 118472 5284 1912 R 76.9 0.0 6876:45 bash
22324 root 20 0 118472 5256 1912 R 76.9 0.0 6930:46 bash
27315 root 20 0 173656 6052 4560 R 15.4 0.0 0:00.07 top
30550 deepak.+ 20 0 1832784 106312 35024 S 7.7 0.1 7:24.20 mongod
11 root 20 0 0 0 0 I 3.8 0.0 218:16.07 rcu_sched
313 grafana 20 0 2853776 44376 15448 S 3.8 0.0 58:38.07 grafana-se+
4362 viniciu+ 20 0 2056504 198048 33000 S 3.8 0.1 66:13.66 mongod
6837 viniciu+ 20 0 2020216 124284 33192 S 3.8 0.1 55:09.11 mongod
7827 mydba 20 0 2329572 680728 11272 S 3.8 0.3 1644:16 victoriame+

View File

@@ -0,0 +1,39 @@
platform Linux
hostname bm-support01.bm.int.percona.com
kernel 5.1.7-1.el7.elrepo.x86_64
release CentOS Linux release 7.9.2009 (Core)
CPU_ARCH 64-bit
OS_ARCH 64-bit
virt No virtualization detected
vendor Dell Inc.
system Dell Inc.; PowerEdge R520; vNot Specified (Rack Mount Chassis)
servicetag 6J6X9Y1
compiler GNU CC version 4.8.5 20150623 (Red Hat 4.8.5-44).
rss 24584511488
raid_controller Broadcom / LSI MegaRAID SAS 2208 [Thunderbolt] (rev 05)
threading NPTL 2.17
getenforce Enforcing
swappiness 1
dirtypolicy 20, 10
dirtystatus 0, 0
numa-available 2
numa-policy default
numa-preferred-node current
internal::disks dm-0 dm-1 dm-2 dm-3 dm-4 dm-5 dm-6 dm-7 nvme0n1 nvme1n1 sda sdb sdc sr0
internal::dm-0 128
internal::dm-1 128
internal::dm-2 128
internal::dm-3 128
internal::dm-4 128
internal::dm-5 128
internal::dm-6 128
internal::dm-7 128
internal::nvme0n1 [none] 1023
internal::nvme1n1 [none] 1023
internal::sda [mq-deadline] 256
internal::sdb [mq-deadline] 256
internal::sdc [mq-deadline] 256
internal::sr0 [mq-deadline] 64
dentry-state 10194137 9907146 45 0 2973650 0
file-nr 27248 0 19768804
inode-nr 8232199 1009287

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
14:08:12 up 38 days, 1:34, 6 users, load average: 3.72, 4.25, 4.97

View File

@@ -0,0 +1,2 @@
VG VSize VFree
raid10 <3.55t 562.86g

View File

@@ -14,16 +14,16 @@ Architecture | CPU = 32-bit, OS = 32-bit
Models | 1xQEMU Virtual CPU version 0.14.1
Caches | 1x4096 KB
# Memory #####################################################
Total | 1010.5M
Free | 784.4M
Used | physical = 226.1M, swap allocated = 2.0G, swap used = 0.0, virtual = 226.1M
Shared | 0.0
Buffers | 48.8M
Caches | 122.2M
Dirty | 152 kB
UsedRSS | 63.2M
Swappiness |
DirtyPolicy |
Total | 1010.5M
Free | 784.4M
Used | physical = 226.1M, swap allocated = 2.0G, swap used = 0.0, virtual = 226.1M
Shared | 0.0
Buffers | 48.8M
Caches | 122.2M
Dirty | 152 kB
UsedRSS | 63.2M
Swappiness |
DirtyPolicy |
# Mounted Filesystems ########################################
Filesystem Size Used Type Opts Mountpoint
/dev/hda1 99M 13% ext3 rw /boot

View File

@@ -14,16 +14,16 @@ Architecture | CPU = 32-bit, OS = 32-bit
Models | 1xQEMU Virtual CPU version 0.14.1
Caches | 1x4096 KB
# Memory #####################################################
Total | 1010.5M
Free | 784.7M
Used | physical = 225.8M, swap allocated = 2.0G, swap used = 0.0, virtual = 225.8M
Shared | 1.3M
Buffers | 48.8M
Caches | 122.0M
Dirty | 80 kB
UsedRSS | 63.2M
Swappiness |
DirtyPolicy |
Total | 1010.5M
Free | 784.7M
Used | physical = 225.8M, swap allocated = 2.0G, swap used = 0.0, virtual = 225.8M
Shared | 1.3M
Buffers | 48.8M
Caches | 122.0M
Dirty | 80 kB
UsedRSS | 63.2M
Swappiness |
DirtyPolicy |
# Mounted Filesystems ########################################
Filesystem Size Used Type Opts Mountpoint
/dev/hda1 99M 13% ext3 rw /boot

View File

@@ -15,17 +15,17 @@ Architecture | CPU = 64-bit, OS = 64-bit
Models | 4xIntel(R) Core(TM) i7-8565U CPU @ 1.80GHz
Caches | 4x8192 KB
# Memory #####################################################
Total | 3.7G
Free | 2.9G
Used | physical = 383.7M, swap allocated = 2.0G, swap used = 0.0, virtual = 383.7M
Shared | 32.9M
Buffers | 2.0M
Caches | 396.0M
Dirty | 136 kB
UsedRSS | 464.8M
Swappiness | 30
DirtyPolicy | 30, 10
DirtyStatus | 0, 0
Total | 3.7G
Free | 2.9G
Used | physical = 383.7M, swap allocated = 2.0G, swap used = 0.0, virtual = 383.7M
Shared | 32.9M
Buffers | 2.0M
Caches | 396.0M
Dirty | 136 kB
UsedRSS | 464.8M
Swappiness | 30
DirtyPolicy | 30, 10
DirtyStatus | 0, 0
Locator Size Speed Form Factor Type Type Detail
========= ======== ================= ============= ============= ===========
DIMM_A1 8192 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)

View File

@@ -0,0 +1,205 @@
Hostname | Delly-7390
Uptime | 1 day, 6:15, 1 user, load average: 0,40, 0,72, 0,86
System | Dell Inc.; XPS 13 7390 2-in-1; vNot Specified (Convertible)
Service Tag | H3RJL13
Platform | Linux
Release | Ubuntu 20.04.4 LTS (focal)
Kernel | 5.15.0-41-generic
Architecture | CPU = 64-bit, OS = 64-bit
Threading | NPTL 2.31
SELinux | No SELinux detected
Virtualized | No virtualization detected
# Processor ##################################################
Processors | physical = 1, cores = 4, virtual = 8, hyperthreading = yes
Speeds | 7x1500.000, 1x3113.329
Models | 8xIntel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz
Caches | 8x8192 KB
# Memory #####################################################
Total | 31.1G
Free | 2.2G
Used | physical = 12.6G, swap allocated = 976.0M, swap used = 122.5M, virtual = 12.7G
Shared | 5.5G
Buffers | 16.4G
Caches | 12.6G
Dirty | 3992 kB
UsedRSS | 19.6G
Swappiness | 60
DirtyPolicy | 20, 10
DirtyStatus | 0, 0
Numa Nodes | 1
Numa Policy | default
Preferred Node | current
Node Size Free CPUs
==== ==== ==== ====
node0 31877 MB 2282 MB 0 1 2 3 4 5 6 7
Locator Size Speed Form Factor Type Type Detail
========= ======== ================= ============= ============= ===========
Motherboard 16384 MB 3733 MT/s Row Of Chips LPDDR4 Synchronous
Motherboard 16384 MB 3733 MT/s Row Of Chips LPDDR4 Synchronous
# Mounted Filesystems ########################################
Filesystem Size Used Type Opts Mountpoint
/dev/mapper/vgubuntu-root 915G 75% ext4 rw,relatime,errors=remount-ro /
/dev/mmcblk0p1 239G 90% fuseblk rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2 /media/sveta/disk1
/dev/nvme0n1p1 511M 4% vfat rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro /boot/efi
/dev/nvme0n1p2 704M 42% ext4 rw,relatime /boot
overlay 915G 75% overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/FQIQG2VFFXJ426FBUGGBSCWRG2:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/diff,workdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/work /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged
overlay 915G 75% overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/RFAP7AE62T2GF223V7KCEJDN64:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/diff,workdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/work /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged
overlay 915G 75% overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/FQIQG2VFFXJ426FBUGGBSCWRG2:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/diff,workdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/work /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged
overlay 915G 75% overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/RFAP7AE62T2GF223V7KCEJDN64:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/diff,workdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/work /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged
tmpfs 16G 0% tmpfs rw,nosuid,nodev,inode64 /sys/fs/cgroup
tmpfs 16G 0% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /sys/fs/cgroup
tmpfs 16G 0% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /sys/fs/cgroup
tmpfs 16G 0% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /sys/fs/cgroup
tmpfs 16G 0% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /sys/fs/cgroup
tmpfs 16G 0% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /sys/fs/cgroup
tmpfs 16G 2% tmpfs rw,nosuid,nodev,inode64 /dev/shm
tmpfs 16G 2% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /dev/shm
tmpfs 16G 2% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /dev/shm
tmpfs 16G 2% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /dev/shm
tmpfs 16G 2% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /dev/shm
tmpfs 16G 2% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /dev/shm
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,inode64 /run
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /run
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /run
tmpfs 3,2G 1% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /run
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,inode64 /run/user/1000
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /run/user/1000
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run/user/1000
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run/user/1000
tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /run/user/1000
tmpfs 3,2G 1% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /run/user/1000
tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,inode64 /run/lock
tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /run/lock
tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run/lock
tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run/lock
tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /run/lock
tmpfs 5,0M 1% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /run/lock
udev 16G 0% devtmpfs rw,nosuid,noexec,relatime,size=16256608k,nr_inodes=4064152,mode=755,inode64 /dev
# Disk Schedulers And Queue Size #############################
dm-0 | 128
dm-1 | 128
dm-2 | 128
mmcblk0 | [mq-deadline] 128
nvme0n1 | [none] 127
# Disk Partioning ############################################
Device Type Start End Size
============ ==== ========== ========== ==================
/dev/dm-0 Disk 1022886936576
/dev/dm-1 Disk 998974160896
/dev/dm-2 Disk 1023410176
/dev/mmcblk0 Disk 256087425024
/dev/mmcblk0p1 Part 65536 500170751 0
/dev/nvme0n1 Disk 1024209543168
/dev/nvme0n1p1 Part 2048 1050623 0
/dev/nvme0n1p2 Part 1050624 2549759 0
/dev/nvme0n1p3 Part 2549760 2000408575 0
# Kernel Inode State #########################################
dentry-state | 456513 375385 45 0 141719 0
file-nr | 30570 0 9223372036854775807
inode-nr | 399300 88416
# LVM Volumes ################################################
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
root vgubuntu -wi-ao---- <930,37g
swap_1 vgubuntu -wi-ao---- 976,00m
# LVM Volume Groups ##########################################
VG VSize VFree
vgubuntu <952,64g <21,32g
# RAID Controller ############################################
Controller | No RAID controller detected
# Network Config #############################################
FIN Timeout | 60
Port Range | 60999
# Interface Statistics #######################################
interface rx_bytes rx_packets rx_errors tx_bytes tx_packets tx_errors
========= ========= ========== ========== ========== ========== ==========
lo 8000000 70000 0 8000000 70000 0
wlp0s20f3 1750000000 1750000 0 450000000 1000000 0
br-5bbb6abaea1c 0 0 0 0 0 0
docker0 9000000 70000 0 40000000 80000 0
veth311b798@if5 9000000 60000 0 9000000 70000 0
veth505c1de@if7 1000000 12500 0 30000000 20000 0
# Network Devices ############################################
Device Speed Duplex
========= ========= =========
br-5bbb6abaea1c Unknown! Unknown!
docker0 10000Mb/s Unknown!
wlp0s20f3
# Network Connections ########################################
Connections from remote IP addresses
3.67.131.16 1
3.126.186.102 1
3.233.54.64 1
18.197.249.189 7
23.61.80.242 1
34.117.237.239 1
35.168.140.53 4
35.174.127.31 2
35.174.188.51 1
35.186.227.140 1
52.59.193.28 1
52.73.62.51 1
54.146.182.72 1
54.244.16.100 1
82.202.226.23 1
84.38.188.87 1
93.184.220.29 2
108.139.241.22 1
108.157.4.6 1
108.177.119.109 1
108.177.126.188 1
108.177.127.108 1
127.0.0.1 2
142.132.213.154 1
149.96.232.184 2
149.154.167.51 1
157.240.9.53 1
162.125.19.9 1
162.125.19.131 1
162.220.4.198 1
172.17.0.2 4
172.67.8.157 1
173.194.69.108 1
173.194.79.109 2
185.166.143.25 1
198.57.27.221 1
Connections to local IP addresses
127.0.0.1 2
172.17.0.1 4
192.168.1.25 40
192.168.11.22 9
Connections to top 10 local ports
54208 1
55614 1
56862 1
57302 1
58452 1
58620 1
59664 1
59964 1
60640 1
60766 1
States of connections
CLOSE_WAIT 9
ESTABLISHED 40
LISTEN 30
TIME_WAIT 5
# Top Processes ##############################################
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
1836 root 20 0 1862488 39156 14168 S 6,2 0,1 6:31.69 contain+
5074 sveta 20 0 715908 14380 3312 S 6,2 0,0 2:32.24 vmalert
5511 sveta 20 0 5958132 675752 593316 S 6,2 2,1 23:18.64 Xorg
5582 sveta 20 0 992772 140588 5952 S 6,2 0,4 1:32.41 percona+
5583 sveta 20 0 992516 246840 5964 S 6,2 0,8 1:29.62 percona+
5819 sveta 20 0 5997200 367992 81312 S 6,2 1,1 42:19.42 gnome-s+
13430 sveta 20 0 1124,6g 172364 74192 S 6,2 0,5 16:06.71 wavebox
14886 sveta 20 0 1124,5g 138544 72440 S 6,2 0,4 0:32.75 wavebox
474260 sveta 20 0 5069828 795952 162860 S 6,2 2,4 33:45.76 thunder+
# Notable Processes ##########################################
PID OOM COMMAND
? ? sshd doesn't appear to be running
# Memory management ##########################################
Transparent huge pages are enabled.
# The End ####################################################

View File

@@ -0,0 +1,564 @@
Hostname | bm-support01.bm.int.percona.com
Uptime | 38 days, 1:34, 6 users, load average: 3.72, 4.25, 4.97
System | Dell Inc.; PowerEdge R520; vNot Specified (Rack Mount Chassis)
Service Tag | 6J6X9Y1
Platform | Linux
Release | CentOS Linux release 7.9.2009 (Core)
Kernel | 5.1.7-1.el7.elrepo.x86_64
Architecture | CPU = 64-bit, OS = 64-bit
Threading | NPTL 2.17
Compiler | GNU CC version 4.8.5 20150623 (Red Hat 4.8.5-44).
SELinux | Enforcing
Virtualized | No virtualization detected
# Processor ##################################################
Processors | physical = 2, cores = 12, virtual = 24, hyperthreading = yes
Speeds | 1x1348.923, 1x1456.632, 1x1494.384, 1x1522.090, 1x1525.616, 1x1544.334, 1x1580.156, 1x1604.659, 1x1620.505, 1x1649.961, 1x1667.597, 1x1780.690, 1x2084.880, 1x2109.796, 1x2194.581, 1x2211.704, 1x2246.397, 1x2265.713, 1x2307.331, 1x2320.030, 1x2345.087, 1x2385.594, 1x2389.942, 1x2452.398
Models | 24xIntel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz
Caches | 24x15360 KB
# Memory #####################################################
Total | 188.8G
Free | 72.1G
Used | physical = 32.0G, swap allocated = 4.0G, swap used = 217.0M, virtual = 32.2G
Shared | 4.2G
Buffers | 84.7G
Caches | 152.1G
Dirty | 7340 kB
UsedRSS | 22.9G
Swappiness | 1
DirtyPolicy | 20, 10
DirtyStatus | 0, 0
Numa Nodes | 2
Numa Policy | default
Preferred Node | current
Node Size Free CPUs
==== ==== ==== ====
node1 96762 MB 20083 MB 1 3 5 7 9 11 13 15 17 19 21 23
node0 96614 MB 53769 MB 0 2 4 6 8 10 12 14 16 18 20 22
Locator Size Speed Form Factor Type Type Detail
========= ======== ================= ============= ============= ===========
DIMM_A1 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_A2 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_A3 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_A4 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_A5 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_A6 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_B1 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_B2 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_B3 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_B4 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_B5 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
DIMM_B6 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered)
# Mounted Filesystems ########################################
Filesystem Size Used Type Opts Mountpoint
10.10.8.124:/srv/ftp 1.2T 53% nfs4 ro,relatime,vers=4.1,rsize=524288,wsize=524288,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=krb5p,clientaddr=10.10.8.141,local_lock=none,addr=10.10.8.124 /srv/ftp
/dev/mapper/bigdisk_crypt 5.5T 38% ext4 rw,relatime,seclabel /bigdisk
/dev/mapper/home_crypt 2.8T 63% ext4 rw,relatime,seclabel /home
/dev/mapper/root_crypt 99G 30% ext4 rw,relatime,seclabel /root
/dev/nvme0n1 367G 10% ext4 rw,relatime,seclabel /mnt/nvme
/dev/nvme1n1 367G 20% ext4 rw,relatime,seclabel /mnt/nvme2
/dev/sda1 190M 6% vfat rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=winnt,errors=remount-ro /boot/efi
/dev/sda2 1014M 26% xfs rw,relatime,seclabel,attr2,inode64,noquota /boot
/dev/sda3 150G 100% xfs rw,relatime,seclabel,attr2,inode64,noquota /opt
/dev/sda5 310G 53% xfs rw,relatime,seclabel,attr2,inode64,noquota /
devtmpfs 95G 0% devtmpfs rw,nosuid,seclabel,size=98996900k,nr_inodes=24749225,mode=755 /dev
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged
overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,seclabel /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /var/snap/lxd/common/ns
tmpfs 1.0M 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /var/snap/lxd/common/ns
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10006
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10006
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10006
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10008
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10008
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10008
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10014
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10014
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10014
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10045
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10045
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10045
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10078
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10078
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10078
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10125
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10125
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10125
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10201
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10201
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10201
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10205
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10205
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10205
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600026
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600026
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600026
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600330
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600330
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600330
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600334
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600334
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600334
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600366
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600366
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600366
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600371
tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600371
tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600371
tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /dev/shm
tmpfs 95G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /dev/shm
tmpfs 95G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /dev/shm
tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /sys/fs/cgroup
tmpfs 95G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /sys/fs/cgroup
tmpfs 95G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /sys/fs/cgroup
tmpfs 95G 5% tmpfs rw,nosuid,nodev,seclabel /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run
tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run
tmpfs 95G 5% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run
tmpfs 95G 5% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run
# Disk Schedulers And Queue Size #############################
dm-0 | 128
dm-1 | 128
dm-2 | 128
dm-3 | 128
dm-4 | 128
dm-5 | 128
dm-6 | 128
dm-7 | 128
nvme0n1 | [none] 1023
nvme1n1 | [none] 1023
sda | [mq-deadline] 256
sdb | [mq-deadline] 256
sdc | [mq-deadline] 256
sr0 | [mq-deadline] 64
# Disk Partioning ############################################
Device Type Start End Size
============ ==== ========== ========== ==================
/dev/dm-0 Disk 3032246910976
/dev/dm-1 Disk 37580963840
/dev/dm-2 Disk 10737418240
/dev/dm-3 Disk 107374182400
/dev/dm-4 Disk 107374182400
/dev/dm-5 Disk 6000065118208
/dev/dm-6 Disk 107372085248
/dev/dm-7 Disk 3032244813824
/dev/nvme0n1 Disk 400088457216
/dev/nvme1n1 Disk 400088457216
/dev/sda Disk 499558383616
/dev/sdb Disk 3999688294400
/dev/sdc Disk 6000069312512
# Kernel Inode State #########################################
dentry-state | 10194137 9907146 45 0 2973650 0
file-nr | 27248 0 19768804
inode-nr | 8232199 1009287
# LVM Volumes ################################################
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
home raid10 -wi-ao---- <2.76t
root raid10 -wi-ao---- 100.00g
testlv raid10 -wi-a----- 10.00g
tokutest1 raid10 -wi-a----- 35.00g
vinicius-test raid10 -wi-a----- 100.00g
# LVM Volume Groups ##########################################
VG VSize VFree
raid10 <3.55t 562.86g
# RAID Controller ############################################
Controller | Broadcom / LSI MegaRAID SAS 2208 [Thunderbolt] (rev 05)
# Network Config #############################################
Controller | Broadcom Inc. and subsidiaries NetXtreme BCM5720 2-port Gigabit Ethernet PCIe
Controller | Broadcom Inc. and subsidiaries NetXtreme BCM5720 2-port Gigabit Ethernet PCIe
FIN Timeout | 30
Port Range | 60999
# Interface Statistics #######################################
interface rx_bytes rx_packets rx_errors tx_bytes tx_packets tx_errors
========= ========= ========== ========== ========== ========== ==========
lo 300000000000 600000000 0 300000000000 600000000 0
em1 125000000000 175000000 0 90000000000 125000000 0
em2 400000000 5000000 0 225 2 0
bond0 125000000000 175000000 0 90000000000 125000000 0
virbr0 0 0 0 0 0 0
virbr0-nic 0 0 0 0 0 0
br-5f8d81e2374e 0 0 0 0 0 0
docker0 3000000000 10000000 0 20000000000 15000000 0
br-294661236c88 0 0 0 0 0 0
vethe8b73084@if266 2250000 35000 0 500000000 90000 0
veth1a2f3a50@if268 250000000 2000000 0 500000000 2000000 0
vethb2e8fb78@if270 250000000 2000000 0 500000000 2000000 0
vethc33cb528@if272 200000000 1750000 0 500000000 1750000 0
vethc52473d4@if274 500000000 45000 0 100000000 70000 0
vethf5136d77@if276 1000000 15000 0 175000000 30000 0
vethfa2d922@if20 70000000 450000 0 450000000 1000000 0
veth046457e1@if278 1250000 17500 0 175000000 35000 0
veth522c3e56@if280 450000 6000 0 35000000 9000 0
vethc532c32b@if282 250000 3500 0 25000000 6000 0
vboxnet12 0 0 0 0 0 0
vboxnet18 0 0 0 0 0 0
vboxnet19 0 0 0 0 0 0
vboxnet20 0 0 0 0 0 0
veth67e3da0@if145 25000000 300000 0 1750000000 500000 0
vboxnet0 0 0 0 0 0 0
vboxnet21 0 0 0 0 0 0
vboxnet24 0 0 0 0 0 0
vboxnet25 0 0 0 25000 250 0
vboxnet3 0 0 0 0 0 0
vboxnet4 0 0 0 0 0 0
vethaa8f4de@if153 2500000000 6000000 0 10000000000 8000000 0
lxdbr0 100000000 1500000 0 7000000000 1750000 0
veth0bd575f6@if156 400000 4000 0 3500000 50000 0
veth1e01ee50@if158 400000 4000 0 3500000 50000 0
veth07d7db6b@if160 400000 4000 0 3500000 50000 0
veth12219f8c@if176 400000 4000 0 3500000 50000 0
vethb9d2af0d@if178 400000 4000 0 3500000 50000 0
veth0c948a7c@if180 400000 4000 0 3500000 50000 0
vethad45a55a@if182 400000 4000 0 3500000 50000 0
veth3bd42127@if184 400000 4000 0 3500000 50000 0
vetha67e3445@if186 400000 4000 0 3500000 50000 0
veth57871859@if188 400000 4000 0 3500000 50000 0
veth61f76055@if190 400000 4000 0 3500000 50000 0
veth67de6880@if192 1250000 12500 0 3500000 50000 0
veth45fa2bdb@if208 400000 4000 0 3500000 50000 0
vethce7b9a4d@if218 2000000 20000 0 60000000 60000 0
veth19c266ca@if220 400000 4000 0 3500000 50000 0
veth140b78c8@if224 450000 5000 0 3500000 50000 0
veth328abad5@if226 600000 7000 0 3500000 60000 0
veth125aed80@if228 500000 5000 0 3500000 50000 0
vetha245bad8@if230 25000000 400000 0 2500000000 500000 0
vethe8577b3d@if244 1250000 17500 0 150000000 60000 0
# Network Devices ############################################
Device Speed Duplex
========= ========= =========
em1 1000Mb/s Full
vboxnet24 10Mb/s Full
em2 1000Mb/s Full
vboxnet25 10Mb/s Full
br-294661236c88
bond0 1000Mb/s Full
virbr0-nic 10Mb/s Full
vboxnet18 10Mb/s Full
vboxnet19 10Mb/s Full
vboxnet0 10Mb/s Full
lxdbr0
vboxnet3 10Mb/s Full
vboxnet4 10Mb/s Full
vboxnet20 10Mb/s Full
docker0
br-5f8d81e2374e
virbr0
vboxnet21 10Mb/s Full
vboxnet12 10Mb/s Full
# Network Connections ########################################
Connections from remote IP addresses
10.10.1.31 1
10.10.4.99 60
10.10.8.124 1
34.83.110.184 1
35.164.176.181 1
49.206.39.19 1
127.0.0.1 800
172.17.0.3 15
185.117.120.39 1
186.48.240.119 2
189.4.76.225 2
208.85.240.29 1
Connections to local IP addresses
10.10.8.141 70
127.0.0.1 800
172.17.0.1 15
Connections to top 10 local ports
10050 60
37018 25
37022 25
37023 20
37024 20
37025 25
37026 20
37027 20
37028 25
37029 20
States of connections
CLOSE_WAIT 2
ESTABLISHED 800
FIN_WAIT2 1
LISTEN 100
TIME_WAIT 70
# Top Processes ##############################################
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
21837 root 20 0 118472 5284 1912 R 76.9 0.0 6876:45 bash
22324 root 20 0 118472 5256 1912 R 76.9 0.0 6930:46 bash
27315 root 20 0 173656 6052 4560 R 15.4 0.0 0:00.07 top
30550 deepak.+ 20 0 1832784 106312 35024 S 7.7 0.1 7:24.20 mongod
11 root 20 0 0 0 0 I 3.8 0.0 218:16.07 rcu_sched
313 grafana 20 0 2853776 44376 15448 S 3.8 0.0 58:38.07 grafana-se+
4362 viniciu+ 20 0 2056504 198048 33000 S 3.8 0.1 66:13.66 mongod
6837 viniciu+ 20 0 2020216 124284 33192 S 3.8 0.1 55:09.11 mongod
7827 mydba 20 0 2329572 680728 11272 S 3.8 0.3 1644:16 victoriame+
# Notable Processes ##########################################
PID OOM COMMAND
2061 +0 sshd
42899 -17 sshd
44001 -17 sshd
44034 -17 sshd
48761 -17 sshd
# Memory management ##########################################
Transparent huge pages are enabled.
# The End ####################################################

View File

@@ -29,6 +29,72 @@
#
# Exits 0 on success, else 1 on warnings and errors.
# ############################################################################
# Parsing options
# ############################################################################
usage()
{
echo "This script writes/updates the user documentation.
Usage: write-user-docs [ -h ] [ -p ] [ -t ] [TOOLS]
If no option (html, pdf) specified, builds both html and pdf.
-h builds docs in html
-t builds docs in html with new theme
-p builds pdf doc
TOOLS: If no tools are specified on the command line, then docs for bin/* are written (plus all the extra sections).
"
exit 2
}
TEMP=$(getopt hpt $*)
if [ $? -ne 0 ]; then
usage
fi
eval set -- "$TEMP"
unset TEMP
while true; do
case "$1" in
-h)
MAKE_HTML="true"
MAKE_THTML="false"
shift
continue
;;
-t)
MAKE_THTML="true"
MAKE_HTML="false"
shift
continue
;;
-p)
MAKE_PDF="true"
shift
continue
;;
--)
shift
break
;;
*)
echo 'Internal error!' >&2
usage
;;
esac
done
# if both specified or none, build both
if [[ "$MAKE_HTML" == "$MAKE_PDF" ]]; then
MAKE_HTML="true"
MAKE_PDF="true"
fi
# ############################################################################
# Standard startup, find the branch's root directory
# ############################################################################
@@ -168,7 +234,19 @@ fi
BUILD=${BUILD:-1}
if [ $BUILD -eq 1 ]; then
cd $BRANCH/config/sphinx-build
make html && make latexpdf
if [ "${MAKE_HTML}" = "true" ]; then
make html
fi
if [ "${MAKE_PDF}" = "true" ]; then
make latexpdf
fi
if [ "${MAKE_THTML}" = "true" ]; then
make thtml
fi
exit_status=$(( exit_status | $? ))
fi