cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
653
Views
0
Helpful
1
Replies

Missed link in Cisco DevNet Lab

LamoSS
Level 1
Level 1

Hello!

 

I'm going through Cisco DevNet Labs and at the moment I'm on this step https://developer.cisco.com/learning/tracks/containers/containers-mgmt/containers-deploy-to-k8s/step/1

Here is point:

Powershell on Windows 10

  scp developer@198.18.133.48:"'/home/developer/.kube/config'" $HOME\.kube\config

 

But if I will execute this command, I will get error message "protocol error: filename does not match request"

 

Why? It is mistake inside Lab? Or should I run something before executing?

 

Thank you,

Best regards,

Roman

1 Reply 1

Seb Rupik
VIP Alumni
VIP Alumni

Hi there,

I believe you only need the single quotes if you are dealing with spaces in the filepath/ file name. Try:

 

scp developer@198.18.133.48:"/home/developer/.kube/config" $HOME\.kube\config

 

Arguably since there are no spaces in the path the double quotes could be removed:

scp developer@198.18.133.48:/home/developer/.kube/config $HOME\.kube\config

 

cheers,

Seb.