Skip to content

Commit 2a6229e

Browse files
Update migrate-appliance.md
1 parent 50908d6 commit 2a6229e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

articles/migrate/migrate-appliance.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -331,13 +331,12 @@ NIC MAC address | Win32_NetworkAdapterConfiguration | MACAddress
331331

332332
Here's the full list of Linux server metadata that the appliance collects and sends to Azure.
333333

334-
335334
**DATA** | **LINUX**
336335
--- | ---
337-
FQDN | cat /proc/sys/kernel/hostname , hostname -f
336+
FQDN | cat /proc/sys/kernel/hostname, hostname -f
338337
Processor core count | /proc/cpuinfo \| awk '/^processor/{print $3}' \| wc -l
339338
Memory allocated | cat /proc/meminfo \| grep MemTotal \| awk '{printf "%.0f", $2/1024}'
340-
BIOS serial number | lshw | grep "serial:" \| head -n1 \| awk '{print $2}' <br/> /usr/sbin/dmidecode -t 1 \| grep 'Serial' \| awk '{ $1="" ; $2=""; print}’
339+
BIOS serial number | lshw \| grep "serial:" \| head -n1 \| awk '{print $2}' <br/> /usr/sbin/dmidecode -t 1 \| grep 'Serial' \| awk '{ $1="" ; $2=""; print}’
341340
BIOS GUID | cat /sys/class/dmi/id/product_uuid
342341
Boot type | [ -d /sys/firmware/efi ] && echo EFI \|\| echo BIOS
343342
OS name/version | We access these files for the OS version and name:<br/><br/> /etc/os-release<br/> /usr/lib/os-release <br/> /etc/enterprise-release <br/> /etc/redhat-release<br/> /etc/oracle-release<br/> /etc/SuSE-release<br/> /etc/lsb-release <br/> /etc/debian_version
@@ -363,13 +362,13 @@ Data transmitted per NIC | BWin32_PerfFormattedData_Tcpip_NetworkInterface | Byt
363362
Disk count | BWin32_PerfFormattedData_PerfDisk_PhysicalDisk | Count of disks
364363
Disk details | Win32_PerfFormattedData_PerfDisk_PhysicalDisk | DiskWritesPerSec, DiskWriteBytesPerSec, DiskReadsPerSec, DiskReadBytesPerSec.
365364

366-
### Windows performance data
365+
### Linux performance data
367366

368367
Here's the Linux server performance data that the appliance collects and sends to Azure.
369368

370369
**Data** | **Linux**
371370
--- | ---
372-
CPU usage | cat /proc/stat|grep 'cpu ' /proc/stat
371+
CPU usage | cat /proc/stat/|grep 'cpu ' /proc/stat
373372
Memory usage | free \| grep Mem \| awk '{print $3/$2 * 100.0}'
374373
NIC count | lshw -class network \| grep eth[0-60] \| wc -l
375374
Data received per NIC | cat /sys/class/net/eth$nic/statistics/rx_bytes

0 commit comments

Comments
 (0)