i just brought a raspberry pi how do i knw wat is the IP and how do i connect using an ethernet cable .
please suggest
i just brought a raspberry pi how do i knw wat is the IP and how do i connect using an ethernet cable .
please suggest
You say you have just bought it, have you done anything with it yet? Have you installed an OS, if so which one?
If you literally have just bought it and have done nothing with it at all then start here: https://www.raspberrypi.org/learning/hardware-guide/
For the basic initial setup of the OS then go here: https://www.raspberrypi.org/learning/hardware-guide/quickstart/
Once you can boot into the OS then you can get either your Ethernet or wifi connections working with the instructions here: https://www.raspberrypi.org/learning/hardware-guide/networking/
So, if you have done all the above and have a working Pi connected to your network then you can find out its IP address from the linux command line by typing
ifconfig
Then from your laptop, with either the native terminal (Linux/macOS) or via a third party tool like PuTTY (windows) you can connect to the Pi with:
ssh <ip of my pi>
It'll bring you to the login prompt and you enter the credentials you use to log into the Pi directly.
Best Regards,
Rachael
You say you have just bought it, have you done anything with it yet? Have you installed an OS, if so which one?
If you literally have just bought it and have done nothing with it at all then start here: https://www.raspberrypi.org/learning/hardware-guide/
For the basic initial setup of the OS then go here: https://www.raspberrypi.org/learning/hardware-guide/quickstart/
Once you can boot into the OS then you can get either your Ethernet or wifi connections working with the instructions here: https://www.raspberrypi.org/learning/hardware-guide/networking/
So, if you have done all the above and have a working Pi connected to your network then you can find out its IP address from the linux command line by typing
ifconfig
Then from your laptop, with either the native terminal (Linux/macOS) or via a third party tool like PuTTY (windows) you can connect to the Pi with:
ssh <ip of my pi>
It'll bring you to the login prompt and you enter the credentials you use to log into the Pi directly.
Best Regards,
Rachael