···11-diff --git a/pkg/machine/qemu/machine.go b/pkg/machine/qemu/machine.go
22-index a118285f7..d775f0099 100644
33---- a/pkg/machine/qemu/machine.go
44-+++ b/pkg/machine/qemu/machine.go
55-@@ -1560,11 +1560,6 @@ func (v *MachineVM) waitAPIAndPrintInfo(forwardState machine.APIForwardingState,
66- case machine.NotInstalled:
77- fmt.Printf("\nThe system helper service is not installed; the default Docker API socket\n")
88- fmt.Printf("address can't be used by podman. ")
99-- if helper := findClaimHelper(); len(helper) > 0 {
1010-- fmt.Printf("If you would like to install it run the\nfollowing commands:\n")
1111-- fmt.Printf("\n\tsudo %s install\n", helper)
1212-- fmt.Printf("\tpodman machine stop%s; podman machine start%s\n\n", suffix, suffix)
1313-- }
1414- case machine.MachineLocal:
11+diff --git a/pkg/machine/machine_common.go b/pkg/machine/machine_common.go
22+index 649748947..a981d93bf 100644
33+--- a/pkg/machine/machine_common.go
44++++ b/pkg/machine/machine_common.go
55+@@ -127,14 +127,6 @@ address can't be used by podman. `
66+77+ if len(helper) < 1 {
88+ fmt.Print(fmtString)
99+- } else {
1010+- fmtString += `If you would like to install it run the\nfollowing commands:
1111+-
1212+- sudo %s install
1313+- podman machine stop%[1]s; podman machine start%[1]s
1414+-
1515+- `
1616+- fmt.Printf(fmtString, helper, suffix)
1717+ }
1818+ case MachineLocal:
1519 fmt.Printf("\nAnother process was listening on the default Docker API socket address.\n")
1616- case machine.ClaimUnsupported: