[lxc-devel] [lxd/master] lxc/list: Add memory and disk columns

stgraber on Github lxc-bot at linuxcontainers.org
Thu May 21 15:56:51 UTC 2020


A non-text attachment was scrubbed...
Name: not available
Type: text/x-mailbox
Size: 301 bytes
Desc: not available
URL: <http://lists.linuxcontainers.org/pipermail/lxc-devel/attachments/20200521/5544e48c/attachment-0001.bin>
-------------- next part --------------
From b138b97e6e97676737d7b988035654c3c9da5ea3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 21 May 2020 11:55:29 -0400
Subject: [PATCH 1/2] lxc/list: Add disk and memory columns
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Closes #7323

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 lxc/list.go | 29 ++++++++++++++++++++++++++---
 1 file changed, 26 insertions(+), 3 deletions(-)

diff --git a/lxc/list.go b/lxc/list.go
index 5ad36c8161..fb67bc5356 100644
--- a/lxc/list.go
+++ b/lxc/list.go
@@ -17,6 +17,7 @@ import (
 	"github.com/lxc/lxd/shared/api"
 	cli "github.com/lxc/lxd/shared/cmd"
 	"github.com/lxc/lxd/shared/i18n"
+	"github.com/lxc/lxd/shared/units"
 )
 
 type column struct {
@@ -81,7 +82,9 @@ Pre-defined column shorthand chars:
   b - Storage pool
   c - Creation date
   d - Description
+  D - disk usage
   l - Last used date
+  m - Memory usage
   n - Name
   N - Number of Processes
   p - PID of the instance's init process
@@ -421,9 +424,14 @@ func (c *cmdList) parseColumns(clustered bool) ([]column, bool, error) {
 		'4': {i18n.G("IPV4"), c.IP4ColumnData, true, false},
 		'6': {i18n.G("IPV6"), c.IP6ColumnData, true, false},
 		'a': {i18n.G("ARCHITECTURE"), c.ArchitectureColumnData, false, false},
+		'b': {i18n.G("STORAGE POOL"), c.StoragePoolColumnData, false, false},
 		'c': {i18n.G("CREATED AT"), c.CreatedColumnData, false, false},
 		'd': {i18n.G("DESCRIPTION"), c.descriptionColumnData, false, false},
+		'D': {i18n.G("DISK USAGE"), c.diskUsageColumnData, true, false},
+		'f': {i18n.G("BASE IMAGE"), c.baseImageColumnData, false, false},
+		'F': {i18n.G("BASE IMAGE"), c.baseImageFullColumnData, false, false},
 		'l': {i18n.G("LAST USED AT"), c.LastUsedColumnData, false, false},
+		'm': {i18n.G("MEMORY USAGE"), c.memoryUsageColumnData, true, false},
 		'n': {i18n.G("NAME"), c.nameColumnData, false, false},
 		'N': {i18n.G("PROCESSES"), c.NumberOfProcessesColumnData, true, false},
 		'p': {i18n.G("PID"), c.PIDColumnData, true, false},
@@ -431,9 +439,6 @@ func (c *cmdList) parseColumns(clustered bool) ([]column, bool, error) {
 		'S': {i18n.G("SNAPSHOTS"), c.numberSnapshotsColumnData, false, true},
 		's': {i18n.G("STATE"), c.statusColumnData, false, false},
 		't': {i18n.G("TYPE"), c.typeColumnData, false, false},
-		'b': {i18n.G("STORAGE POOL"), c.StoragePoolColumnData, false, false},
-		'f': {i18n.G("BASE IMAGE"), c.baseImageColumnData, false, false},
-		'F': {i18n.G("BASE IMAGE"), c.baseImageFullColumnData, false, false},
 	}
 
 	if c.flagFast {
@@ -650,6 +655,24 @@ func (c *cmdList) IP6ColumnData(cInfo api.InstanceFull) string {
 	return ""
 }
 
+func (c *cmdList) memoryUsageColumnData(cInfo api.InstanceFull) string {
+	if cInfo.IsActive() && cInfo.State != nil && cInfo.State.Memory.Usage > 0 {
+		return units.GetByteSizeString(cInfo.State.Memory.Usage, 2)
+	}
+
+	return ""
+}
+
+func (c *cmdList) diskUsageColumnData(cInfo api.InstanceFull) string {
+	rootDisk, _, _ := shared.GetRootDiskDevice(cInfo.ExpandedDevices)
+
+	if cInfo.State != nil && cInfo.State.Disk != nil && cInfo.State.Disk[rootDisk].Usage > 0 {
+		return units.GetByteSizeString(cInfo.State.Disk[rootDisk].Usage, 2)
+	}
+
+	return ""
+}
+
 func (c *cmdList) typeColumnData(cInfo api.InstanceFull) string {
 	if cInfo.Type == "" {
 		cInfo.Type = "container"

From 56bbf329f997a5b5fcb79756d82027bb0f609349 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Thu, 21 May 2020 11:55:43 -0400
Subject: [PATCH 2/2] i18n: Update translation template
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 po/bg.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/de.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/el.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/es.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/fa.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/fi.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/fr.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/hi.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/id.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/it.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/ja.po      | 130 +++++++++++++++++++++++++++-----------------------
 po/ko.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/lxd.pot    | 118 ++++++++++++++++++++++++---------------------
 po/nb_NO.po   | 128 ++++++++++++++++++++++++++-----------------------
 po/nl.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/pa.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/pl.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/pt_BR.po   | 128 ++++++++++++++++++++++++++-----------------------
 po/ru.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/sl.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/sr.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/sv.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/te.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/tr.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/uk.po      | 128 ++++++++++++++++++++++++++-----------------------
 po/zh_Hans.po | 128 ++++++++++++++++++++++++++-----------------------
 26 files changed, 1791 insertions(+), 1529 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index 8182600ceb..ac076caa5c 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/de.po b/po/de.po
index d8cdc6f17d..3f70eea993 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2020-04-27 19:48+0000\n"
 "Last-Translator: Predatorix Phoenix <predatorix at web.de>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/linux-containers/"
@@ -367,7 +367,7 @@ msgstr "ALIAS"
 msgid "ALIASES"
 msgstr "ALIASES"
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr "ARCHITEKTUR"
 
@@ -526,7 +526,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "automatisches Update: %s"
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -605,7 +605,7 @@ msgstr ""
 msgid "CREATED"
 msgstr "ERSTELLT AM"
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr "ERSTELLT AM"
 
@@ -653,7 +653,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -661,7 +661,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -725,7 +725,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr "Spalten"
 
@@ -952,11 +952,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr "BESCHREIBUNG"
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -1044,7 +1048,7 @@ msgstr "Kein Zertifikat für diese Verbindung"
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -1056,8 +1060,8 @@ msgstr "Kein Zertifikat für diese Verbindung"
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1177,7 +1181,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1240,7 +1244,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1379,7 +1383,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1442,7 +1446,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1541,7 +1545,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1549,11 +1553,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1671,12 +1675,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr "Akzeptiere Zertifikat"
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1686,17 +1690,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr "Ungültiges Ziel %s"
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1744,11 +1748,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1857,12 +1861,12 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "List instance file templates"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 #, fuzzy
 msgid "List instances"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 #, fuzzy
 msgid ""
 "List instances\n"
@@ -1907,7 +1911,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -2000,6 +2006,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2211,7 +2221,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 #, fuzzy
 msgid "Missing project name"
 msgstr "Profilname kann nicht geändert werden"
@@ -2289,8 +2299,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr "der Name des Ursprung Containers muss angegeben werden"
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2303,8 +2313,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2444,15 +2454,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2615,7 +2625,7 @@ msgstr "Profil %s erstellt\n"
 msgid "Project %s deleted"
 msgstr "Profil %s gelöscht\n"
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, fuzzy, c-format
 msgid "Project %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
@@ -2790,7 +2800,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr "Fehlerhafte Profil URL %s"
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 #, fuzzy
 msgid "Rename projects"
 msgstr "Fehlerhafte Profil URL %s"
@@ -2874,7 +2884,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2886,7 +2896,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2898,11 +2908,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2996,12 +3006,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -3115,7 +3125,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -3301,7 +3311,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -3313,7 +3323,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3491,7 +3501,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3506,7 +3516,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3539,7 +3549,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Profil %s erstellt\n"
@@ -3638,8 +3648,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr "Zustand des laufenden Containers sichern oder nicht"
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3788,7 +3798,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -4133,7 +4143,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -4273,7 +4283,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4598,7 +4608,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4664,7 +4674,7 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4744,7 +4754,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4811,7 +4821,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 #, fuzzy
 msgid "switch [<remote>:]<project>"
 msgstr ""
@@ -4864,7 +4874,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
diff --git a/po/el.po b/po/el.po
index 557073e229..8bf5a26ae2 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2017-02-14 08:00+0000\n"
 "Last-Translator: Simos Xenitellis <simos.65 at gmail.com>\n"
 "Language-Team: Greek <https://hosted.weblate.org/projects/linux-containers/"
@@ -242,7 +242,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -391,7 +391,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -468,7 +468,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -507,7 +507,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -515,7 +515,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -574,7 +574,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -781,11 +781,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -868,7 +872,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -880,8 +884,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -993,7 +997,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1051,7 +1055,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1181,7 +1185,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1240,7 +1244,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1335,7 +1339,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1343,11 +1347,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1462,12 +1466,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1477,17 +1481,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1530,11 +1534,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1640,11 +1644,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1688,7 +1692,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1762,6 +1768,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1958,7 +1968,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2029,8 +2039,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2043,8 +2053,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2181,15 +2191,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2347,7 +2357,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2512,7 +2522,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2589,7 +2599,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2601,7 +2611,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2613,11 +2623,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2707,11 +2717,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2818,7 +2828,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2993,7 +3003,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -3005,7 +3015,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3176,7 +3186,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3191,7 +3201,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3221,7 +3231,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3309,8 +3319,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3434,7 +3444,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3682,7 +3692,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3814,7 +3824,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4083,7 +4093,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4119,7 +4129,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4171,7 +4181,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4215,7 +4225,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4260,7 +4270,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/es.po b/po/es.po
index 50a6f1a797..85171bfc0b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Spanish <https://hosted.weblate.org/projects/linux-containers/"
@@ -364,7 +364,7 @@ msgstr "ALIAS"
 msgid "ALIASES"
 msgstr "ALIASES"
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr "ARQUITECTURA"
 
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Auto actualización: %s"
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -591,7 +591,7 @@ msgstr ""
 msgid "CREATED"
 msgstr "CREADO"
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr "CREADO EN"
 
@@ -631,7 +631,7 @@ msgstr "No se peude leer desde stdin: %s"
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -640,7 +640,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr "No se puede especificar un remote diferente para renombrar."
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -700,7 +700,7 @@ msgstr "Nombre del Miembro del Cluster"
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr "Columnas"
 
@@ -915,11 +915,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr "DESCRIPCIÓN"
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr "CONTROLADOR"
@@ -1003,7 +1007,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -1015,8 +1019,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1127,7 +1131,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1185,7 +1189,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1318,7 +1322,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1377,7 +1381,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1472,7 +1476,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1480,11 +1484,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1601,12 +1605,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1616,17 +1620,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1669,11 +1673,11 @@ msgstr "Cacheado: %s"
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1780,12 +1784,12 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 #, fuzzy
 msgid "List instances"
 msgstr "Aliases:"
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1829,7 +1833,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1903,6 +1909,10 @@ msgstr "Cacheado: %s"
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2099,7 +2109,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 #, fuzzy
 msgid "Missing project name"
 msgstr "Nombre del contenedor es: %s"
@@ -2172,8 +2182,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2186,8 +2196,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2323,15 +2333,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2492,7 +2502,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2658,7 +2668,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2737,7 +2747,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2749,7 +2759,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2761,11 +2771,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2855,11 +2865,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2966,7 +2976,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -3141,7 +3151,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -3153,7 +3163,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3324,7 +3334,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3339,7 +3349,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3369,7 +3379,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3457,8 +3467,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3586,7 +3596,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3844,7 +3854,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3978,7 +3988,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4253,7 +4263,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4292,7 +4302,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4348,7 +4358,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4396,7 +4406,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 #, fuzzy
 msgid "switch [<remote>:]<project>"
 msgstr "No se puede proveer el nombre del container a la lista"
@@ -4443,7 +4453,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/fa.po b/po/fa.po
index fd7dbbfe1b..3187b3fd46 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/fi.po b/po/fi.po
index 1fd5f6f13f..44e8d5da1c 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/fr.po b/po/fr.po
index dd6b0c76a7..628ef7449c 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2019-01-04 18:07+0000\n"
 "Last-Translator: Deleted User <noreply+12102 at weblate.org>\n"
 "Language-Team: French <https://hosted.weblate.org/projects/linux-containers/"
@@ -364,7 +364,7 @@ msgstr "ALIAS"
 msgid "ALIASES"
 msgstr "ALIAS"
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr "ARCHITECTURE"
 
@@ -521,7 +521,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Mise à jour auto. : %s"
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -599,7 +599,7 @@ msgstr ""
 msgid "CREATED"
 msgstr "CRÉÉ À"
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr "CRÉÉ À"
 
@@ -641,7 +641,7 @@ msgstr "Impossible de lire depuis stdin : %s"
 msgid "Can't remove the default remote"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -649,7 +649,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -711,7 +711,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr "Colonnes"
 
@@ -961,11 +961,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr "PILOTE"
@@ -1055,7 +1059,7 @@ msgstr "Copie de l'image : %s"
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -1067,8 +1071,8 @@ msgstr "Copie de l'image : %s"
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1183,7 +1187,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr "ÉPHÉMÈRE"
 
@@ -1247,7 +1251,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1393,7 +1397,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 #, fuzzy
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr "Mode rapide (identique à --columns=nsacPt"
@@ -1455,7 +1459,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1557,7 +1561,7 @@ msgstr "Pid : %d"
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1565,11 +1569,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr "IPv4"
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr "IPv6"
 
@@ -1693,12 +1697,12 @@ msgstr "Schème d'URL invalide \"%s\" in \"%s\""
 msgid "Invalid certificate"
 msgstr "Certificat invalide"
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, fuzzy, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr "Clé de configuration invalide"
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1708,17 +1712,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr "Cible invalide %s"
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1762,11 +1766,11 @@ msgstr "Créé : %s"
 msgid "Keep the image up to date after initial copy"
 msgstr "Garder l'image à jour après la copie initiale"
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr "DERNIÈRE UTILISATION À"
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1875,12 +1879,12 @@ msgstr "Création du conteneur"
 msgid "List instance file templates"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 #, fuzzy
 msgid "List instances"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 #, fuzzy
 msgid ""
 "List instances\n"
@@ -1925,7 +1929,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -2059,6 +2065,10 @@ msgstr "Créé : %s"
 msgid "MANAGED"
 msgstr "GÉRÉ"
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2271,7 +2281,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 #, fuzzy
 msgid "Missing project name"
 msgstr "Nom de l'ensemble de stockage"
@@ -2351,8 +2361,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr "Vous devez fournir le nom d'un conteneur pour : "
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr "NOM"
@@ -2365,8 +2375,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr "NON"
 
@@ -2513,15 +2523,15 @@ msgstr "Surcharger le mode terminal (auto, interactif ou non-interactif)"
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr "PID"
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr "PROFILS"
 
@@ -2685,7 +2695,7 @@ msgstr "Profil %s créé"
 msgid "Project %s deleted"
 msgstr "Profil %s supprimé"
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, fuzzy, c-format
 msgid "Project %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
@@ -2860,7 +2870,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 #, fuzzy
 msgid "Rename projects"
 msgstr "Créé : %s"
@@ -2945,7 +2955,7 @@ msgstr ""
 msgid "SIZE"
 msgstr "TAILLE"
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr "INSTANTANÉS"
 
@@ -2957,7 +2967,7 @@ msgstr "SOURCE"
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr "ÉTAT"
 
@@ -2970,11 +2980,11 @@ msgstr "STATIQUE"
 msgid "STATUS"
 msgstr "ÉTAT"
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr "ENSEMBLE DE STOCKAGE"
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 #, fuzzy
 msgid "STORAGE VOLUMES"
 msgstr "ENSEMBLE DE STOCKAGE"
@@ -3071,12 +3081,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -3193,7 +3203,7 @@ msgstr "Afficher la configuration étendue"
 msgid "Show profile configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 #, fuzzy
 msgid "Show project options"
 msgstr "Afficher la configuration étendue"
@@ -3381,7 +3391,7 @@ msgstr "Swap (courant)"
 msgid "Swap (peak)"
 msgstr "Swap (pointe)"
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 #, fuzzy
 msgid "Switch the current project"
 msgstr "impossible de supprimer le serveur distant par défaut"
@@ -3395,7 +3405,7 @@ msgstr "impossible de supprimer le serveur distant par défaut"
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr "TYPE"
@@ -3579,7 +3589,7 @@ msgstr "DATE DE PUBLICATION"
 msgid "URL"
 msgstr "URL"
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr "UTILISÉ PAR"
@@ -3594,7 +3604,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3629,7 +3639,7 @@ msgstr "Clé de configuration invalide"
 msgid "Unset profile configuration keys"
 msgstr "Clé de configuration invalide"
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Clé de configuration invalide"
@@ -3726,8 +3736,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr "Réaliser ou pas l'instantané de l'état de fonctionnement du conteneur"
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr "OUI"
 
@@ -3880,7 +3890,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 #, fuzzy
 msgid "current"
 msgstr "Swap (courant)"
@@ -4254,7 +4264,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -4404,7 +4414,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4750,7 +4760,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4822,7 +4832,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4914,7 +4924,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4991,7 +5001,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 #, fuzzy
 msgid "switch [<remote>:]<project>"
 msgstr "impossible de supprimer le serveur distant par défaut"
@@ -5041,7 +5051,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 2107561620..89400c67b6 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/id.po b/po/id.po
index ce52cacca0..2c3e11fed8 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/it.po b/po/it.po
index ccab3151ec..befd2e3af8 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Luigi Operoso <brokenpip3 at gmail.com>\n"
 "Language-Team: Italian <https://hosted.weblate.org/projects/linux-containers/"
@@ -355,7 +355,7 @@ msgstr "ALIAS"
 msgid "ALIASES"
 msgstr "ALIAS"
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr "ARCHITETTURA"
 
@@ -504,7 +504,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Aggiornamento automatico: %s"
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -581,7 +581,7 @@ msgstr ""
 msgid "CREATED"
 msgstr "CREATO IL"
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr "CREATO IL"
 
@@ -620,7 +620,7 @@ msgstr "Impossible leggere da stdin: %s"
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -628,7 +628,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -688,7 +688,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr "Colonne"
 
@@ -902,11 +902,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr "DESCRIZIONE"
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr "DRIVER"
@@ -991,7 +995,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -1003,8 +1007,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1115,7 +1119,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1306,7 +1310,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1366,7 +1370,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1461,7 +1465,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1469,11 +1473,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1590,12 +1594,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1605,17 +1609,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr "Proprietà errata: %s"
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1659,11 +1663,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1771,12 +1775,12 @@ msgstr "Creazione del container in corso"
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 #, fuzzy
 msgid "List instances"
 msgstr "Creazione del container in corso"
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1820,7 +1824,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1894,6 +1900,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2093,7 +2103,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 #, fuzzy
 msgid "Missing project name"
 msgstr "Il nome del container è: %s"
@@ -2165,8 +2175,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2179,8 +2189,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2316,15 +2326,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2484,7 +2494,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2652,7 +2662,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2731,7 +2741,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2743,7 +2753,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2755,11 +2765,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2849,11 +2859,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2960,7 +2970,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -3137,7 +3147,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -3149,7 +3159,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3321,7 +3331,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3336,7 +3346,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3367,7 +3377,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3455,8 +3465,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3586,7 +3596,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3844,7 +3854,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3978,7 +3988,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4253,7 +4263,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4292,7 +4302,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4348,7 +4358,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4396,7 +4406,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 #, fuzzy
 msgid "switch [<remote>:]<project>"
 msgstr "Creazione del container in corso"
@@ -4443,7 +4453,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/ja.po b/po/ja.po
index be062df948..7e873fd1a8 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: LXD\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2020-03-27 12:50+0000\n"
 "Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -358,7 +358,7 @@ msgstr "ALIAS"
 msgid "ALIASES"
 msgstr "ALIASES"
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr "ARCHITECTURE"
 
@@ -519,7 +519,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "自動更新: %s"
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr "BASE IMAGE"
 
@@ -596,7 +596,7 @@ msgstr "CPUs (%s):"
 msgid "CREATED"
 msgstr "CREATED"
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr "CREATED AT"
 
@@ -636,7 +636,7 @@ msgstr "標準入力から読み込めません: %s"
 msgid "Can't remove the default remote"
 msgstr "デフォルトのリモートは削除できません"
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr "--fast と --columns は同時に指定できません"
 
@@ -644,7 +644,7 @@ msgstr "--fast と --columns は同時に指定できません"
 msgid "Can't specify a different remote for rename"
 msgstr "リネームの場合は異なるリモートを指定できません"
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr "クラスタでない場合はカラムとして L は指定できません"
 
@@ -703,7 +703,7 @@ msgstr "クラスタメンバ名"
 msgid "Clustering enabled"
 msgstr "クラスタリングが有効になりました"
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr "カラムレイアウト"
 
@@ -922,11 +922,15 @@ msgstr "現在の VF 数: %d"
 msgid "DATABASE"
 msgstr "DATABASE"
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr "DRIVER"
@@ -1009,7 +1013,7 @@ msgstr "ストレージボリュームを削除します"
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -1021,8 +1025,8 @@ msgstr "ストレージボリュームを削除します"
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1133,7 +1137,7 @@ msgstr "進捗情報を表示しません"
 msgid "Driver: %v (%v)"
 msgstr "ドライバ: %v (%v)"
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr "EPHEMERAL"
 
@@ -1193,7 +1197,7 @@ msgstr "ストレージプールの設定をYAMLで編集します"
 msgid "Edit storage volume configurations as YAML"
 msgstr "ストレージボリュームの設定をYAMLで編集します"
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1348,7 +1352,7 @@ msgstr "エイリアス %s の削除に失敗しました"
 msgid "Failed to walk path for %s: %s"
 msgstr "パス %s にアクセスできませんでした: %s"
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr "Fast モード (--columns=nsacPt と同じ)"
 
@@ -1422,7 +1426,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1517,7 +1521,7 @@ msgstr "ID: %d"
 msgid "ID: %s"
 msgstr "ID: %s"
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr "IMAGES"
 
@@ -1525,11 +1529,11 @@ msgstr "IMAGES"
 msgid "IP ADDRESS"
 msgstr "IP ADDRESS"
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr "IPV4"
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr "IPV6"
 
@@ -1649,12 +1653,12 @@ msgstr "不正な URL スキーム \"%s\" (\"%s\" 内)"
 msgid "Invalid certificate"
 msgstr "不正な証明書です"
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr "'%s' は正しくない設定項目 (key) です (%s 中の)"
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1665,19 +1669,19 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr "不正なフォーマット %q"
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 "'%s' は最大幅の値として不正です (-1 もしくは 0 もしくは正の整数でなくてはなり"
 "ません) ('%s' 中の)"
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr "'%s' は最大幅の値として不正です (整数でなくてはなりません) ('%s' 中の)"
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1721,11 +1725,11 @@ msgstr "IsSM: %s (%s)"
 msgid "Keep the image up to date after initial copy"
 msgstr "最初にコピーした後も常にイメージを最新の状態に保つ"
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr "LAST USED AT"
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr "LOCATION"
@@ -1859,11 +1863,12 @@ msgstr "インスタンスのデバイスを一覧表示します"
 msgid "List instance file templates"
 msgstr "インスタンスのファイルテンプレートを一覧表示します"
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr "インスタンスを一覧表示します"
 
-#: lxc/list.go:44
+#: lxc/list.go:45
+#, fuzzy
 msgid ""
 "List instances\n"
 "\n"
@@ -1907,7 +1912,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -2042,6 +2049,11 @@ msgstr "MAD: %s (%s)"
 msgid "MANAGED"
 msgstr "MANAGED"
 
+#: lxc/list.go:434
+#, fuzzy
+msgid "MEMORY USAGE"
+msgstr "MESSAGE"
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr "MESSAGE"
@@ -2253,7 +2265,7 @@ msgid "Missing profile name"
 msgstr "プロファイル名を指定する必要があります"
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr "プロジェクト名を指定する必要があります"
 
@@ -2329,8 +2341,8 @@ msgstr "ディレクトリからのインポートは root で実行する必要
 msgid "Must supply instance name for: "
 msgstr "インスタンス名を指定する必要があります: "
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr "NAME"
@@ -2343,8 +2355,8 @@ msgstr "NIC:"
 msgid "NICs:"
 msgstr "NICs:"
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr "NO"
 
@@ -2480,15 +2492,15 @@ msgstr "ターミナルモードを上書きします (auto, interactive, non-in
 msgid "PCI address: %v"
 msgstr "PCI アドレス: %v"
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr "PID"
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr "PROCESSES"
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr "PROFILES"
 
@@ -2646,7 +2658,7 @@ msgstr "プロジェクト %s を作成しました"
 msgid "Project %s deleted"
 msgstr "プロジェクト %s を削除しました"
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr "プロジェクト名 %s を %s に変更しました"
@@ -2811,7 +2823,7 @@ msgstr "ネットワーク名を変更します"
 msgid "Rename profiles"
 msgstr "プロファイル名を変更します"
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr "プロジェクト名を変更します"
 
@@ -2896,7 +2908,7 @@ msgstr "すべてのインスタンスに対してコマンドを実行します
 msgid "SIZE"
 msgstr "SIZE"
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr "SNAPSHOTS"
 
@@ -2908,7 +2920,7 @@ msgstr "SOURCE"
 msgid "SR-IOV information:"
 msgstr "SR-IOV 情報:"
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr "STATE"
 
@@ -2920,11 +2932,11 @@ msgstr "STATIC"
 msgid "STATUS"
 msgstr "STATUS"
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr "STORAGE POOL"
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr "STORAGE VOLUMES"
 
@@ -3034,11 +3046,11 @@ msgstr ""
 "後方互換性のため、単一の設定を行う場合は次の形式でも設定できます:\n"
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr "プロジェクトの設定項目を設定します"
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -3157,7 +3169,7 @@ msgstr "ネットワークの設定を表示します"
 msgid "Show profile configurations"
 msgstr "プロファイルの設定を表示します"
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr "プロジェクトの設定を表示します"
 
@@ -3332,7 +3344,7 @@ msgstr "Swap (現在値)"
 msgid "Swap (peak)"
 msgstr "Swap (ピーク)"
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr "現在のプロジェクトを切り替えます"
 
@@ -3344,7 +3356,7 @@ msgstr "デフォルトのリモートを切り替えます"
 msgid "TARGET"
 msgstr "TARGET"
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr "TYPE"
@@ -3538,7 +3550,7 @@ msgstr "UPLOAD DATE"
 msgid "URL"
 msgstr "URL"
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr "USED BY"
@@ -3553,7 +3565,7 @@ msgstr "UUID: %v"
 msgid "Unable to create a temporary file: %v"
 msgstr "テンポラリファイルを作成できません: %v"
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr "未知のカラム名の短縮形です '%c' ('%s' 中)"
@@ -3583,7 +3595,7 @@ msgstr "ネットワークの設定を削除します"
 msgid "Unset profile configuration keys"
 msgstr "プロファイルの設定を削除します"
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr "プロジェクトの設定を削除します"
 
@@ -3677,8 +3689,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr "インスタンスの稼動状態のスナップショットを取得するかどうか"
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr "YES"
 
@@ -3807,7 +3819,7 @@ msgstr "create [<remote>:]<profile>"
 msgid "create [<remote>:]<project>"
 msgstr "create [<remote>:]<project>"
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr "現在値"
 
@@ -4060,7 +4072,7 @@ msgstr "list"
 msgid "list [<remote>:]"
 msgstr "list [<remote>:]"
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr "list [<remote>:] [<filter>...]"
 
@@ -4241,7 +4253,7 @@ msgstr ""
 "lxc launch ubuntu:18.04 u1 < config.yaml\n"
 "    config.yaml の設定を使ってインスタンスを作成し、起動します"
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4585,7 +4597,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr "rename [<remote>:]<profile> <new-name>"
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr "rename [<remote>:]<project> <new-name>"
 
@@ -4621,7 +4633,7 @@ msgstr "set [<remote>:]<pool> <volume> <key>=<value>..."
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr "set [<remote>:]<profile> <key><value>..."
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr "set [<remote>:]<project> <key>=<value>..."
 
@@ -4673,7 +4685,7 @@ msgstr "show [<remote>:]<pool> <volume>[/<snapshot>]"
 msgid "show [<remote>:]<profile>"
 msgstr "show [<remote>:]<profile>"
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr "show [<remote>:]<project>"
 
@@ -4717,7 +4729,7 @@ msgstr "storage"
 msgid "switch <remote>"
 msgstr "switch <remote>"
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr "switch [<remote>:] <project>"
 
@@ -4762,7 +4774,7 @@ msgstr "unset [<remote>:]<pool> <volume> <key>"
 msgid "unset [<remote>:]<profile> <key>"
 msgstr "unset [<remote>:]<profile> <key>"
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr "unset [<remote>:]<project> <key>"
 
diff --git a/po/ko.po b/po/ko.po
index 17f0766952..7af238cce7 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/lxd.pot b/po/lxd.pot
index 3f2e0eebb9..b1d1b6e014 100644
--- a/po/lxd.pot
+++ b/po/lxd.pot
@@ -7,7 +7,7 @@
 msgid   ""
 msgstr  "Project-Id-Version: lxd\n"
         "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-        "POT-Creation-Date: 2020-05-07 21:28-0400\n"
+        "POT-Creation-Date: 2020-05-21 11:55-0400\n"
         "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
         "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
         "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -229,7 +229,7 @@ msgstr  ""
 msgid   "ALIASES"
 msgstr  ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid   "ARCHITECTURE"
 msgstr  ""
 
@@ -374,7 +374,7 @@ msgstr  ""
 msgid   "Auto update: %s"
 msgstr  ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid   "BASE IMAGE"
 msgstr  ""
 
@@ -449,7 +449,7 @@ msgstr  ""
 msgid   "CREATED"
 msgstr  ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid   "CREATED AT"
 msgstr  ""
 
@@ -488,7 +488,7 @@ msgstr  ""
 msgid   "Can't remove the default remote"
 msgstr  ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid   "Can't specify --fast with --columns"
 msgstr  ""
 
@@ -496,7 +496,7 @@ msgstr  ""
 msgid   "Can't specify a different remote for rename"
 msgstr  ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid   "Can't specify column L when not clustered"
 msgstr  ""
 
@@ -545,7 +545,7 @@ msgstr  ""
 msgid   "Clustering enabled"
 msgstr  ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid   "Columns"
 msgstr  ""
 
@@ -746,10 +746,14 @@ msgstr  ""
 msgid   "DATABASE"
 msgstr  ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870 lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870 lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid   "DESCRIPTION"
 msgstr  ""
 
+#: lxc/list.go:430
+msgid   "DISK USAGE"
+msgstr  ""
+
 #: lxc/storage.go:560
 msgid   "DRIVER"
 msgstr  ""
@@ -810,7 +814,7 @@ msgstr  ""
 msgid   "Delete storage volumes"
 msgstr  ""
 
-#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144 lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153 lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421 lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452 lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261 lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507 lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681 lxc/config_metadata.go:27 lxc/config_metadata.go:52 lxc/config_metadata.go:174 lxc/config_template.go:28 lxc/config_template.go:65 lxc/config_template.go:108 lxc/config_template.go:150 lxc/config_template.go:236 lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57 lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:31 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:40 lxc/export.go:32 lxc/file.go:72 lxc/file.go:105 lxc/file.go:154 lxc/file.go:217 lxc/file.go:407 lxc/image.go:38 lxc/image.go:129 lxc/image.go:277 lxc/image.go:328 lxc/image.go:453 lxc/image.go:612 lxc/image.go:840 lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25 lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150 lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40 lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108 lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376 lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727 lxc/network.go:807 lxc/network.go:892 lxc/network.go:961 lxc/network.go:1011 lxc/network.go:1081 lxc/network.go:1143 lxc/operation.go:24 lxc/operation.go:53 lxc/operation.go:102 lxc/operation.go:181 lxc/profile.go:29 lxc/profile.go:101 lxc/profile.go:164 lxc/profile.go:244 lxc/profile.go:300 lxc/profile.go:354 lxc/profile.go:404 lxc/profile.go:528 lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762 lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384 lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619 lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33 lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539 lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:163 lxc/storage.go:213 lxc/storage.go:333 lxc/storage.go:388 lxc/storage.go:508 lxc/storage.go:582 lxc/storage.go:651 lxc/storage.go:735 lxc/storage_volume.go:33 lxc/storage_volume.go:140 lxc/storage_volume.go:219 lxc/storage_volume.go:302 lxc/storage_volume.go:463 lxc/storage_volume.go:540 lxc/storage_volume.go:616 lxc/storage_volume.go:698 lxc/storage_volume.go:779 lxc/storage_volume.go:979 lxc/storage_volume.go:1070 lxc/storage_volume.go:1143 lxc/storage_volume.go:1174 lxc/storage_volume.go:1287 lxc/storage_volume.go:1363 lxc/storage_volume.go:1462 lxc/storage_volume.go:1495 lxc/storage_volume.go:1571 lxc/version.go:22
+#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:22 lxc/alias.go:54 lxc/alias.go:100 lxc/alias.go:144 lxc/alias.go:195 lxc/cluster.go:31 lxc/cluster.go:74 lxc/cluster.go:153 lxc/cluster.go:203 lxc/cluster.go:253 lxc/cluster.go:336 lxc/cluster.go:421 lxc/config.go:30 lxc/config.go:89 lxc/config.go:360 lxc/config.go:452 lxc/config.go:610 lxc/config.go:734 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:188 lxc/config_device.go:261 lxc/config_device.go:327 lxc/config_device.go:416 lxc/config_device.go:507 lxc/config_device.go:513 lxc/config_device.go:613 lxc/config_device.go:681 lxc/config_metadata.go:27 lxc/config_metadata.go:52 lxc/config_metadata.go:174 lxc/config_template.go:28 lxc/config_template.go:65 lxc/config_template.go:108 lxc/config_template.go:150 lxc/config_template.go:236 lxc/config_template.go:295 lxc/config_trust.go:28 lxc/config_trust.go:57 lxc/config_trust.go:115 lxc/config_trust.go:193 lxc/console.go:31 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:40 lxc/export.go:32 lxc/file.go:72 lxc/file.go:105 lxc/file.go:154 lxc/file.go:217 lxc/file.go:407 lxc/image.go:38 lxc/image.go:129 lxc/image.go:277 lxc/image.go:328 lxc/image.go:453 lxc/image.go:612 lxc/image.go:840 lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25 lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150 lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40 lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108 lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376 lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727 lxc/network.go:807 lxc/network.go:892 lxc/network.go:961 lxc/network.go:1011 lxc/network.go:1081 lxc/network.go:1143 lxc/operation.go:24 lxc/operation.go:53 lxc/operation.go:102 lxc/operation.go:181 lxc/profile.go:29 lxc/profile.go:101 lxc/profile.go:164 lxc/profile.go:244 lxc/profile.go:300 lxc/profile.go:354 lxc/profile.go:404 lxc/profile.go:528 lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762 lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86 lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384 lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620 lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33 lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539 lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21 lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89 lxc/storage.go:163 lxc/storage.go:213 lxc/storage.go:333 lxc/storage.go:388 lxc/storage.go:508 lxc/storage.go:582 lxc/storage.go:651 lxc/storage.go:735 lxc/storage_volume.go:33 lxc/storage_volume.go:140 lxc/storage_volume.go:219 lxc/storage_volume.go:302 lxc/storage_volume.go:463 lxc/storage_volume.go:540 lxc/storage_volume.go:616 lxc/storage_volume.go:698 lxc/storage_volume.go:779 lxc/storage_volume.go:979 lxc/storage_volume.go:1070 lxc/storage_volume.go:1143 lxc/storage_volume.go:1174 lxc/storage_volume.go:1287 lxc/storage_volume.go:1363 lxc/storage_volume.go:1462 lxc/storage_volume.go:1495 lxc/storage_volume.go:1571 lxc/version.go:22
 msgid   "Description"
 msgstr  ""
 
@@ -905,7 +909,7 @@ msgstr  ""
 msgid   "Driver: %v (%v)"
 msgstr  ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid   "EPHEMERAL"
 msgstr  ""
 
@@ -961,7 +965,7 @@ msgstr  ""
 msgid   "Edit storage volume configurations as YAML"
 msgstr  ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid   "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr  ""
@@ -1083,7 +1087,7 @@ msgstr  ""
 msgid   "Failed to walk path for %s: %s"
 msgstr  ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid   "Fast mode (same as --columns=nsacPt)"
 msgstr  ""
 
@@ -1135,7 +1139,7 @@ msgid   "Forcefully removing a server from the cluster should only be done as a
         "Are you really sure you want to force removing %s? (yes/no): "
 msgstr  ""
 
-#: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238 lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155 lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104 lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510 lxc/storage_volume.go:1072
+#: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238 lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155 lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104 lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510 lxc/storage_volume.go:1072
 msgid   "Format (csv|json|table|yaml)"
 msgstr  ""
 
@@ -1228,7 +1232,7 @@ msgstr  ""
 msgid   "ID: %s"
 msgstr  ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid   "IMAGES"
 msgstr  ""
 
@@ -1236,11 +1240,11 @@ msgstr  ""
 msgid   "IP ADDRESS"
 msgstr  ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid   "IPV4"
 msgstr  ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid   "IPV6"
 msgstr  ""
 
@@ -1352,12 +1356,12 @@ msgstr  ""
 msgid   "Invalid certificate"
 msgstr  ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid   "Invalid config key '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid   "Invalid config key column format (too many fields): '%s'"
 msgstr  ""
@@ -1367,17 +1371,17 @@ msgstr  ""
 msgid   "Invalid format %q"
 msgstr  ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid   "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid   "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr  ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid   "Invalid name in '%s', empty string is only allowed when defining maxWidth"
 msgstr  ""
@@ -1419,11 +1423,11 @@ msgstr  ""
 msgid   "Keep the image up to date after initial copy"
 msgstr  ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid   "LAST USED AT"
 msgstr  ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165 lxc/storage_volume.go:1124
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165 lxc/storage_volume.go:1124
 msgid   "LOCATION"
 msgstr  ""
 
@@ -1526,11 +1530,11 @@ msgstr  ""
 msgid   "List instance file templates"
 msgstr  ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid   "List instances"
 msgstr  ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid   "List instances\n"
         "\n"
         "Default column layout: ns46tS\n"
@@ -1570,7 +1574,9 @@ msgid   "List instances\n"
         "  b - Storage pool\n"
         "  c - Creation date\n"
         "  d - Description\n"
+        "  D - disk usage\n"
         "  l - Last used date\n"
+        "  m - Memory usage\n"
         "  n - Name\n"
         "  N - Number of Processes\n"
         "  p - PID of the instance's init process\n"
@@ -1642,6 +1648,10 @@ msgstr  ""
 msgid   "MANAGED"
 msgstr  ""
 
+#: lxc/list.go:434
+msgid   "MEMORY USAGE"
+msgstr  ""
+
 #: lxc/cluster.go:136
 msgid   "MESSAGE"
 msgstr  ""
@@ -1814,7 +1824,7 @@ msgstr  ""
 msgid   "Missing profile name"
 msgstr  ""
 
-#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358 lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358 lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid   "Missing project name"
 msgstr  ""
 
@@ -1883,7 +1893,7 @@ msgstr  ""
 msgid   "Must supply instance name for: "
 msgstr  ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620 lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558 lxc/storage_volume.go:1119
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620 lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558 lxc/storage_volume.go:1119
 msgid   "NAME"
 msgstr  ""
 
@@ -1895,7 +1905,7 @@ msgstr  ""
 msgid   "NICs:"
 msgstr  ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428 lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429 lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid   "NO"
 msgstr  ""
 
@@ -2031,15 +2041,15 @@ msgstr  ""
 msgid   "PCI address: %v"
 msgstr  ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid   "PID"
 msgstr  ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid   "PROCESSES"
 msgstr  ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid   "PROFILES"
 msgstr  ""
 
@@ -2195,7 +2205,7 @@ msgstr  ""
 msgid   "Project %s deleted"
 msgstr  ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid   "Project %s renamed to %s"
 msgstr  ""
@@ -2358,7 +2368,7 @@ msgstr  ""
 msgid   "Rename profiles"
 msgstr  ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid   "Rename projects"
 msgstr  ""
 
@@ -2433,7 +2443,7 @@ msgstr  ""
 msgid   "SIZE"
 msgstr  ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid   "SNAPSHOTS"
 msgstr  ""
 
@@ -2445,7 +2455,7 @@ msgstr  ""
 msgid   "SR-IOV information:"
 msgstr  ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid   "STATE"
 msgstr  ""
 
@@ -2457,11 +2467,11 @@ msgstr  ""
 msgid   "STATUS"
 msgstr  ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid   "STORAGE POOL"
 msgstr  ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid   "STORAGE VOLUMES"
 msgstr  ""
 
@@ -2541,11 +2551,11 @@ msgid   "Set profile configuration keys\n"
         "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr  ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid   "Set project configuration keys"
 msgstr  ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid   "Set project configuration keys\n"
         "\n"
         "For backward compatibility, a single configuration key may still be set with:\n"
@@ -2646,7 +2656,7 @@ msgstr  ""
 msgid   "Show profile configurations"
 msgstr  ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid   "Show project options"
 msgstr  ""
 
@@ -2821,7 +2831,7 @@ msgstr  ""
 msgid   "Swap (peak)"
 msgstr  ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid   "Switch the current project"
 msgstr  ""
 
@@ -2833,7 +2843,7 @@ msgstr  ""
 msgid   "TARGET"
 msgstr  ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868 lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868 lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid   "TYPE"
 msgstr  ""
 
@@ -2994,7 +3004,7 @@ msgstr  ""
 msgid   "URL"
 msgstr  ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567 lxc/storage_volume.go:1121
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567 lxc/storage_volume.go:1121
 msgid   "USED BY"
 msgstr  ""
 
@@ -3008,7 +3018,7 @@ msgstr  ""
 msgid   "Unable to create a temporary file: %v"
 msgstr  ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid   "Unknown column shorthand char '%c' in '%s'"
 msgstr  ""
@@ -3038,7 +3048,7 @@ msgstr  ""
 msgid   "Unset profile configuration keys"
 msgstr  ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid   "Unset project configuration keys"
 msgstr  ""
 
@@ -3122,7 +3132,7 @@ msgstr  ""
 msgid   "Whether or not to snapshot the instance's running state"
 msgstr  ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430 lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431 lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid   "YES"
 msgstr  ""
 
@@ -3242,7 +3252,7 @@ msgstr  ""
 msgid   "create [<remote>:]<project>"
 msgstr  ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid   "current"
 msgstr  ""
 
@@ -3484,7 +3494,7 @@ msgstr  ""
 msgid   "list [<remote>:]"
 msgstr  ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid   "list [<remote>:] [<filter>...]"
 msgstr  ""
 
@@ -3599,7 +3609,7 @@ msgid   "lxc launch ubuntu:18.04 u1\n"
         "    Create and start the instance with configuration from config.yaml"
 msgstr  ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid   "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0.parent:ETHP\n"
         "  Show instances using the \"NAME\", \"BASE IMAGE\", \"STATE\", \"IPV4\", \"IPV6\" and \"MAC\" columns.\n"
         "  \"BASE IMAGE\", \"MAC\" and \"IMAGE OS\" are custom columns generated from instance configuration keys.\n"
@@ -3838,7 +3848,7 @@ msgstr  ""
 msgid   "rename [<remote>:]<profile> <new-name>"
 msgstr  ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid   "rename [<remote>:]<project> <new-name>"
 msgstr  ""
 
@@ -3874,7 +3884,7 @@ msgstr  ""
 msgid   "set [<remote>:]<profile> <key><value>..."
 msgstr  ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid   "set [<remote>:]<project> <key>=<value>..."
 msgstr  ""
 
@@ -3926,7 +3936,7 @@ msgstr  ""
 msgid   "show [<remote>:]<profile>"
 msgstr  ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid   "show [<remote>:]<project>"
 msgstr  ""
 
@@ -3970,7 +3980,7 @@ msgstr  ""
 msgid   "switch <remote>"
 msgstr  ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid   "switch [<remote>:]<project>"
 msgstr  ""
 
@@ -4015,7 +4025,7 @@ msgstr  ""
 msgid   "unset [<remote>:]<profile> <key>"
 msgstr  ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid   "unset [<remote>:]<project> <key>"
 msgstr  ""
 
diff --git a/po/nb_NO.po b/po/nb_NO.po
index fb3f85613c..74d0e18db0 100644
--- a/po/nb_NO.po
+++ b/po/nb_NO.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/nl.po b/po/nl.po
index 54fcd5024e..c842758702 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Dutch <https://hosted.weblate.org/projects/linux-containers/"
@@ -356,7 +356,7 @@ msgstr "ALIAS"
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr "ARCHITECTUUR"
 
@@ -505,7 +505,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -581,7 +581,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -620,7 +620,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -628,7 +628,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -687,7 +687,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -894,11 +894,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -981,7 +985,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -993,8 +997,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1103,7 +1107,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1161,7 +1165,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1291,7 +1295,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1350,7 +1354,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1445,7 +1449,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1453,11 +1457,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1572,12 +1576,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1587,17 +1591,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1640,11 +1644,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1750,11 +1754,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1798,7 +1802,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1872,6 +1878,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2066,7 +2076,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2137,8 +2147,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2151,8 +2161,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2288,15 +2298,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2454,7 +2464,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2619,7 +2629,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2696,7 +2706,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2708,7 +2718,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2720,11 +2730,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2814,11 +2824,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2925,7 +2935,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -3100,7 +3110,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -3112,7 +3122,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3283,7 +3293,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3298,7 +3308,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3328,7 +3338,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3416,8 +3426,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3541,7 +3551,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3789,7 +3799,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3921,7 +3931,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4190,7 +4200,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4226,7 +4236,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4278,7 +4288,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4322,7 +4332,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4367,7 +4377,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/pa.po b/po/pa.po
index 9bc71414ac..2c4cfd2475 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/pl.po b/po/pl.po
index 224c43031e..15c5002391 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2018-09-08 19:22+0000\n"
 "Last-Translator: m4sk1n <me at m4sk.in>\n"
 "Language-Team: Polish <https://hosted.weblate.org/projects/linux-containers/"
@@ -366,7 +366,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -515,7 +515,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -591,7 +591,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -638,7 +638,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -697,7 +697,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -904,11 +904,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -991,7 +995,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -1003,8 +1007,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1113,7 +1117,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1171,7 +1175,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1301,7 +1305,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1360,7 +1364,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1455,7 +1459,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1463,11 +1467,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1582,12 +1586,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1597,17 +1601,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1650,11 +1654,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1760,11 +1764,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1808,7 +1812,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1882,6 +1888,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2076,7 +2086,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2147,8 +2157,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2161,8 +2171,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2298,15 +2308,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2464,7 +2474,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2629,7 +2639,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2706,7 +2716,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2718,7 +2728,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2730,11 +2740,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2824,11 +2834,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2935,7 +2945,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -3110,7 +3120,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -3122,7 +3132,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3293,7 +3303,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3308,7 +3318,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3338,7 +3348,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3426,8 +3436,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3551,7 +3561,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3799,7 +3809,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3931,7 +3941,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4200,7 +4210,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4236,7 +4246,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4288,7 +4298,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4332,7 +4342,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4377,7 +4387,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/pt_BR.po b/po/pt_BR.po
index bf9ef41976..4e95da3f2d 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2019-09-06 07:09+0000\n"
 "Last-Translator: Stéphane Graber <stgraber at stgraber.org>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -370,7 +370,7 @@ msgstr "ALIAS"
 msgid "ALIASES"
 msgstr "ALIASES"
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr "ARQUITETURA"
 
@@ -527,7 +527,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Atualização automática: %s"
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr "IMAGEM BASE"
 
@@ -603,7 +603,7 @@ msgstr "CPUs:"
 msgid "CREATED"
 msgstr "CRIADO"
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr "CRIADO EM"
 
@@ -643,7 +643,7 @@ msgstr "Não é possível ler stdin: %s"
 msgid "Can't remove the default remote"
 msgstr "Não é possível remover o default remoto"
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr "Não é possível especificar --fast com --columns"
 
@@ -651,7 +651,7 @@ msgstr "Não é possível especificar --fast com --columns"
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr "Não pode especificar a coluna L, quando não em cluster"
 
@@ -711,7 +711,7 @@ msgstr "Nome de membro do cluster"
 msgid "Clustering enabled"
 msgstr "Clustering ativado"
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr "Colunas"
 
@@ -935,11 +935,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr "DRIVER"
@@ -1026,7 +1030,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -1038,8 +1042,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1152,7 +1156,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr "EFÊMERO"
 
@@ -1216,7 +1220,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1346,7 +1350,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1405,7 +1409,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1503,7 +1507,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1511,11 +1515,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr "IPV4"
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr "IPV6"
 
@@ -1631,12 +1635,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1646,17 +1650,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1699,11 +1703,11 @@ msgstr "Em cache: %s"
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1810,11 +1814,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr "Editar templates de arquivo do container"
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1858,7 +1862,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1932,6 +1938,10 @@ msgstr "Em cache: %s"
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2131,7 +2141,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2202,8 +2212,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2216,8 +2226,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2353,15 +2363,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2523,7 +2533,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2690,7 +2700,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2768,7 +2778,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2780,7 +2790,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2792,11 +2802,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2888,12 +2898,12 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 #, fuzzy
 msgid "Set project configuration keys"
 msgstr "Editar configurações de perfil como YAML"
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -3005,7 +3015,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -3193,7 +3203,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3364,7 +3374,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3379,7 +3389,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3412,7 +3422,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 #, fuzzy
 msgid "Unset project configuration keys"
 msgstr "Editar configurações de perfil como YAML"
@@ -3501,8 +3511,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3626,7 +3636,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3874,7 +3884,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -4006,7 +4016,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4275,7 +4285,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4311,7 +4321,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4363,7 +4373,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4407,7 +4417,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4452,7 +4462,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/ru.po b/po/ru.po
index 494763c081..3269b0e807 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2018-06-22 15:57+0000\n"
 "Last-Translator: Александр Киль <shorrey at gmail.com>\n"
 "Language-Team: Russian <https://hosted.weblate.org/projects/linux-containers/"
@@ -368,7 +368,7 @@ msgstr "ПСЕВДОНИМ"
 msgid "ALIASES"
 msgstr "ПСЕВДОНИМ"
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr "АРХИТЕКТУРА"
 
@@ -519,7 +519,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr "Авто-обновление: %s"
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -597,7 +597,7 @@ msgstr ""
 msgid "CREATED"
 msgstr "СОЗДАН"
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr "СОЗДАН"
 
@@ -636,7 +636,7 @@ msgstr "Невозможно прочитать из стандартного в
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -644,7 +644,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -704,7 +704,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr "Столбцы"
 
@@ -922,11 +922,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -1013,7 +1017,7 @@ msgstr "Копирование образа: %s"
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -1025,8 +1029,8 @@ msgstr "Копирование образа: %s"
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -1139,7 +1143,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1199,7 +1203,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1332,7 +1336,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1391,7 +1395,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1486,7 +1490,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1494,11 +1498,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1617,12 +1621,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1632,17 +1636,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1685,11 +1689,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1798,12 +1802,12 @@ msgstr "Копирование образа: %s"
 msgid "List instance file templates"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 #, fuzzy
 msgid "List instances"
 msgstr "Псевдонимы:"
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1847,7 +1851,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1922,6 +1928,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -2125,7 +2135,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 #, fuzzy
 msgid "Missing project name"
 msgstr "Имя контейнера: %s"
@@ -2199,8 +2209,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2213,8 +2223,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2352,15 +2362,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2518,7 +2528,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2686,7 +2696,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2768,7 +2778,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2780,7 +2790,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2792,11 +2802,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2886,11 +2896,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2999,7 +3009,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -3178,7 +3188,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -3190,7 +3200,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3361,7 +3371,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3376,7 +3386,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3406,7 +3416,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3494,8 +3504,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3640,7 +3650,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3976,7 +3986,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -4116,7 +4126,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4429,7 +4439,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4493,7 +4503,7 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 #, fuzzy
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
@@ -4569,7 +4579,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4633,7 +4643,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 #, fuzzy
 msgid "switch [<remote>:]<project>"
 msgstr ""
@@ -4686,7 +4696,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 #, fuzzy
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
diff --git a/po/sl.po b/po/sl.po
index bd78f12eaf..d0213c8017 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/sr.po b/po/sr.po
index a93c3a93b6..7901f1dad6 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/sv.po b/po/sv.po
index a07140731a..20d8b8e542 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/te.po b/po/te.po
index b81a114c2b..f6efa43066 100644
--- a/po/te.po
+++ b/po/te.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/tr.po b/po/tr.po
index 1217a2139b..d894493744 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/uk.po b/po/uk.po
index 262122ae78..0b9c4450eb 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -239,7 +239,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -464,7 +464,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -503,7 +503,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -511,7 +511,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -570,7 +570,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -777,11 +777,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -864,7 +868,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -876,8 +880,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -986,7 +990,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1044,7 +1048,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1174,7 +1178,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1233,7 +1237,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1328,7 +1332,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1336,11 +1340,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1455,12 +1459,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1470,17 +1474,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1523,11 +1527,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1633,11 +1637,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1681,7 +1685,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1755,6 +1761,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1949,7 +1959,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2020,8 +2030,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2034,8 +2044,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2171,15 +2181,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2337,7 +2347,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2502,7 +2512,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2579,7 +2589,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2591,7 +2601,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2603,11 +2613,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2697,11 +2707,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2808,7 +2818,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2983,7 +2993,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2995,7 +3005,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3166,7 +3176,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3181,7 +3191,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3211,7 +3221,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3299,8 +3309,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3424,7 +3434,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3672,7 +3682,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3804,7 +3814,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4073,7 +4083,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4109,7 +4119,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4161,7 +4171,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4205,7 +4215,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4250,7 +4260,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index f53edd0578..ed78dfd6b1 100644
--- a/po/zh_Hans.po
+++ b/po/zh_Hans.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lxd\n"
 "Report-Msgid-Bugs-To: lxc-devel at lists.linuxcontainers.org\n"
-"POT-Creation-Date: 2020-04-27 17:34-0400\n"
+"POT-Creation-Date: 2020-05-21 11:55-0400\n"
 "PO-Revision-Date: 2018-09-11 19:15+0000\n"
 "Last-Translator: 0x0916 <w at laoqinren.net>\n"
 "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
@@ -242,7 +242,7 @@ msgstr ""
 msgid "ALIASES"
 msgstr ""
 
-#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:423
+#: lxc/cluster.go:137 lxc/image.go:1015 lxc/list.go:426
 msgid "ARCHITECTURE"
 msgstr ""
 
@@ -391,7 +391,7 @@ msgstr ""
 msgid "Auto update: %s"
 msgstr ""
 
-#: lxc/list.go:435 lxc/list.go:436
+#: lxc/list.go:431 lxc/list.go:432
 msgid "BASE IMAGE"
 msgstr ""
 
@@ -467,7 +467,7 @@ msgstr ""
 msgid "CREATED"
 msgstr ""
 
-#: lxc/list.go:424
+#: lxc/list.go:428
 msgid "CREATED AT"
 msgstr ""
 
@@ -506,7 +506,7 @@ msgstr ""
 msgid "Can't remove the default remote"
 msgstr ""
 
-#: lxc/list.go:442
+#: lxc/list.go:447
 msgid "Can't specify --fast with --columns"
 msgstr ""
 
@@ -514,7 +514,7 @@ msgstr ""
 msgid "Can't specify a different remote for rename"
 msgstr ""
 
-#: lxc/list.go:454
+#: lxc/list.go:459
 msgid "Can't specify column L when not clustered"
 msgstr ""
 
@@ -573,7 +573,7 @@ msgstr ""
 msgid "Clustering enabled"
 msgstr ""
 
-#: lxc/image.go:1000 lxc/list.go:114
+#: lxc/image.go:1000 lxc/list.go:117
 msgid "Columns"
 msgstr ""
 
@@ -780,11 +780,15 @@ msgstr ""
 msgid "DATABASE"
 msgstr ""
 
-#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:425 lxc/network.go:870
+#: lxc/image.go:1014 lxc/image_alias.go:234 lxc/list.go:429 lxc/network.go:870
 #: lxc/operation.go:160 lxc/storage.go:559 lxc/storage_volume.go:1120
 msgid "DESCRIPTION"
 msgstr ""
 
+#: lxc/list.go:430
+msgid "DISK USAGE"
+msgstr ""
+
 #: lxc/storage.go:560
 msgid "DRIVER"
 msgstr ""
@@ -867,7 +871,7 @@ msgstr ""
 #: lxc/image.go:975 lxc/image.go:1273 lxc/image.go:1352 lxc/image_alias.go:25
 #: lxc/image_alias.go:58 lxc/image_alias.go:105 lxc/image_alias.go:150
 #: lxc/image_alias.go:252 lxc/import.go:28 lxc/info.go:33 lxc/init.go:40
-#: lxc/launch.go:23 lxc/list.go:44 lxc/main.go:50 lxc/manpage.go:19
+#: lxc/launch.go:23 lxc/list.go:45 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:36 lxc/network.go:32 lxc/network.go:108
 #: lxc/network.go:181 lxc/network.go:254 lxc/network.go:326 lxc/network.go:376
 #: lxc/network.go:461 lxc/network.go:546 lxc/network.go:669 lxc/network.go:727
@@ -879,8 +883,8 @@ msgstr ""
 #: lxc/profile.go:577 lxc/profile.go:636 lxc/profile.go:712 lxc/profile.go:762
 #: lxc/profile.go:821 lxc/profile.go:875 lxc/project.go:29 lxc/project.go:86
 #: lxc/project.go:151 lxc/project.go:214 lxc/project.go:334 lxc/project.go:384
-#: lxc/project.go:475 lxc/project.go:530 lxc/project.go:590 lxc/project.go:619
-#: lxc/project.go:672 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
+#: lxc/project.go:476 lxc/project.go:531 lxc/project.go:591 lxc/project.go:620
+#: lxc/project.go:673 lxc/publish.go:31 lxc/query.go:31 lxc/remote.go:33
 #: lxc/remote.go:84 lxc/remote.go:423 lxc/remote.go:459 lxc/remote.go:539
 #: lxc/remote.go:601 lxc/remote.go:651 lxc/remote.go:689 lxc/rename.go:21
 #: lxc/restore.go:24 lxc/snapshot.go:24 lxc/storage.go:33 lxc/storage.go:89
@@ -989,7 +993,7 @@ msgstr ""
 msgid "Driver: %v (%v)"
 msgstr ""
 
-#: lxc/list.go:659
+#: lxc/list.go:682
 msgid "EPHEMERAL"
 msgstr ""
 
@@ -1047,7 +1051,7 @@ msgstr ""
 msgid "Edit storage volume configurations as YAML"
 msgstr ""
 
-#: lxc/image.go:1026 lxc/list.go:466
+#: lxc/image.go:1026 lxc/list.go:471
 #, c-format
 msgid "Empty column entry (redundant, leading or trailing command) in '%s'"
 msgstr ""
@@ -1177,7 +1181,7 @@ msgstr ""
 msgid "Failed to walk path for %s: %s"
 msgstr ""
 
-#: lxc/list.go:116
+#: lxc/list.go:119
 msgid "Fast mode (same as --columns=nsacPt)"
 msgstr ""
 
@@ -1236,7 +1240,7 @@ msgstr ""
 
 #: lxc/alias.go:102 lxc/cluster.go:76 lxc/config_template.go:238
 #: lxc/config_trust.go:117 lxc/image.go:1001 lxc/image_alias.go:155
-#: lxc/list.go:115 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
+#: lxc/list.go:118 lxc/network.go:811 lxc/network.go:894 lxc/operation.go:104
 #: lxc/profile.go:581 lxc/project.go:386 lxc/remote.go:463 lxc/storage.go:510
 #: lxc/storage_volume.go:1072
 msgid "Format (csv|json|table|yaml)"
@@ -1331,7 +1335,7 @@ msgstr ""
 msgid "ID: %s"
 msgstr ""
 
-#: lxc/project.go:455
+#: lxc/project.go:456
 msgid "IMAGES"
 msgstr ""
 
@@ -1339,11 +1343,11 @@ msgstr ""
 msgid "IP ADDRESS"
 msgstr ""
 
-#: lxc/list.go:421
+#: lxc/list.go:424
 msgid "IPV4"
 msgstr ""
 
-#: lxc/list.go:422
+#: lxc/list.go:425
 msgid "IPV6"
 msgstr ""
 
@@ -1458,12 +1462,12 @@ msgstr ""
 msgid "Invalid certificate"
 msgstr ""
 
-#: lxc/list.go:498
+#: lxc/list.go:503
 #, c-format
 msgid "Invalid config key '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:492
+#: lxc/list.go:497
 #, c-format
 msgid "Invalid config key column format (too many fields): '%s'"
 msgstr ""
@@ -1473,17 +1477,17 @@ msgstr ""
 msgid "Invalid format %q"
 msgstr ""
 
-#: lxc/list.go:517
+#: lxc/list.go:522
 #, c-format
 msgid "Invalid max width (must -1, 0 or a positive integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:514
+#: lxc/list.go:519
 #, c-format
 msgid "Invalid max width (must be an integer) '%s' in '%s'"
 msgstr ""
 
-#: lxc/list.go:505
+#: lxc/list.go:510
 #, c-format
 msgid ""
 "Invalid name in '%s', empty string is only allowed when defining maxWidth"
@@ -1526,11 +1530,11 @@ msgstr ""
 msgid "Keep the image up to date after initial copy"
 msgstr ""
 
-#: lxc/list.go:426
+#: lxc/list.go:433
 msgid "LAST USED AT"
 msgstr ""
 
-#: lxc/list.go:450 lxc/network.go:944 lxc/operation.go:165
+#: lxc/list.go:455 lxc/network.go:944 lxc/operation.go:165
 #: lxc/storage_volume.go:1124
 msgid "LOCATION"
 msgstr ""
@@ -1636,11 +1640,11 @@ msgstr ""
 msgid "List instance file templates"
 msgstr ""
 
-#: lxc/list.go:43
+#: lxc/list.go:44
 msgid "List instances"
 msgstr ""
 
-#: lxc/list.go:44
+#: lxc/list.go:45
 msgid ""
 "List instances\n"
 "\n"
@@ -1684,7 +1688,9 @@ msgid ""
 "  b - Storage pool\n"
 "  c - Creation date\n"
 "  d - Description\n"
+"  D - disk usage\n"
 "  l - Last used date\n"
+"  m - Memory usage\n"
 "  n - Name\n"
 "  N - Number of Processes\n"
 "  p - PID of the instance's init process\n"
@@ -1758,6 +1764,10 @@ msgstr ""
 msgid "MANAGED"
 msgstr ""
 
+#: lxc/list.go:434
+msgid "MEMORY USAGE"
+msgstr ""
+
 #: lxc/cluster.go:136
 msgid "MESSAGE"
 msgstr ""
@@ -1952,7 +1962,7 @@ msgid "Missing profile name"
 msgstr ""
 
 #: lxc/project.go:111 lxc/project.go:180 lxc/project.go:258 lxc/project.go:358
-#: lxc/project.go:499 lxc/project.go:557 lxc/project.go:643
+#: lxc/project.go:500 lxc/project.go:558 lxc/project.go:644
 msgid "Missing project name"
 msgstr ""
 
@@ -2023,8 +2033,8 @@ msgstr ""
 msgid "Must supply instance name for: "
 msgstr ""
 
-#: lxc/cluster.go:132 lxc/list.go:427 lxc/network.go:867 lxc/profile.go:620
-#: lxc/project.go:454 lxc/remote.go:517 lxc/storage.go:558
+#: lxc/cluster.go:132 lxc/list.go:435 lxc/network.go:867 lxc/profile.go:620
+#: lxc/project.go:455 lxc/remote.go:517 lxc/storage.go:558
 #: lxc/storage_volume.go:1119
 msgid "NAME"
 msgstr ""
@@ -2037,8 +2047,8 @@ msgstr ""
 msgid "NICs:"
 msgstr ""
 
-#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:428
-#: lxc/project.go:433 lxc/project.go:438 lxc/remote.go:480 lxc/remote.go:485
+#: lxc/network.go:852 lxc/operation.go:143 lxc/project.go:429
+#: lxc/project.go:434 lxc/project.go:439 lxc/remote.go:480 lxc/remote.go:485
 msgid "NO"
 msgstr ""
 
@@ -2174,15 +2184,15 @@ msgstr ""
 msgid "PCI address: %v"
 msgstr ""
 
-#: lxc/list.go:429
+#: lxc/list.go:437
 msgid "PID"
 msgstr ""
 
-#: lxc/list.go:428
+#: lxc/list.go:436
 msgid "PROCESSES"
 msgstr ""
 
-#: lxc/list.go:430 lxc/project.go:456
+#: lxc/list.go:438 lxc/project.go:457
 msgid "PROFILES"
 msgstr ""
 
@@ -2340,7 +2350,7 @@ msgstr ""
 msgid "Project %s deleted"
 msgstr ""
 
-#: lxc/project.go:514
+#: lxc/project.go:515
 #, c-format
 msgid "Project %s renamed to %s"
 msgstr ""
@@ -2505,7 +2515,7 @@ msgstr ""
 msgid "Rename profiles"
 msgstr ""
 
-#: lxc/project.go:474 lxc/project.go:475
+#: lxc/project.go:475 lxc/project.go:476
 msgid "Rename projects"
 msgstr ""
 
@@ -2582,7 +2592,7 @@ msgstr ""
 msgid "SIZE"
 msgstr ""
 
-#: lxc/list.go:431
+#: lxc/list.go:439
 msgid "SNAPSHOTS"
 msgstr ""
 
@@ -2594,7 +2604,7 @@ msgstr ""
 msgid "SR-IOV information:"
 msgstr ""
 
-#: lxc/cluster.go:135 lxc/list.go:432 lxc/network.go:874 lxc/storage.go:563
+#: lxc/cluster.go:135 lxc/list.go:440 lxc/network.go:874 lxc/storage.go:563
 msgid "STATE"
 msgstr ""
 
@@ -2606,11 +2616,11 @@ msgstr ""
 msgid "STATUS"
 msgstr ""
 
-#: lxc/list.go:434
+#: lxc/list.go:427
 msgid "STORAGE POOL"
 msgstr ""
 
-#: lxc/project.go:457
+#: lxc/project.go:458
 msgid "STORAGE VOLUMES"
 msgstr ""
 
@@ -2700,11 +2710,11 @@ msgid ""
 "    lxc profile set [<remote>:]<profile> <key> <value>"
 msgstr ""
 
-#: lxc/project.go:529
+#: lxc/project.go:530
 msgid "Set project configuration keys"
 msgstr ""
 
-#: lxc/project.go:530
+#: lxc/project.go:531
 msgid ""
 "Set project configuration keys\n"
 "\n"
@@ -2811,7 +2821,7 @@ msgstr ""
 msgid "Show profile configurations"
 msgstr ""
 
-#: lxc/project.go:618 lxc/project.go:619
+#: lxc/project.go:619 lxc/project.go:620
 msgid "Show project options"
 msgstr ""
 
@@ -2986,7 +2996,7 @@ msgstr ""
 msgid "Swap (peak)"
 msgstr ""
 
-#: lxc/project.go:671 lxc/project.go:672
+#: lxc/project.go:672 lxc/project.go:673
 msgid "Switch the current project"
 msgstr ""
 
@@ -2998,7 +3008,7 @@ msgstr ""
 msgid "TARGET"
 msgstr ""
 
-#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:433 lxc/network.go:868
+#: lxc/image.go:1018 lxc/image_alias.go:233 lxc/list.go:441 lxc/network.go:868
 #: lxc/network.go:941 lxc/operation.go:159 lxc/storage_volume.go:1118
 msgid "TYPE"
 msgstr ""
@@ -3169,7 +3179,7 @@ msgstr ""
 msgid "URL"
 msgstr ""
 
-#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:458 lxc/storage.go:567
+#: lxc/network.go:871 lxc/profile.go:621 lxc/project.go:459 lxc/storage.go:567
 #: lxc/storage_volume.go:1121
 msgid "USED BY"
 msgstr ""
@@ -3184,7 +3194,7 @@ msgstr ""
 msgid "Unable to create a temporary file: %v"
 msgstr ""
 
-#: lxc/image.go:1033 lxc/list.go:480
+#: lxc/image.go:1033 lxc/list.go:485
 #, c-format
 msgid "Unknown column shorthand char '%c' in '%s'"
 msgstr ""
@@ -3214,7 +3224,7 @@ msgstr ""
 msgid "Unset profile configuration keys"
 msgstr ""
 
-#: lxc/project.go:589 lxc/project.go:590
+#: lxc/project.go:590 lxc/project.go:591
 msgid "Unset project configuration keys"
 msgstr ""
 
@@ -3302,8 +3312,8 @@ msgstr ""
 msgid "Whether or not to snapshot the instance's running state"
 msgstr ""
 
-#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:430
-#: lxc/project.go:435 lxc/project.go:440 lxc/remote.go:482 lxc/remote.go:487
+#: lxc/network.go:854 lxc/operation.go:145 lxc/project.go:431
+#: lxc/project.go:436 lxc/project.go:441 lxc/remote.go:482 lxc/remote.go:487
 msgid "YES"
 msgstr ""
 
@@ -3427,7 +3437,7 @@ msgstr ""
 msgid "create [<remote>:]<project>"
 msgstr ""
 
-#: lxc/project.go:445
+#: lxc/project.go:446
 msgid "current"
 msgstr ""
 
@@ -3675,7 +3685,7 @@ msgstr ""
 msgid "list [<remote>:]"
 msgstr ""
 
-#: lxc/image.go:972 lxc/list.go:41
+#: lxc/image.go:972 lxc/list.go:42
 msgid "list [<remote>:] [<filter>...]"
 msgstr ""
 
@@ -3807,7 +3817,7 @@ msgid ""
 "    Create and start the instance with configuration from config.yaml"
 msgstr ""
 
-#: lxc/list.go:104
+#: lxc/list.go:107
 msgid ""
 "lxc list -c nFs46,volatile.eth0.hwaddr:MAC,config:image.os,devices:eth0."
 "parent:ETHP\n"
@@ -4076,7 +4086,7 @@ msgstr ""
 msgid "rename [<remote>:]<profile> <new-name>"
 msgstr ""
 
-#: lxc/project.go:472
+#: lxc/project.go:473
 msgid "rename [<remote>:]<project> <new-name>"
 msgstr ""
 
@@ -4112,7 +4122,7 @@ msgstr ""
 msgid "set [<remote>:]<profile> <key><value>..."
 msgstr ""
 
-#: lxc/project.go:528
+#: lxc/project.go:529
 msgid "set [<remote>:]<project> <key>=<value>..."
 msgstr ""
 
@@ -4164,7 +4174,7 @@ msgstr ""
 msgid "show [<remote>:]<profile>"
 msgstr ""
 
-#: lxc/project.go:617
+#: lxc/project.go:618
 msgid "show [<remote>:]<project>"
 msgstr ""
 
@@ -4208,7 +4218,7 @@ msgstr ""
 msgid "switch <remote>"
 msgstr ""
 
-#: lxc/project.go:670
+#: lxc/project.go:671
 msgid "switch [<remote>:]<project>"
 msgstr ""
 
@@ -4253,7 +4263,7 @@ msgstr ""
 msgid "unset [<remote>:]<profile> <key>"
 msgstr ""
 
-#: lxc/project.go:588
+#: lxc/project.go:589
 msgid "unset [<remote>:]<project> <key>"
 msgstr ""
 


More information about the lxc-devel mailing list