Hi,
I would like to control my Pi through a Macbook using SSH. Is the programming language Python or something else?
thanks
No, ssh is a communication protocol that permits a secured connection between a ssh aware computer and your Pi. Just open a terminal session on your Macbook and type:Engine44 wrote:I would like to control my Pi through a Macbook using SSH. Is the programming language Python or something else?
Code: Select all
ssh your_user_name_on_the_Pi@Pi_ip_address
# Example
ssh raspberry@192.168.0.123
Yes, but after the link is established commands are issued. Is that done in the Python language? Thanks,Engine44 wrote:Hi,
I would like to control my Pi through a Macbook using SSH. Is the programming language Python or something else?
thanks
No that's bash style shell (environment). You can issue linux commands directly. Not python instructions.Engine44 wrote:Yes, but after the link is established commands are issued. Is that done in the Python language? Thanks,
Thanks, I think that's what I was looking for.ripat wrote:No that's bash style shell (environment). You can issue linux commands directly. Not python instructions.Engine44 wrote:Yes, but after the link is established commands are issued. Is that done in the Python language? Thanks,
Crash course:
http://cli.learncodethehardway.org/book/