[lxc-devel] [lxd/master] Fix resources API

stgraber on Github lxc-bot at linuxcontainers.org
Wed Mar 13 01:24:08 UTC 2019


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/20190312/394ed359/attachment-0001.bin>
-------------- next part --------------
From 9e14daae461dcd50b29fc91000256f9637172793 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 12 Mar 2019 20:27:02 -0400
Subject: [PATCH 1/5] shared/api: Drop StoragePool from Resources struct
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The ResourcesStoragePool struct is only meant to be used on its own, no
value are meant to be exposed for it through /1.0/resources.

Signed-off-by: Stéphane Graber <stgraber at ubuntu.com>
---
 shared/api/resource.go | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/shared/api/resource.go b/shared/api/resource.go
index 56892e948f..93a1104502 100644
--- a/shared/api/resource.go
+++ b/shared/api/resource.go
@@ -3,9 +3,8 @@ package api
 // Resources represents the system resources avaible for LXD
 // API extension: resources
 type Resources struct {
-	CPU         ResourcesCPU         `json:"cpu,omitempty" yaml:"cpu,omitempty"`
-	Memory      ResourcesMemory      `json:"memory,omitempty" yaml:"memory,omitempty"`
-	StoragePool ResourcesStoragePool `json:"pool,omitempty" yaml:"pool,omitempty"`
+	CPU    ResourcesCPU    `json:"cpu,omitempty" yaml:"cpu,omitempty"`
+	Memory ResourcesMemory `json:"memory,omitempty" yaml:"memory,omitempty"`
 }
 
 // ResourcesCPUSocket represents a cpu socket on the system

From 5a3cf5c50ce88193f2ee79bb89c17b33522e17ed Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 12 Mar 2019 20:49:11 -0400
Subject: [PATCH 2/5] lxd/resources: Fix bad CPU reporting
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>
---
 lxd/util/resources.go | 22 +++++++++++++++-------
 1 file changed, 15 insertions(+), 7 deletions(-)

diff --git a/lxd/util/resources.go b/lxd/util/resources.go
index 2b1f2b99a0..0fef6955b4 100644
--- a/lxd/util/resources.go
+++ b/lxd/util/resources.go
@@ -100,7 +100,7 @@ func parseCpuinfo() ([]thread, error) {
 			line = strings.TrimSpace(line)
 
 			if t != nil {
-				threads[len(threads)-1].name = line
+				threads[len(threads)-1].vendor = line
 			}
 		} else if strings.HasPrefix(line, "model name") {
 			i := strings.Index(line, ":")
@@ -113,7 +113,7 @@ func parseCpuinfo() ([]thread, error) {
 			line = strings.TrimSpace(line)
 
 			if t != nil {
-				threads[len(threads)-1].vendor = line
+				threads[len(threads)-1].name = line
 			}
 		} else if t != nil && t.frequency == 0 && strings.HasPrefix(line, "cpu MHz") {
 			i := strings.Index(line, ":")
@@ -235,19 +235,27 @@ func CPUResource() (*api.ResourcesCPU, error) {
 
 	var cur *api.ResourcesCPUSocket
 	c.Total = uint64(len(threads))
-	c.Sockets = append(c.Sockets, api.ResourcesCPUSocket{})
+
 	for _, v := range threads {
 		if uint64(len(c.Sockets)) <= v.socketID {
 			c.Sockets = append(c.Sockets, api.ResourcesCPUSocket{})
 			cur = &c.Sockets[v.socketID]
+
+			// Count the number of cores on the socket
+			// Note that we can't assume sequential core IDs
+			socketCores := map[uint64]bool{}
+			for _, thread := range threads {
+				if thread.socketID != v.socketID {
+					continue
+				}
+
+				socketCores[thread.coreID] = true
+			}
+			cur.Cores = uint64(len(socketCores))
 		} else {
 			cur = &c.Sockets[v.socketID]
 		}
 
-		if v.coreID+1 > cur.Cores {
-			cur.Cores++
-		}
-
 		cur.Threads++
 		cur.Name = v.name
 		cur.Vendor = v.vendor

From c1cbcd94a5ac6a0a05154d58e91b52468b37c8f5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 12 Mar 2019 21:13:41 -0400
Subject: [PATCH 3/5] lxc/info: Improve resources rendering
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>
---
 lxc/info.go | 26 ++++++++++++++++++++++----
 1 file changed, 22 insertions(+), 4 deletions(-)

diff --git a/lxc/info.go b/lxc/info.go
index 12ba25c97a..c30e984670 100644
--- a/lxc/info.go
+++ b/lxc/info.go
@@ -11,6 +11,7 @@ import (
 	"github.com/lxc/lxd/client"
 	"github.com/lxc/lxd/lxc/config"
 	"github.com/lxc/lxd/shared"
+	"github.com/lxc/lxd/shared/api"
 	cli "github.com/lxc/lxd/shared/cmd"
 	"github.com/lxc/lxd/shared/i18n"
 )
@@ -95,12 +96,29 @@ func (c *cmdInfo) remoteInfo(d lxd.ContainerServer) error {
 			return err
 		}
 
-		resourceData, err := yaml.Marshal(&resources)
-		if err != nil {
-			return err
+		renderCPU := func(cpu api.ResourcesCPUSocket, prefix string) {
+			fmt.Printf(prefix+i18n.G("Vendor: %v")+"\n", cpu.Vendor)
+			fmt.Printf(prefix+i18n.G("Name: %v")+"\n", cpu.Name)
+			fmt.Printf(prefix+i18n.G("Cores: %v")+"\n", cpu.Cores)
+			fmt.Printf(prefix+i18n.G("Threads: %v")+"\n", cpu.Threads)
+			fmt.Printf(prefix+i18n.G("Frequency: %vMhz (max: %vMhz)")+"\n", cpu.Frequency, cpu.FrequencyTurbo)
+		}
+
+		if len(resources.CPU.Sockets) == 1 {
+			fmt.Printf(i18n.G("CPU:") + "\n")
+			renderCPU(resources.CPU.Sockets[0], "  ")
+		} else if len(resources.CPU.Sockets) > 1 {
+			fmt.Printf(i18n.G("CPUs:") + "\n")
+			for id, cpu := range resources.CPU.Sockets {
+				fmt.Printf("  "+i18n.G("Socket %d:")+"\n", id)
+				renderCPU(cpu, "    ")
+			}
 		}
 
-		fmt.Printf("%s", resourceData)
+		fmt.Printf("\n" + i18n.G("Memory:") + "\n")
+		fmt.Printf("  "+i18n.G("Free: %v")+"\n", shared.GetByteSizeString(int64(resources.Memory.Total-resources.Memory.Used), 2))
+		fmt.Printf("  "+i18n.G("Used: %v")+"\n", shared.GetByteSizeString(int64(resources.Memory.Used), 2))
+		fmt.Printf("  "+i18n.G("Total: %v")+"\n", shared.GetByteSizeString(int64(resources.Memory.Total), 2))
 
 		return nil
 	}

From 581fb44d34e3da628419ad319a39e1ea454e5e46 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 12 Mar 2019 21:13:56 -0400
Subject: [PATCH 4/5] i18n: Update translation templates
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/de.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/el.po      | 142 +++++++++++++++++++++++++++++++++++---------------
 po/es.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/fa.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/fi.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/fr.po      | 142 +++++++++++++++++++++++++++++++++++---------------
 po/hi.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/id.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/it.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/ja.po      | 142 +++++++++++++++++++++++++++++++++++---------------
 po/ko.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/lxd.pot    | 141 ++++++++++++++++++++++++++++++++++---------------
 po/nb_NO.po   | 141 ++++++++++++++++++++++++++++++++++---------------
 po/nl.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/pa.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/pl.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/pt_BR.po   | 141 ++++++++++++++++++++++++++++++++++---------------
 po/ru.po      | 142 +++++++++++++++++++++++++++++++++++---------------
 po/sr.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/sv.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/tr.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/uk.po      | 141 ++++++++++++++++++++++++++++++++++---------------
 po/zh_Hans.po | 141 ++++++++++++++++++++++++++++++++++---------------
 23 files changed, 2281 insertions(+), 966 deletions(-)

diff --git a/po/de.po b/po/de.po
index afd9750279..54b311574a 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: 2018-11-30 03:10+0000\n"
 "Last-Translator: ssantos <ssantos at web.de>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/linux-containers/"
@@ -321,7 +321,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -399,7 +399,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Aliasse:\n"
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, fuzzy, c-format
 msgid "Architecture: %s"
 msgstr "Architektur: %s\n"
@@ -485,11 +485,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr "Bytes empfangen"
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr "Bytes gesendet"
 
@@ -501,15 +501,23 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 #, fuzzy
 msgid "CPU usage:"
 msgstr " Prozessorauslastung:"
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 #, fuzzy
 msgid "CREATED"
@@ -590,7 +598,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -725,6 +733,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
+#: lxc/info.go:102
+#, fuzzy, c-format
+msgid "Cores: %v"
+msgstr "Fehler: %v\n"
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr "Kann Verzeichnis für Zertifikate auf dem Server nicht erstellen"
@@ -793,7 +806,7 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Create the container with no profiles applied"
 msgstr "Anhalten des Containers fehlgeschlagen!"
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr "Erstellt: %s"
@@ -893,7 +906,7 @@ msgstr "Kein Zertifikat für diese Verbindung"
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -973,7 +986,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 #, fuzzy
 msgid "Disk usage:"
 msgstr " Prozessorauslastung:"
@@ -1240,6 +1253,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1455,7 +1478,7 @@ msgstr "Ungültige Quelle %s"
 msgid "Invalid target %s"
 msgstr "Ungültiges Ziel %s"
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1674,12 +1697,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1825,18 +1848,22 @@ msgstr "Gerät %s wurde von %s entfernt\n"
 msgid "Member %s renamed to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1974,11 +2001,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, fuzzy, c-format
 msgid "Network %s created"
@@ -2003,7 +2035,7 @@ msgstr "Profil %s erstellt\n"
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 #, fuzzy
 msgid "Network usage:"
 msgstr "Profil %s erstellt\n"
@@ -2101,11 +2133,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -2123,7 +2155,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2154,7 +2186,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, fuzzy, c-format
 msgid "Processes: %d"
 msgstr "Profil %s erstellt\n"
@@ -2209,7 +2241,7 @@ msgstr "kann nicht zum selben Container Namen kopieren"
 msgid "Profiles %s applied to %s"
 msgstr "Profil %s wurde auf %s angewandt\n"
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, fuzzy, c-format
 msgid "Profiles: %s"
 msgstr "Profil %s erstellt\n"
@@ -2321,7 +2353,7 @@ msgstr "Entferntes Administrator Passwort"
 msgid "Remote operation canceled by user"
 msgstr "Server Zertifikat vom Benutzer nicht akzeptiert"
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2409,7 +2441,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2576,7 +2608,7 @@ msgstr "Anhalten des Containers fehlgeschlagen!"
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2635,7 +2667,7 @@ msgstr "Profil %s erstellt\n"
 msgid "Show storage volume configurations"
 msgstr "Profil %s erstellt\n"
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr "Zeige die letzten 100 Zeilen Protokoll des Containers?"
 
@@ -2647,7 +2679,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2677,10 +2709,15 @@ msgstr "Größe: %.2vMB\n"
 msgid "Snapshot storage volumes"
 msgstr "Kein Zertifikat für diese Verbindung"
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, fuzzy, c-format
 msgid "Some containers failed to %s"
@@ -2705,7 +2742,7 @@ msgstr ""
 msgid "State: %s"
 msgstr "Erstellt: %s"
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2773,11 +2810,11 @@ msgstr "Profil %s erstellt\n"
 msgid "Store the container state"
 msgstr "Herunterfahren des Containers erzwingen."
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2869,6 +2906,11 @@ msgstr "entfernte Instanz %s existiert nicht"
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 #, fuzzy
 msgid "Time to wait for the container before killing it"
@@ -2896,10 +2938,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2927,11 +2974,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -3008,6 +3055,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -3017,6 +3069,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, fuzzy, c-format
+msgid "Vendor: %v"
+msgstr "Fehler: %v\n"
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3345,7 +3402,7 @@ msgstr "Fehler: %v\n"
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3439,7 +3496,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3561,7 +3618,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -4023,11 +4080,11 @@ msgstr ""
 "\n"
 "lxd %s <Name>\n"
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -4051,7 +4108,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/el.po b/po/el.po
index 901a74c7c7..3c5433df16 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-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/"
@@ -196,7 +196,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -271,7 +271,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -355,11 +355,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -371,15 +371,23 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 #, fuzzy
 msgid "CPU usage:"
 msgstr "  Χρήση CPU:"
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -455,7 +463,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -583,6 +591,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -643,7 +656,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -738,7 +751,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -818,7 +831,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 #, fuzzy
 msgid "Disk usage:"
 msgstr "  Χρήση CPU:"
@@ -1071,6 +1084,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1280,7 +1303,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1479,12 +1502,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1619,19 +1642,24 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 #, fuzzy
 msgid "Memory usage:"
 msgstr "  Χρήση μνήμης:"
 
+#: lxc/info.go:118
+#, fuzzy
+msgid "Memory:"
+msgstr "  Χρήση μνήμης:"
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1758,11 +1786,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1787,7 +1820,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 #, fuzzy
 msgid "Network usage:"
 msgstr "  Χρήση δικτύου:"
@@ -1882,11 +1915,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1903,7 +1936,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1934,7 +1967,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1987,7 +2020,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2094,7 +2127,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2174,7 +2207,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2330,7 +2363,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2386,7 +2419,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2398,7 +2431,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2427,10 +2460,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2454,7 +2492,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2517,11 +2555,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2608,6 +2646,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2633,10 +2676,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2664,11 +2712,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2742,6 +2790,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2751,6 +2804,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3041,7 +3099,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3122,7 +3180,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3244,7 +3302,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3635,11 +3693,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3659,7 +3717,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/es.po b/po/es.po
index 007cc4921a..3666502e8f 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: 2019-02-26 09:18+0000\n"
 "Last-Translator: Alonso José Lara Plana <alonso.lara.plana at gmail.com>\n"
 "Language-Team: Spanish <https://hosted.weblate.org/projects/linux-containers/"
@@ -268,7 +268,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -344,7 +344,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Aliases:"
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr "Arquitectura: %s"
@@ -428,11 +428,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr "Ambas: todas y el nombre del contenedor dado"
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr "Bytes recibidos"
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr "Bytes enviados"
 
@@ -444,14 +444,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr "NOMBRE COMÚN"
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr "Uso de CPU (en segundos)"
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr "Uso de CPU:"
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr "CREADO"
@@ -528,7 +536,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -656,6 +664,11 @@ msgstr "Copiando la imagen: %s"
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, fuzzy, c-format
+msgid "Cores: %v"
+msgstr "Expira: %s"
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -717,7 +730,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr "Creado: %s"
@@ -812,7 +825,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -892,7 +905,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr "Uso del disco:"
 
@@ -1146,6 +1159,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1356,7 +1379,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1556,12 +1579,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr "Registro:"
 
@@ -1696,18 +1719,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1837,11 +1864,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1866,7 +1898,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1960,11 +1992,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1981,7 +2013,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2012,7 +2044,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr "Procesos: %d"
@@ -2065,7 +2097,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2172,7 +2204,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2252,7 +2284,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2408,7 +2440,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2464,7 +2496,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2476,7 +2508,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2505,10 +2537,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2532,7 +2569,7 @@ msgstr ""
 msgid "State: %s"
 msgstr "Auto actualización: %s"
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2595,11 +2632,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2686,6 +2723,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2711,10 +2753,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2742,11 +2789,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2820,6 +2867,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2829,6 +2881,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3121,7 +3178,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, fuzzy, c-format
 msgid "expires at %s"
 msgstr "Expira: %s"
@@ -3202,7 +3259,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3324,7 +3381,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3716,11 +3773,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3740,7 +3797,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/fa.po b/po/fa.po
index d68bdf8573..180557c360 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/fi.po b/po/fi.po
index e3f7b57063..8e2f2d3507 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/fr.po b/po/fr.po
index d6182a5a6b..1bafaa7b47 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-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/"
@@ -311,7 +311,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -390,7 +390,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Alias :"
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr "Architecture : %s"
@@ -476,11 +476,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr "Octets reçus"
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr "Octets émis"
 
@@ -492,14 +492,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr "COMMON NAME"
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr "CPU utilisé (en secondes)"
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr "CPU utilisé :"
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 #, fuzzy
 msgid "CREATED"
@@ -580,7 +588,7 @@ msgid "Client version: %s\n"
 msgstr "Afficher la version du client"
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -719,6 +727,11 @@ msgstr "Copie de l'image : %s"
 msgid "Copying the storage volume: %s"
 msgstr "Copie de l'image : %s"
 
+#: lxc/info.go:102
+#, fuzzy, c-format
+msgid "Cores: %v"
+msgstr "erreur : %v"
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr "Impossible de créer le dossier de stockage des certificats serveurs"
@@ -803,7 +816,7 @@ msgstr "Copie de l'image : %s"
 msgid "Create the container with no profiles applied"
 msgstr "L'arrêt du conteneur a échoué !"
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr "Créé : %s"
@@ -903,7 +916,7 @@ msgstr "Copie de l'image : %s"
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -983,7 +996,7 @@ msgstr "Désactiver l'allocation pseudo-terminal"
 msgid "Disable stdin (reads from /dev/null)"
 msgstr "Désactiver stdin (lecture à partir de /dev/null)"
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 #, fuzzy
 msgid "Disk usage:"
 msgstr "  Disque utilisé :"
@@ -1257,6 +1270,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1481,7 +1504,7 @@ msgstr "Source invalide %s"
 msgid "Invalid target %s"
 msgstr "Cible invalide %s"
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr "IPs :"
 
@@ -1745,12 +1768,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr "Journal : "
 
@@ -1893,19 +1916,24 @@ msgstr "Profil %s supprimé de %s"
 msgid "Member %s renamed to %s"
 msgstr "Profil %s ajouté à %s"
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr "Mémoire (courante)"
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr "Mémoire (pointe)"
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 #, fuzzy
 msgid "Memory usage:"
 msgstr "  Mémoire utilisée :"
 
+#: lxc/info.go:118
+#, fuzzy
+msgid "Memory:"
+msgstr "  Mémoire utilisée :"
+
 #: lxc/move.go:230
 #, fuzzy
 msgid "Migration API failure"
@@ -2046,11 +2074,16 @@ msgstr "NOM"
 msgid "NO"
 msgstr "NON"
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr "Nom : %s"
 
+#: lxc/info.go:101
+#, fuzzy, c-format
+msgid "Name: %v"
+msgstr "Nom : %s"
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -2075,7 +2108,7 @@ msgstr "Le réseau %s a été créé"
 msgid "Network name"
 msgstr "Nom du réseau"
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 #, fuzzy
 msgid "Network usage:"
 msgstr "  Réseau utilisé :"
@@ -2180,11 +2213,11 @@ msgstr "PROTOCOLE"
 msgid "PUBLIC"
 msgstr "PUBLIC"
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr "Paquets reçus"
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr "Paquets émis"
 
@@ -2202,7 +2235,7 @@ msgstr "Création du conteneur"
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr "Pid : %d"
@@ -2233,7 +2266,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr "Processus : %d"
@@ -2287,7 +2320,7 @@ msgstr "Profil à appliquer au nouveau conteneur"
 msgid "Profiles %s applied to %s"
 msgstr "Profils %s appliqués à %s"
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr "Profils : %s"
@@ -2400,7 +2433,7 @@ msgstr "Mot de passe de l'administrateur distant"
 msgid "Remote operation canceled by user"
 msgstr "Certificat serveur rejeté par l'utilisateur"
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr "Serveur distant : %s"
@@ -2487,7 +2520,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr "Requérir une confirmation de l'utilisateur"
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr "Ressources :"
 
@@ -2660,7 +2693,7 @@ msgstr "L'arrêt du conteneur a échoué !"
 msgid "Show container or server configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 #, fuzzy
 msgid "Show container or server information"
 msgstr "Afficher des informations supplémentaires"
@@ -2725,7 +2758,7 @@ msgstr "Afficher la configuration étendue"
 msgid "Show storage volume configurations"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr "Afficher les 100 dernières lignes du journal du conteneur ?"
 
@@ -2738,7 +2771,7 @@ msgstr "impossible de supprimer le serveur distant par défaut"
 msgid "Show the expanded configuration"
 msgstr "Afficher la configuration étendue"
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2768,10 +2801,15 @@ msgstr "Taille : %.2f Mo"
 msgid "Snapshot storage volumes"
 msgstr "Copie de l'image : %s"
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr "Instantanés :"
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, fuzzy, c-format
 msgid "Some containers failed to %s"
@@ -2796,7 +2834,7 @@ msgstr "Démarrage de %s"
 msgid "State: %s"
 msgstr "État : %s"
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr "État : %s"
@@ -2863,11 +2901,11 @@ msgstr "Image copiée avec succès !"
 msgid "Store the container state"
 msgstr "Forcer l'arrêt du conteneur (seulement pour stop)"
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr "Swap (courant)"
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr "Swap (pointe)"
 
@@ -2964,6 +3002,11 @@ msgstr "le périphérique indiqué ne correspond pas au réseau"
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr "Il n'existe pas d'\"image\".  Vouliez-vous un alias ?"
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr "Temps d'attente du conteneur avant de le tuer"
@@ -2991,10 +3034,15 @@ msgstr ""
 "Pour démarrer votre premier conteneur, essayer : lxc launch ubuntu:16.04"
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -3022,11 +3070,11 @@ msgstr "Transfert de l'image : %s"
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr "Essayer `lxc info --show-log %s` pour plus d'informations"
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr "Type : éphémère"
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr "Type : persistant"
 
@@ -3108,6 +3156,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, fuzzy, c-format
+msgid "Used: %v"
+msgstr "Publié : %s"
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 #, fuzzy
 msgid "User aborted delete operation"
@@ -3118,6 +3171,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, fuzzy, c-format
+msgid "Vendor: %v"
+msgstr "erreur : %v"
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3456,7 +3514,7 @@ msgstr "erreur : %v"
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, fuzzy, c-format
 msgid "expires at %s"
 msgstr "Expire : %s"
@@ -3554,7 +3612,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3676,7 +3734,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 #, fuzzy
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
@@ -4186,11 +4244,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr "à suivi d'état"
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr "sans suivi d'état"
 
@@ -4216,7 +4274,7 @@ msgstr "impossible de supprimer le serveur distant par défaut"
 msgid "switch [<remote>:] <project>"
 msgstr "impossible de supprimer le serveur distant par défaut"
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr "pris à %s"
diff --git a/po/hi.po b/po/hi.po
index 8d069022b9..b39bd6378a 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/id.po b/po/id.po
index 0511d77c37..b9c3ccdaef 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/it.po b/po/it.po
index 8d03259820..21adebe384 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: 2017-08-18 14:22+0000\n"
 "Last-Translator: Alberto Donato <alberto.donato at gmail.com>\n"
 "Language-Team: Italian <https://hosted.weblate.org/projects/linux-containers/"
@@ -233,7 +233,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -309,7 +309,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Alias:"
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr "Architettura: %s"
@@ -393,11 +393,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr "Bytes ricevuti"
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr "Byte inviati"
 
@@ -409,14 +409,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr "NOME COMUNE"
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr "Utilizzo CPU (in secondi)"
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr "Utilizzo CPU:"
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 #, fuzzy
 msgid "CREATED"
@@ -493,7 +501,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -621,6 +629,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -683,7 +696,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -778,7 +791,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -858,7 +871,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr "Utilizzo disco:"
 
@@ -1113,6 +1126,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1325,7 +1348,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1526,12 +1549,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1668,18 +1691,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1808,11 +1835,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1837,7 +1869,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1931,11 +1963,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1953,7 +1985,7 @@ msgstr "Creazione del container in corso"
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1984,7 +2016,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2037,7 +2069,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2144,7 +2176,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2224,7 +2256,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2381,7 +2413,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2437,7 +2469,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2449,7 +2481,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2478,10 +2510,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2506,7 +2543,7 @@ msgstr ""
 msgid "State: %s"
 msgstr "Aggiornamento automatico: %s"
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2570,11 +2607,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr "Creazione del container in corso"
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2662,6 +2699,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2687,10 +2729,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2718,11 +2765,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2797,6 +2844,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2806,6 +2858,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3099,7 +3156,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3180,7 +3237,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3302,7 +3359,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3694,11 +3751,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr "senza stato"
 
@@ -3718,7 +3775,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr "salvato alle %s"
diff --git a/po/ja.po b/po/ja.po
index 9b1d6112d6..9bc4b337e2 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: 2019-02-16 19:26+0000\n"
 "Last-Translator: KATOH Yasufumi <karma at jazz.email.ne.jp>\n"
 "Language-Team: Japanese <https://hosted.weblate.org/projects/linux-"
@@ -197,7 +197,7 @@ msgid "--refresh can only be used with containers"
 msgstr "--refresh はコンテナの場合のみ使えます"
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 #, fuzzy
 msgid "--target cannot be used with containers"
 msgstr "--refresh はコンテナの場合のみ使えます"
@@ -273,7 +273,7 @@ msgstr "エイリアスを指定してください"
 msgid "Aliases:"
 msgstr "エイリアス:"
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr "アーキテクチャ: %s"
@@ -362,11 +362,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr "--all とコンテナ名を両方同時に指定することはできません"
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr "受信バイト数"
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr "送信バイト数"
 
@@ -378,14 +378,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr "CPU使用量(秒)"
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr "CPU使用量:"
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -463,7 +471,7 @@ msgid "Client version: %s\n"
 msgstr "クライアントバージョン: %s\n"
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -599,6 +607,11 @@ msgstr "イメージのコピー中: %s"
 msgid "Copying the storage volume: %s"
 msgstr "ストレージボリュームのコピー中: %s"
 
+#: lxc/info.go:102
+#, fuzzy, c-format
+msgid "Cores: %v"
+msgstr "エラー: %v"
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr "サーバ証明書格納用のディレクトリを作成できません"
@@ -663,7 +676,7 @@ msgstr "ストレージプールを作成します"
 msgid "Create the container with no profiles applied"
 msgstr "プロファイルを適用しないコンテナを作成します"
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr "作成日時: %s"
@@ -758,7 +771,7 @@ msgstr "ストレージボリュームを削除します"
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -838,7 +851,7 @@ msgstr "擬似端末の割り当てを無効にします"
 msgid "Disable stdin (reads from /dev/null)"
 msgstr "標準入力を無効にします (/dev/null から読み込みます)"
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr "ディスク使用量:"
 
@@ -1116,6 +1129,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr "フォーマット (csv|json|table|yaml)"
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr "すべてのコマンドに対する man ページを作成します"
@@ -1334,7 +1357,7 @@ msgstr "不正なソース %s"
 msgid "Invalid target %s"
 msgstr "不正な送り先 %s"
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr "IPアドレス:"
 
@@ -1618,12 +1641,12 @@ msgstr "信頼済みクライアントを一覧表示します"
 msgid "List, show and delete background operations"
 msgstr "バックグラウンド操作の一覧表示、表示、削除を行います"
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr "ロケーション: %s"
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr "ログ:"
 
@@ -1775,18 +1798,23 @@ msgstr "メンバ %s が削除されました"
 msgid "Member %s renamed to %s"
 msgstr "メンバ名 %s を %s に変更しました"
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr "メモリ (現在値)"
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr "メモリ (ピーク)"
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr "メモリ消費量:"
 
+#: lxc/info.go:118
+#, fuzzy
+msgid "Memory:"
+msgstr "メモリ消費量:"
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr "マイグレーション API が失敗しました"
@@ -1918,11 +1946,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr "名前: %s"
 
+#: lxc/info.go:101
+#, fuzzy, c-format
+msgid "Name: %v"
+msgstr "名前: %s"
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1947,7 +1980,7 @@ msgstr "ネットワーク名 %s を %s に変更しました"
 msgid "Network name"
 msgstr "ネットワーク名:"
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr "ネットワーク使用状況:"
 
@@ -2041,11 +2074,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr "受信パケット"
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr "送信パケット"
 
@@ -2062,7 +2095,7 @@ msgstr "コンテナを一時停止します"
 msgid "Perform an incremental copy"
 msgstr "インクリメンタルコピーを実行します"
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr "Pid: %d"
@@ -2093,7 +2126,7 @@ msgstr "レスポンスをそのまま表示します"
 msgid "Print version number"
 msgstr "バージョン番号を表示します"
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr "プロセス数: %d"
@@ -2146,7 +2179,7 @@ msgstr "移動先のコンテナに適用するプロファイル"
 msgid "Profiles %s applied to %s"
 msgstr "プロファイル %s が %s に追加されました"
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr "プロファイル: %s"
@@ -2253,7 +2286,7 @@ msgstr "リモートの管理者パスワード"
 msgid "Remote operation canceled by user"
 msgstr "リモート操作がユーザによってキャンセルされました"
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr "リモート名: %s"
@@ -2334,7 +2367,7 @@ msgstr "ストレージボリューム名 \"%s\" を \"%s\" に変更しまし
 msgid "Require user confirmation"
 msgstr "ユーザの確認を要求する"
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr "リソース:"
 
@@ -2496,7 +2529,7 @@ msgstr "コンテナのメタデータファイルを表示します"
 msgid "Show container or server configurations"
 msgstr "コンテナもしくはサーバの設定を表示します"
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr "コンテナもしくはサーバの情報を表示します"
 
@@ -2552,7 +2585,7 @@ msgstr "ストレージボリュームの設定を表示します"
 msgid "Show storage volume configurations"
 msgstr "ストレージボリュームの設定を表示する"
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr "コンテナログの最後の 100 行を表示しますか?"
 
@@ -2564,7 +2597,7 @@ msgstr "デフォルトのリモートを表示します"
 msgid "Show the expanded configuration"
 msgstr "拡張した設定を表示する"
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr "サーバで使用可能なリソースを表示します"
 
@@ -2593,10 +2626,15 @@ msgstr "サイズ: %.2fMB"
 msgid "Snapshot storage volumes"
 msgstr "ストレージボリュームのスナップショットを取得します"
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr "スナップショット:"
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2620,7 +2658,7 @@ msgstr "%s を起動中"
 msgid "State: %s"
 msgstr "状態: %s"
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr "状態: %s"
@@ -2683,11 +2721,11 @@ msgstr "ストレージボリュームの移動が成功しました!"
 msgid "Store the container state"
 msgstr "コンテナの状態を保存します"
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr "Swap (現在値)"
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr "Swap (ピーク)"
 
@@ -2781,6 +2819,11 @@ msgstr ""
 "publish 先にはイメージ名は指定できません。\"--alias\" オプションを使ってくだ"
 "さい。"
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr "コンテナを強制停止するまでの時間"
@@ -2810,12 +2853,17 @@ msgstr ""
 "さい"
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 "--target オプションは、コピー先のリモートサーバがクラスタに属していなければな"
 "りません"
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr "転送モード。pull, push, relay のいずれか(デフォルトはpull)"
@@ -2843,11 +2891,11 @@ msgstr "イメージを転送中: %s"
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr "更に情報を得るために `lxc info --show-log %s` を実行してみてください"
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr "タイプ: ephemeral"
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr "タイプ: persistent"
 
@@ -2923,6 +2971,11 @@ msgstr ""
 "最適化された形でストレージドライバを使います (同様のプール上にのみリストアで"
 "きます)"
 
+#: lxc/info.go:120
+#, fuzzy, c-format
+msgid "Used: %v"
+msgstr "アップロード日時: %s"
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr "ユーザが削除操作を中断しました"
@@ -2934,6 +2987,11 @@ msgstr ""
 "ユーザからのシグナルを 3 度受信したので exit しました。リモート操作は実行し続"
 "けます"
 
+#: lxc/info.go:100
+#, fuzzy, c-format
+msgid "Vendor: %v"
+msgstr "エラー: %v"
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr "処理が完全に終わるまで待ちます"
@@ -3231,7 +3289,7 @@ msgstr "エラー: %v"
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, fuzzy, c-format
 msgid "expires at %s"
 msgstr "失効日時: %s"
@@ -3314,7 +3372,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3470,7 +3528,7 @@ msgstr ""
 "lxc import backup0.tar.gz\n"
 "    backup0.tar.gz を使って新しいコンテナを作成します。"
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3938,11 +3996,11 @@ msgstr "使用量"
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr "start [<remote>:]<container> [[<remote>:]<container>...]"
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr "ステートフル"
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr "ステートレス"
 
@@ -3962,7 +4020,7 @@ msgstr "switch <remote>"
 msgid "switch [<remote>:] <project>"
 msgstr "switch [<remote>:] <project>"
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr "%s に取得しました"
diff --git a/po/ko.po b/po/ko.po
index ebd3e54fb4..87df8a7255 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/lxd.pot b/po/lxd.pot
index a3084690cc..0e84f45982 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: 2019-03-11 15:34-0400\n"
+        "POT-Creation-Date: 2019-03-12 21:13-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"
@@ -184,7 +184,7 @@ msgstr  ""
 msgid   "--refresh can only be used with containers"
 msgstr  ""
 
-#: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624 lxc/info.go:126
+#: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624 lxc/info.go:144
 msgid   "--target cannot be used with containers"
 msgstr  ""
 
@@ -259,7 +259,7 @@ msgstr  ""
 msgid   "Aliases:"
 msgstr  ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid   "Architecture: %s"
 msgstr  ""
@@ -341,11 +341,11 @@ msgstr  ""
 msgid   "Both --all and container name given"
 msgstr  ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid   "Bytes received"
 msgstr  ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid   "Bytes sent"
 msgstr  ""
 
@@ -357,14 +357,22 @@ msgstr  ""
 msgid   "COMMON NAME"
 msgstr  ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid   "CPU usage (in seconds)"
 msgstr  ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid   "CPU usage:"
 msgstr  ""
 
+#: lxc/info.go:108
+msgid   "CPU:"
+msgstr  ""
+
+#: lxc/info.go:111
+msgid   "CPUs:"
+msgstr  ""
+
 #: lxc/operation.go:159
 msgid   "CREATED"
 msgstr  ""
@@ -438,7 +446,7 @@ msgstr  ""
 msgid   "Client version: %s\n"
 msgstr  ""
 
-#: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571 lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732 lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591 lxc/storage.go:664 lxc/storage.go:747 lxc/storage_volume.go:307 lxc/storage_volume.go:467 lxc/storage_volume.go:544 lxc/storage_volume.go:786 lxc/storage_volume.go:983 lxc/storage_volume.go:1152 lxc/storage_volume.go:1182 lxc/storage_volume.go:1285 lxc/storage_volume.go:1368 lxc/storage_volume.go:1461
+#: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571 lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48 lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732 lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188 lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591 lxc/storage.go:664 lxc/storage.go:747 lxc/storage_volume.go:307 lxc/storage_volume.go:467 lxc/storage_volume.go:544 lxc/storage_volume.go:786 lxc/storage_volume.go:983 lxc/storage_volume.go:1152 lxc/storage_volume.go:1182 lxc/storage_volume.go:1285 lxc/storage_volume.go:1368 lxc/storage_volume.go:1461
 msgid   "Cluster member name"
 msgstr  ""
 
@@ -553,6 +561,11 @@ msgstr  ""
 msgid   "Copying the storage volume: %s"
 msgstr  ""
 
+#: lxc/info.go:102
+#, c-format
+msgid   "Cores: %v"
+msgstr  ""
+
 #: lxc/remote.go:271
 msgid   "Could not create server cert dir"
 msgstr  ""
@@ -612,7 +625,7 @@ msgstr  ""
 msgid   "Create the container with no profiles applied"
 msgstr  ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid   "Created: %s"
 msgstr  ""
@@ -686,7 +699,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:23 lxc/alias.go:55 lxc/alias.go:99 lxc/alias.go:147 lxc/alias.go:198 lxc/cluster.go:29 lxc/cluster.go:66 lxc/cluster.go:149 lxc/cluster.go:199 lxc/cluster.go:249 lxc/cluster.go:334 lxc/config.go:32 lxc/config.go:91 lxc/config.go:374 lxc/config.go:455 lxc/config.go:567 lxc/config.go:686 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321 lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:589 lxc/config_device.go:657 lxc/config_metadata.go:29 lxc/config_metadata.go:54 lxc/config_metadata.go:176 lxc/config_template.go:30 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31 lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187 lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265 lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793 lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26 lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149 lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378 lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729 lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004 lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101 lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167 lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407 lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754 lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30 lxc/project.go:87 lxc/project.go:152 lxc/project.go:215 lxc/project.go:335 lxc/project.go:383 lxc/project.go:472 lxc/project.go:527 lxc/project.go:587 lxc/project.go:616 lxc/project.go:669 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:88 lxc/remote.go:416 lxc/remote.go:452 lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:680 lxc/remote.go:718 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:506 lxc/storage.go:588 lxc/storage.go:660 lxc/storage.go:744 lxc/storage_volume.go:34 lxc/storage_volume.go:141 lxc/storage_volume.go:220 lxc/storage_volume.go:303 lxc/storage_volume.go:464 lxc/storage_volume.go:541 lxc/storage_volume.go:617 lxc/storage_volume.go:699 lxc/storage_volume.go:780 lxc/storage_volume.go:980 lxc/storage_volume.go:1069 lxc/storage_volume.go:1148 lxc/storage_volume.go:1179 lxc/storage_volume.go:1282 lxc/storage_volume.go:1359 lxc/storage_volume.go:1458 lxc/storage_volume.go:1489 lxc/storage_volume.go:1560 lxc/version.go:22
+#: lxc/action.go:31 lxc/action.go:50 lxc/action.go:70 lxc/action.go:91 lxc/alias.go:23 lxc/alias.go:55 lxc/alias.go:99 lxc/alias.go:147 lxc/alias.go:198 lxc/cluster.go:29 lxc/cluster.go:66 lxc/cluster.go:149 lxc/cluster.go:199 lxc/cluster.go:249 lxc/cluster.go:334 lxc/config.go:32 lxc/config.go:91 lxc/config.go:374 lxc/config.go:455 lxc/config.go:567 lxc/config.go:686 lxc/config_device.go:24 lxc/config_device.go:76 lxc/config_device.go:182 lxc/config_device.go:255 lxc/config_device.go:321 lxc/config_device.go:410 lxc/config_device.go:500 lxc/config_device.go:589 lxc/config_device.go:657 lxc/config_metadata.go:29 lxc/config_metadata.go:54 lxc/config_metadata.go:176 lxc/config_template.go:30 lxc/config_template.go:67 lxc/config_template.go:110 lxc/config_template.go:152 lxc/config_template.go:236 lxc/config_template.go:298 lxc/config_trust.go:30 lxc/config_trust.go:59 lxc/config_trust.go:115 lxc/config_trust.go:197 lxc/console.go:32 lxc/copy.go:40 lxc/delete.go:30 lxc/exec.go:39 lxc/export.go:31 lxc/file.go:42 lxc/file.go:75 lxc/file.go:124 lxc/file.go:187 lxc/file.go:377 lxc/image.go:42 lxc/image.go:131 lxc/image.go:265 lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793 lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26 lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149 lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35 lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19 lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110 lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378 lxc/network.go:463 lxc/network.go:548 lxc/network.go:671 lxc/network.go:729 lxc/network.go:809 lxc/network.go:929 lxc/network.go:1004 lxc/network.go:1054 lxc/network.go:1123 lxc/network.go:1185 lxc/operation.go:25 lxc/operation.go:54 lxc/operation.go:101 lxc/operation.go:177 lxc/profile.go:32 lxc/profile.go:104 lxc/profile.go:167 lxc/profile.go:247 lxc/profile.go:303 lxc/profile.go:357 lxc/profile.go:407 lxc/profile.go:531 lxc/profile.go:580 lxc/profile.go:678 lxc/profile.go:754 lxc/profile.go:804 lxc/profile.go:863 lxc/profile.go:917 lxc/project.go:30 lxc/project.go:87 lxc/project.go:152 lxc/project.go:215 lxc/project.go:335 lxc/project.go:383 lxc/project.go:472 lxc/project.go:527 lxc/project.go:587 lxc/project.go:616 lxc/project.go:669 lxc/publish.go:35 lxc/query.go:30 lxc/remote.go:37 lxc/remote.go:88 lxc/remote.go:416 lxc/remote.go:452 lxc/remote.go:568 lxc/remote.go:630 lxc/remote.go:680 lxc/remote.go:718 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:506 lxc/storage.go:588 lxc/storage.go:660 lxc/storage.go:744 lxc/storage_volume.go:34 lxc/storage_volume.go:141 lxc/storage_volume.go:220 lxc/storage_volume.go:303 lxc/storage_volume.go:464 lxc/storage_volume.go:541 lxc/storage_volume.go:617 lxc/storage_volume.go:699 lxc/storage_volume.go:780 lxc/storage_volume.go:980 lxc/storage_volume.go:1069 lxc/storage_volume.go:1148 lxc/storage_volume.go:1179 lxc/storage_volume.go:1282 lxc/storage_volume.go:1359 lxc/storage_volume.go:1458 lxc/storage_volume.go:1489 lxc/storage_volume.go:1560 lxc/version.go:22
 msgid   "Description"
 msgstr  ""
 
@@ -738,7 +751,7 @@ msgstr  ""
 msgid   "Disable stdin (reads from /dev/null)"
 msgstr  ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid   "Disk usage:"
 msgstr  ""
 
@@ -976,6 +989,16 @@ msgstr  ""
 msgid   "Format (csv|json|table|yaml)"
 msgstr  ""
 
+#: lxc/info.go:119
+#, c-format
+msgid   "Free: %v"
+msgstr  ""
+
+#: lxc/info.go:104
+#, c-format
+msgid   "Frequency: %vMhz (max: %vMhz)"
+msgstr  ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid   "Generate manpages for all commands"
 msgstr  ""
@@ -1180,7 +1203,7 @@ msgstr  ""
 msgid   "Invalid target %s"
 msgstr  ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid   "Ips:"
 msgstr  ""
 
@@ -1373,12 +1396,12 @@ msgstr  ""
 msgid   "List, show and delete background operations"
 msgstr  ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid   "Location: %s"
 msgstr  ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid   "Log:"
 msgstr  ""
 
@@ -1510,18 +1533,22 @@ msgstr  ""
 msgid   "Member %s renamed to %s"
 msgstr  ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid   "Memory (current)"
 msgstr  ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid   "Memory (peak)"
 msgstr  ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid   "Memory usage:"
 msgstr  ""
 
+#: lxc/info.go:118
+msgid   "Memory:"
+msgstr  ""
+
 #: lxc/move.go:230
 msgid   "Migration API failure"
 msgstr  ""
@@ -1625,11 +1652,16 @@ msgstr  ""
 msgid   "NO"
 msgstr  ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid   "Name: %s"
 msgstr  ""
 
+#: lxc/info.go:101
+#, c-format
+msgid   "Name: %v"
+msgstr  ""
+
 #: lxc/network.go:310
 #, c-format
 msgid   "Network %s created"
@@ -1654,7 +1686,7 @@ msgstr  ""
 msgid   "Network name"
 msgstr  ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid   "Network usage:"
 msgstr  ""
 
@@ -1748,11 +1780,11 @@ msgstr  ""
 msgid   "PUBLIC"
 msgstr  ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid   "Packets received"
 msgstr  ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid   "Packets sent"
 msgstr  ""
 
@@ -1769,7 +1801,7 @@ msgstr  ""
 msgid   "Perform an incremental copy"
 msgstr  ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid   "Pid: %d"
 msgstr  ""
@@ -1798,7 +1830,7 @@ msgstr  ""
 msgid   "Print version number"
 msgstr  ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid   "Processes: %d"
 msgstr  ""
@@ -1851,7 +1883,7 @@ msgstr  ""
 msgid   "Profiles %s applied to %s"
 msgstr  ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid   "Profiles: %s"
 msgstr  ""
@@ -1957,7 +1989,7 @@ msgstr  ""
 msgid   "Remote operation canceled by user"
 msgstr  ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid   "Remote: %s"
 msgstr  ""
@@ -2036,7 +2068,7 @@ msgstr  ""
 msgid   "Require user confirmation"
 msgstr  ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid   "Resources:"
 msgstr  ""
 
@@ -2190,7 +2222,7 @@ msgstr  ""
 msgid   "Show container or server configurations"
 msgstr  ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid   "Show container or server information"
 msgstr  ""
 
@@ -2246,7 +2278,7 @@ msgstr  ""
 msgid   "Show storage volume configurations"
 msgstr  ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid   "Show the container's last 100 log lines?"
 msgstr  ""
 
@@ -2258,7 +2290,7 @@ msgstr  ""
 msgid   "Show the expanded configuration"
 msgstr  ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid   "Show the resources available to the server"
 msgstr  ""
 
@@ -2287,10 +2319,15 @@ msgstr  ""
 msgid   "Snapshot storage volumes"
 msgstr  ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid   "Snapshots:"
 msgstr  ""
 
+#: lxc/info.go:113
+#, c-format
+msgid   "Socket %d:"
+msgstr  ""
+
 #: lxc/action.go:259
 #, c-format
 msgid   "Some containers failed to %s"
@@ -2314,7 +2351,7 @@ msgstr  ""
 msgid   "State: %s"
 msgstr  ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid   "Status: %s"
 msgstr  ""
@@ -2377,11 +2414,11 @@ msgstr  ""
 msgid   "Store the container state"
 msgstr  ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid   "Swap (current)"
 msgstr  ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid   "Swap (peak)"
 msgstr  ""
 
@@ -2463,6 +2500,11 @@ msgstr  ""
 msgid   "There is no \"image name\".  Did you want an alias?"
 msgstr  ""
 
+#: lxc/info.go:103
+#, c-format
+msgid   "Threads: %v"
+msgstr  ""
+
 #: lxc/action.go:121
 msgid   "Time to wait for the container before killing it"
 msgstr  ""
@@ -2487,10 +2529,15 @@ msgstr  ""
 msgid   "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr  ""
 
-#: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604 lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604 lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid   "To use --target, the destination remote must be a cluster"
 msgstr  ""
 
+#: lxc/info.go:121
+#, c-format
+msgid   "Total: %v"
+msgstr  ""
+
 #: lxc/storage_volume.go:1151
 msgid   "Transfer mode, one of pull (default), push or relay"
 msgstr  ""
@@ -2518,11 +2565,11 @@ msgstr  ""
 msgid   "Try `lxc info --show-log %s` for more info"
 msgstr  ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid   "Type: ephemeral"
 msgstr  ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid   "Type: persistent"
 msgstr  ""
 
@@ -2594,6 +2641,11 @@ msgstr  ""
 msgid   "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr  ""
 
+#: lxc/info.go:120
+#, c-format
+msgid   "Used: %v"
+msgstr  ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid   "User aborted delete operation"
 msgstr  ""
@@ -2602,6 +2654,11 @@ msgstr  ""
 msgid   "User signaled us three times, exiting. The remote operation will keep running"
 msgstr  ""
 
+#: lxc/info.go:100
+#, c-format
+msgid   "Vendor: %v"
+msgstr  ""
+
 #: lxc/query.go:38
 msgid   "Wait for the operation to complete"
 msgstr  ""
@@ -2883,7 +2940,7 @@ msgstr  ""
 msgid   "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr  ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid   "expires at %s"
 msgstr  ""
@@ -2960,7 +3017,7 @@ msgstr  ""
 msgid   "info [<remote>:]<pool>"
 msgstr  ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid   "info [<remote>:][<container>]"
 msgstr  ""
 
@@ -3068,7 +3125,7 @@ msgid   "lxc import backup0.tar.gz\n"
         "    Create a new container using backup0.tar.gz as the source."
 msgstr  ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid   "lxc info [<remote>:]<container> [--show-log]\n"
         "    For container information.\n"
         "\n"
@@ -3429,11 +3486,11 @@ msgstr  ""
 msgid   "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr  ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid   "stateful"
 msgstr  ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid   "stateless"
 msgstr  ""
 
@@ -3453,7 +3510,7 @@ msgstr  ""
 msgid   "switch [<remote>:] <project>"
 msgstr  ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid   "taken at %s"
 msgstr  ""
diff --git a/po/nb_NO.po b/po/nb_NO.po
index 203889a998..4b97ff3cc4 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/nl.po b/po/nl.po
index a65764f7c2..71cea4007c 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: 2019-02-26 09:18+0000\n"
 "Last-Translator: Heimen Stoffels <vistausss at outlook.com>\n"
 "Language-Team: Dutch <https://hosted.weblate.org/projects/linux-containers/"
@@ -242,7 +242,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -317,7 +317,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -401,11 +401,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -417,14 +417,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -500,7 +508,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -628,6 +636,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -688,7 +701,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -783,7 +796,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -863,7 +876,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1115,6 +1128,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1324,7 +1347,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1523,12 +1546,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1663,18 +1686,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1801,11 +1828,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1830,7 +1862,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1924,11 +1956,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1945,7 +1977,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1976,7 +2008,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2029,7 +2061,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2136,7 +2168,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2216,7 +2248,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2372,7 +2404,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2428,7 +2460,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2440,7 +2472,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2469,10 +2501,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2496,7 +2533,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2559,11 +2596,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2650,6 +2687,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2675,10 +2717,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2706,11 +2753,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2784,6 +2831,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2793,6 +2845,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3083,7 +3140,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3164,7 +3221,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3286,7 +3343,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3677,11 +3734,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3701,7 +3758,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/pa.po b/po/pa.po
index 9c9885e7a9..ba532ae2d6 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/pl.po b/po/pl.po
index e33a8e408b..ea742e135c 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-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/"
@@ -242,7 +242,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -317,7 +317,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -401,11 +401,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -417,14 +417,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -500,7 +508,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -628,6 +636,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -688,7 +701,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -783,7 +796,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -863,7 +876,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1115,6 +1128,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1324,7 +1347,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1523,12 +1546,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1663,18 +1686,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1801,11 +1828,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1830,7 +1862,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1924,11 +1956,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1945,7 +1977,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1976,7 +2008,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2029,7 +2061,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2136,7 +2168,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2216,7 +2248,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2372,7 +2404,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2428,7 +2460,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2440,7 +2472,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2469,10 +2501,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2496,7 +2533,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2559,11 +2596,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2650,6 +2687,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2675,10 +2717,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2706,11 +2753,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2784,6 +2831,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2793,6 +2845,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3083,7 +3140,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3164,7 +3221,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3286,7 +3343,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3677,11 +3734,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3701,7 +3758,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 77beadfd9c..e2a5c68631 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: 2019-02-16 19:26+0000\n"
 "Last-Translator: Renato dos Santos <shazaum at gmail.com>\n"
 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@@ -313,7 +313,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -388,7 +388,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -472,11 +472,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -488,14 +488,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -571,7 +579,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -699,6 +707,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -759,7 +772,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -854,7 +867,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -934,7 +947,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1187,6 +1200,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1397,7 +1420,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1596,12 +1619,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1736,18 +1759,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1874,11 +1901,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1903,7 +1935,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1997,11 +2029,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -2018,7 +2050,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2049,7 +2081,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2102,7 +2134,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2209,7 +2241,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2289,7 +2321,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2446,7 +2478,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2502,7 +2534,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2514,7 +2546,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2543,10 +2575,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2570,7 +2607,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2633,11 +2670,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2724,6 +2761,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2749,10 +2791,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2780,11 +2827,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2859,6 +2906,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2868,6 +2920,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3158,7 +3215,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3239,7 +3296,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3361,7 +3418,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3752,11 +3809,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3776,7 +3833,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 073fbab422..0c1e25fc47 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-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/"
@@ -303,7 +303,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -380,7 +380,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr "Псевдонимы:"
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr "Архитектура: %s"
@@ -464,11 +464,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr "Получено байтов"
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr "Отправлено байтов"
 
@@ -480,15 +480,23 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr "ОБЩЕЕ ИМЯ"
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr "Использование ЦП (в секундах)"
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 #, fuzzy
 msgid "CPU usage:"
 msgstr " Использование ЦП:"
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 #, fuzzy
 msgid "CREATED"
@@ -565,7 +573,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -694,6 +702,11 @@ msgstr "Копирование образа: %s"
 msgid "Copying the storage volume: %s"
 msgstr "Копирование образа: %s"
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr "Не удалось создать каталог сертификата сервера"
@@ -759,7 +772,7 @@ msgstr "Копирование образа: %s"
 msgid "Create the container with no profiles applied"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -857,7 +870,7 @@ msgstr "Копирование образа: %s"
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -937,7 +950,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 #, fuzzy
 msgid "Disk usage:"
 msgstr " Использование диска:"
@@ -1194,6 +1207,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1406,7 +1429,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1608,12 +1631,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1751,19 +1774,24 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 #, fuzzy
 msgid "Memory usage:"
 msgstr " Использование памяти:"
 
+#: lxc/info.go:118
+#, fuzzy
+msgid "Memory:"
+msgstr " Использование памяти:"
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1894,11 +1922,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1923,7 +1956,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 #, fuzzy
 msgid "Network usage:"
 msgstr " Использование сети:"
@@ -2019,11 +2052,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -2040,7 +2073,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -2071,7 +2104,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -2124,7 +2157,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2232,7 +2265,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2316,7 +2349,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2474,7 +2507,7 @@ msgstr "Невозможно добавить имя контейнера в с
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2531,7 +2564,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2543,7 +2576,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2573,10 +2606,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr "Копирование образа: %s"
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, fuzzy, c-format
 msgid "Some containers failed to %s"
@@ -2600,7 +2638,7 @@ msgstr ""
 msgid "State: %s"
 msgstr "Авто-обновление: %s"
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2665,11 +2703,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr "Невозможно добавить имя контейнера в список"
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2756,6 +2794,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2781,10 +2824,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2812,11 +2860,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2890,6 +2938,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2899,6 +2952,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3218,7 +3276,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3311,7 +3369,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3433,7 +3491,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3880,11 +3938,11 @@ msgstr ""
 "\n"
 "lxc %s [<remote>:]<container> [[<remote>:]<container>...]%s"
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3908,7 +3966,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 13632a3ead..60a7bfc58f 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 86590c792a..a2d3733009 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 86053a8eda..c3901656fb 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 93b056738f..9ba646de3d 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -193,7 +193,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -268,7 +268,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -352,11 +352,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -368,14 +368,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -451,7 +459,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -579,6 +587,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -639,7 +652,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -734,7 +747,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -814,7 +827,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1066,6 +1079,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1275,7 +1298,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1474,12 +1497,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1614,18 +1637,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1752,11 +1779,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1781,7 +1813,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1875,11 +1907,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1896,7 +1928,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1927,7 +1959,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1980,7 +2012,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2087,7 +2119,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2167,7 +2199,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2323,7 +2355,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2379,7 +2411,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2391,7 +2423,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2420,10 +2452,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2447,7 +2484,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2510,11 +2547,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2601,6 +2638,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2626,10 +2668,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2657,11 +2704,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2735,6 +2782,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2744,6 +2796,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3034,7 +3091,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3115,7 +3172,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3237,7 +3294,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3628,11 +3685,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3652,7 +3709,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""
diff --git a/po/zh_Hans.po b/po/zh_Hans.po
index 6a324709d9..380fca7bfc 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: 2019-03-11 15:34-0400\n"
+"POT-Creation-Date: 2019-03-12 21:13-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/"
@@ -196,7 +196,7 @@ msgid "--refresh can only be used with containers"
 msgstr ""
 
 #: lxc/config.go:151 lxc/config.go:407 lxc/config.go:497 lxc/config.go:624
-#: lxc/info.go:126
+#: lxc/info.go:144
 msgid "--target cannot be used with containers"
 msgstr ""
 
@@ -271,7 +271,7 @@ msgstr ""
 msgid "Aliases:"
 msgstr ""
 
-#: lxc/image.go:843 lxc/info.go:149
+#: lxc/image.go:843 lxc/info.go:167
 #, c-format
 msgid "Architecture: %s"
 msgstr ""
@@ -355,11 +355,11 @@ msgstr ""
 msgid "Both --all and container name given"
 msgstr ""
 
-#: lxc/info.go:242 lxc/network.go:788
+#: lxc/info.go:260 lxc/network.go:788
 msgid "Bytes received"
 msgstr ""
 
-#: lxc/info.go:243 lxc/network.go:789
+#: lxc/info.go:261 lxc/network.go:789
 msgid "Bytes sent"
 msgstr ""
 
@@ -371,14 +371,22 @@ msgstr ""
 msgid "COMMON NAME"
 msgstr ""
 
-#: lxc/info.go:206
+#: lxc/info.go:224
 msgid "CPU usage (in seconds)"
 msgstr ""
 
-#: lxc/info.go:210
+#: lxc/info.go:228
 msgid "CPU usage:"
 msgstr ""
 
+#: lxc/info.go:108
+msgid "CPU:"
+msgstr ""
+
+#: lxc/info.go:111
+msgid "CPUs:"
+msgstr ""
+
 #: lxc/operation.go:159
 msgid "CREATED"
 msgstr ""
@@ -454,7 +462,7 @@ msgid "Client version: %s\n"
 msgstr ""
 
 #: lxc/config.go:97 lxc/config.go:377 lxc/config.go:467 lxc/config.go:571
-#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:42 lxc/init.go:48
+#: lxc/config.go:689 lxc/copy.go:52 lxc/info.go:43 lxc/init.go:48
 #: lxc/move.go:58 lxc/network.go:259 lxc/network.go:674 lxc/network.go:732
 #: lxc/network.go:1057 lxc/network.go:1126 lxc/network.go:1188
 #: lxc/storage.go:92 lxc/storage.go:336 lxc/storage.go:392 lxc/storage.go:591
@@ -582,6 +590,11 @@ msgstr ""
 msgid "Copying the storage volume: %s"
 msgstr ""
 
+#: lxc/info.go:102
+#, c-format
+msgid "Cores: %v"
+msgstr ""
+
 #: lxc/remote.go:271
 msgid "Could not create server cert dir"
 msgstr ""
@@ -642,7 +655,7 @@ msgstr ""
 msgid "Create the container with no profiles applied"
 msgstr ""
 
-#: lxc/image.go:849 lxc/info.go:151
+#: lxc/image.go:849 lxc/info.go:169
 #, c-format
 msgid "Created: %s"
 msgstr ""
@@ -737,7 +750,7 @@ msgstr ""
 #: lxc/image.go:316 lxc/image.go:439 lxc/image.go:579 lxc/image.go:793
 #: lxc/image.go:907 lxc/image.go:1237 lxc/image.go:1314 lxc/image_alias.go:26
 #: lxc/image_alias.go:59 lxc/image_alias.go:106 lxc/image_alias.go:149
-#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:30 lxc/init.go:35
+#: lxc/image_alias.go:250 lxc/import.go:27 lxc/info.go:31 lxc/init.go:35
 #: lxc/launch.go:22 lxc/list.go:48 lxc/main.go:50 lxc/manpage.go:19
 #: lxc/monitor.go:30 lxc/move.go:37 lxc/network.go:34 lxc/network.go:110
 #: lxc/network.go:183 lxc/network.go:256 lxc/network.go:328 lxc/network.go:378
@@ -817,7 +830,7 @@ msgstr ""
 msgid "Disable stdin (reads from /dev/null)"
 msgstr ""
 
-#: lxc/info.go:199
+#: lxc/info.go:217
 msgid "Disk usage:"
 msgstr ""
 
@@ -1069,6 +1082,16 @@ msgstr ""
 msgid "Format (csv|json|table|yaml)"
 msgstr ""
 
+#: lxc/info.go:119
+#, c-format
+msgid "Free: %v"
+msgstr ""
+
+#: lxc/info.go:104
+#, c-format
+msgid "Frequency: %vMhz (max: %vMhz)"
+msgstr ""
+
 #: lxc/manpage.go:18 lxc/manpage.go:19
 msgid "Generate manpages for all commands"
 msgstr ""
@@ -1278,7 +1301,7 @@ msgstr ""
 msgid "Invalid target %s"
 msgstr ""
 
-#: lxc/info.go:180 lxc/network.go:780
+#: lxc/info.go:198 lxc/network.go:780
 msgid "Ips:"
 msgstr ""
 
@@ -1477,12 +1500,12 @@ msgstr ""
 msgid "List, show and delete background operations"
 msgstr ""
 
-#: lxc/info.go:143
+#: lxc/info.go:161
 #, c-format
 msgid "Location: %s"
 msgstr ""
 
-#: lxc/info.go:299
+#: lxc/info.go:317
 msgid "Log:"
 msgstr ""
 
@@ -1617,18 +1640,22 @@ msgstr ""
 msgid "Member %s renamed to %s"
 msgstr ""
 
-#: lxc/info.go:217
+#: lxc/info.go:235
 msgid "Memory (current)"
 msgstr ""
 
-#: lxc/info.go:221
+#: lxc/info.go:239
 msgid "Memory (peak)"
 msgstr ""
 
-#: lxc/info.go:233
+#: lxc/info.go:251
 msgid "Memory usage:"
 msgstr ""
 
+#: lxc/info.go:118
+msgid "Memory:"
+msgstr ""
+
 #: lxc/move.go:230
 msgid "Migration API failure"
 msgstr ""
@@ -1755,11 +1782,16 @@ msgstr ""
 msgid "NO"
 msgstr ""
 
-#: lxc/info.go:141 lxc/network.go:773
+#: lxc/info.go:159 lxc/network.go:773
 #, c-format
 msgid "Name: %s"
 msgstr ""
 
+#: lxc/info.go:101
+#, c-format
+msgid "Name: %v"
+msgstr ""
+
 #: lxc/network.go:310
 #, c-format
 msgid "Network %s created"
@@ -1784,7 +1816,7 @@ msgstr ""
 msgid "Network name"
 msgstr ""
 
-#: lxc/info.go:250 lxc/network.go:787
+#: lxc/info.go:268 lxc/network.go:787
 msgid "Network usage:"
 msgstr ""
 
@@ -1878,11 +1910,11 @@ msgstr ""
 msgid "PUBLIC"
 msgstr ""
 
-#: lxc/info.go:244 lxc/network.go:790
+#: lxc/info.go:262 lxc/network.go:790
 msgid "Packets received"
 msgstr ""
 
-#: lxc/info.go:245 lxc/network.go:791
+#: lxc/info.go:263 lxc/network.go:791
 msgid "Packets sent"
 msgstr ""
 
@@ -1899,7 +1931,7 @@ msgstr ""
 msgid "Perform an incremental copy"
 msgstr ""
 
-#: lxc/info.go:162
+#: lxc/info.go:180
 #, c-format
 msgid "Pid: %d"
 msgstr ""
@@ -1930,7 +1962,7 @@ msgstr ""
 msgid "Print version number"
 msgstr ""
 
-#: lxc/info.go:186
+#: lxc/info.go:204
 #, c-format
 msgid "Processes: %d"
 msgstr ""
@@ -1983,7 +2015,7 @@ msgstr ""
 msgid "Profiles %s applied to %s"
 msgstr ""
 
-#: lxc/info.go:160
+#: lxc/info.go:178
 #, c-format
 msgid "Profiles: %s"
 msgstr ""
@@ -2090,7 +2122,7 @@ msgstr ""
 msgid "Remote operation canceled by user"
 msgstr ""
 
-#: lxc/info.go:146
+#: lxc/info.go:164
 #, c-format
 msgid "Remote: %s"
 msgstr ""
@@ -2170,7 +2202,7 @@ msgstr ""
 msgid "Require user confirmation"
 msgstr ""
 
-#: lxc/info.go:183
+#: lxc/info.go:201
 msgid "Resources:"
 msgstr ""
 
@@ -2326,7 +2358,7 @@ msgstr ""
 msgid "Show container or server configurations"
 msgstr ""
 
-#: lxc/info.go:29 lxc/info.go:30
+#: lxc/info.go:30 lxc/info.go:31
 msgid "Show container or server information"
 msgstr ""
 
@@ -2382,7 +2414,7 @@ msgstr ""
 msgid "Show storage volume configurations"
 msgstr ""
 
-#: lxc/info.go:40
+#: lxc/info.go:41
 msgid "Show the container's last 100 log lines?"
 msgstr ""
 
@@ -2394,7 +2426,7 @@ msgstr ""
 msgid "Show the expanded configuration"
 msgstr ""
 
-#: lxc/info.go:41
+#: lxc/info.go:42
 msgid "Show the resources available to the server"
 msgstr ""
 
@@ -2423,10 +2455,15 @@ msgstr ""
 msgid "Snapshot storage volumes"
 msgstr ""
 
-#: lxc/info.go:264
+#: lxc/info.go:282
 msgid "Snapshots:"
 msgstr ""
 
+#: lxc/info.go:113
+#, c-format
+msgid "Socket %d:"
+msgstr ""
+
 #: lxc/action.go:259
 #, c-format
 msgid "Some containers failed to %s"
@@ -2450,7 +2487,7 @@ msgstr ""
 msgid "State: %s"
 msgstr ""
 
-#: lxc/info.go:154
+#: lxc/info.go:172
 #, c-format
 msgid "Status: %s"
 msgstr ""
@@ -2513,11 +2550,11 @@ msgstr ""
 msgid "Store the container state"
 msgstr ""
 
-#: lxc/info.go:225
+#: lxc/info.go:243
 msgid "Swap (current)"
 msgstr ""
 
-#: lxc/info.go:229
+#: lxc/info.go:247
 msgid "Swap (peak)"
 msgstr ""
 
@@ -2604,6 +2641,11 @@ msgstr ""
 msgid "There is no \"image name\".  Did you want an alias?"
 msgstr ""
 
+#: lxc/info.go:103
+#, c-format
+msgid "Threads: %v"
+msgstr ""
+
 #: lxc/action.go:121
 msgid "Time to wait for the container before killing it"
 msgstr ""
@@ -2629,10 +2671,15 @@ msgid "To start your first container, try: lxc launch ubuntu:18.04"
 msgstr ""
 
 #: lxc/config.go:294 lxc/config.go:419 lxc/config.go:538 lxc/config.go:604
-#: lxc/copy.go:116 lxc/info.go:86 lxc/network.go:761 lxc/storage.go:420
+#: lxc/copy.go:116 lxc/info.go:87 lxc/network.go:761 lxc/storage.go:420
 msgid "To use --target, the destination remote must be a cluster"
 msgstr ""
 
+#: lxc/info.go:121
+#, c-format
+msgid "Total: %v"
+msgstr ""
+
 #: lxc/storage_volume.go:1151
 msgid "Transfer mode, one of pull (default), push or relay"
 msgstr ""
@@ -2660,11 +2707,11 @@ msgstr ""
 msgid "Try `lxc info --show-log %s` for more info"
 msgstr ""
 
-#: lxc/info.go:156
+#: lxc/info.go:174
 msgid "Type: ephemeral"
 msgstr ""
 
-#: lxc/info.go:158
+#: lxc/info.go:176
 msgid "Type: persistent"
 msgstr ""
 
@@ -2738,6 +2785,11 @@ msgid ""
 "Use storage driver optimized format (can only be restored on a similar pool)"
 msgstr ""
 
+#: lxc/info.go:120
+#, c-format
+msgid "Used: %v"
+msgstr ""
+
 #: lxc/cluster.go:280 lxc/delete.go:47
 msgid "User aborted delete operation"
 msgstr ""
@@ -2747,6 +2799,11 @@ msgid ""
 "User signaled us three times, exiting. The remote operation will keep running"
 msgstr ""
 
+#: lxc/info.go:100
+#, c-format
+msgid "Vendor: %v"
+msgstr ""
+
 #: lxc/query.go:38
 msgid "Wait for the operation to complete"
 msgstr ""
@@ -3037,7 +3094,7 @@ msgstr ""
 msgid "exec [<remote>:]<container> [flags] [--] <command line>"
 msgstr ""
 
-#: lxc/info.go:275
+#: lxc/info.go:293
 #, c-format
 msgid "expires at %s"
 msgstr ""
@@ -3118,7 +3175,7 @@ msgstr ""
 msgid "info [<remote>:]<pool>"
 msgstr ""
 
-#: lxc/info.go:28
+#: lxc/info.go:29
 msgid "info [<remote>:][<container>]"
 msgstr ""
 
@@ -3240,7 +3297,7 @@ msgid ""
 "    Create a new container using backup0.tar.gz as the source."
 msgstr ""
 
-#: lxc/info.go:32
+#: lxc/info.go:33
 msgid ""
 "lxc info [<remote>:]<container> [--show-log]\n"
 "    For container information.\n"
@@ -3631,11 +3688,11 @@ msgstr ""
 msgid "start [<remote>:]<container> [[<remote>:]<container>...]"
 msgstr ""
 
-#: lxc/info.go:279
+#: lxc/info.go:297
 msgid "stateful"
 msgstr ""
 
-#: lxc/info.go:281
+#: lxc/info.go:299
 msgid "stateless"
 msgstr ""
 
@@ -3655,7 +3712,7 @@ msgstr ""
 msgid "switch [<remote>:] <project>"
 msgstr ""
 
-#: lxc/info.go:271
+#: lxc/info.go:289
 #, c-format
 msgid "taken at %s"
 msgstr ""

From cc2cd14eb52b039df875352d66634b9e22a57e5a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Graber?= <stgraber at ubuntu.com>
Date: Tue, 12 Mar 2019 21:17:14 -0400
Subject: [PATCH 5/5] tests: Update resources test
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>
---
 test/suites/resources.sh | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/test/suites/resources.sh b/test/suites/resources.sh
index 118eb2e1c9..b418a29653 100644
--- a/test/suites/resources.sh
+++ b/test/suites/resources.sh
@@ -3,11 +3,10 @@ test_resources() {
   echo "${RES}" | grep -q "^space:"
 
   RES=$(lxc info --resources)
-  echo "${RES}" | grep -q "^cpu:"
-  echo "${RES}" | grep -q "sockets:"
-  echo "${RES}" | grep -q "threads:"
-  echo "${RES}" | grep -q "total:"
-  echo "${RES}" | grep -q "memory:"
-  echo "${RES}" | grep -q "used:"
-  echo "${RES}" | grep -q "total:"
+  echo "${RES}" | grep -q "^CPU:"
+  echo "${RES}" | grep -q "Cores:"
+  echo "${RES}" | grep -q "Threads:"
+  echo "${RES}" | grep -q "Free:"
+  echo "${RES}" | grep -q "Used:"
+  echo "${RES}" | grep -q "Total:"
 }


More information about the lxc-devel mailing list