···1-diff --git a/pkg/machine/qemu/machine.go b/pkg/machine/qemu/machine.go
2-index a118285f7..d775f0099 100644
3---- a/pkg/machine/qemu/machine.go
4-+++ b/pkg/machine/qemu/machine.go
5-@@ -1560,11 +1560,6 @@ func (v *MachineVM) waitAPIAndPrintInfo(forwardState machine.APIForwardingState,
6- case machine.NotInstalled:
7- fmt.Printf("\nThe system helper service is not installed; the default Docker API socket\n")
8- fmt.Printf("address can't be used by podman. ")
9-- if helper := findClaimHelper(); len(helper) > 0 {
10-- fmt.Printf("If you would like to install it run the\nfollowing commands:\n")
11-- fmt.Printf("\n\tsudo %s install\n", helper)
12-- fmt.Printf("\tpodman machine stop%s; podman machine start%s\n\n", suffix, suffix)
13-- }
14- case machine.MachineLocal:
000015 fmt.Printf("\nAnother process was listening on the default Docker API socket address.\n")
16- case machine.ClaimUnsupported:
···1+diff --git a/pkg/machine/machine_common.go b/pkg/machine/machine_common.go
2+index 649748947..a981d93bf 100644
3+--- a/pkg/machine/machine_common.go
4++++ b/pkg/machine/machine_common.go
5+@@ -127,14 +127,6 @@ address can't be used by podman. `
6+7+ if len(helper) < 1 {
8+ fmt.Print(fmtString)
9+- } else {
10+- fmtString += `If you would like to install it run the\nfollowing commands:
11+-
12+- sudo %s install
13+- podman machine stop%[1]s; podman machine start%[1]s
14+-
15+- `
16+- fmt.Printf(fmtString, helper, suffix)
17+ }
18+ case MachineLocal:
19 fmt.Printf("\nAnother process was listening on the default Docker API socket address.\n")
0