Skip to main content

Raspberry pi Connection Over inter net

https://www.youtube.com/watch?v=iUctV-tqh_M

https://www.remot3.it/


Use these instructions ONLY if you are installing remot3.it on a Pi that has no pre-existing Weaved or remot3.it installation. We recommend use of latest Raspbian Jessie version.
If you already have Weaved installed on your Pi and also have physical access to it over a LAN or direct keyboard connection then click here for the upgrade instructions.
If you are are attempting to upgrade a Pi from Weaved to remot3.it ... and your Pi is located across the Internet on a different network you'll need to use the remote upgrade instructions here.

Begin

Use your remot3.it account or your existing Weaved account:
You can use your existing weaved.com account to login at https://www.remot3.it2.1k
If you don't have an account at remot3.it or Weaved, then you will need to sign up for a free remot3.it account before running the remot3.it installation. If you have not already done so, please create an account here:https://www.remot3.it2.1k You'll only need to provide a valid e-mail address.
We recommend you start with a fresh SDCard and an up to date Raspbian Jessie image. After you have installed Raspbian, make sure your Pi has an Internet connection and open up a terminal window to the Pi command line using either SSH or a keyboard, mouse, and HDMI monitor.
from the command line on your Pi type:
sudo apt-get update
then download the remot3.it deb package from the Pi Foundation repository. This command will download and install the remot3.it deb package on your Pi.
sudo apt-get install weavedconnectd
now you are ready to set-up remot3.it on your Pi. Type the following command to get started.
sudo weavedinstaller
you should see the Sign In Menu in your terminal window as given below. Enter Menu option "1" to Sign In to your remot3.it (or Weaved) account. If you don't already have a remot3.it (or Weaved) account you can create one by entering Menu item "2" instead.
after you sign in you will be prompted to enter a device name for your Pi (ex. my_Pi_001) as shown below.
next select menu item 1 to Attach/reinstall remot3.it to a Service. You will now see the Protocol Selection Menu.
Select the menu item desired to enable your Pi's TCP services (ex. SSH) for remote access. We recommend installing remot3.it for SSH on port 22 to get started. (menu item "1")
When you are done adding services to remot3.it just enter "5" (Return to previous menu) and Exit out of the installer menus.
That's it. You made it! Now you can connect to your Pi from anywhere and also upload shell scripts to execute across one or multiple Pis.

Comments

Popular posts from this blog

Raspberry pi Ser2Net Install

sudo apt-get install ser2net sudo nano /etc/ser2net.conf % change last lines to 2000:raw:600:/dev/ttyAMA0:57600 8DATABITS NONE  1STOPBIT banner sudo /etc/init.d/ser2net restart sudo nano /etc/inittab % add hash to this line #T0:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100 sudo nano /boot/cmdline.txt % delete references to ttyAMA0 % "console=ttyAMA0,115200 kgdboc=ttyAMA0,115200" sudo shutdown -r now

Modem Connection with raspberry py

Aim : Set up the  Raspberry Pi  as a wireless router using the Raspbian OS. The internet connection will be provided by a  Huawei E303  USB 3g dongle on the safaricom network in Kenya, though the setup should be similar on most Huawei dongles and 3g networks. The wireless access point will be provided by an  Edimax Nano USB Wifi adapter . Power Source -------->RPI ----> Powered USB HUB -----> 3g Dongle                                            |                                            |                                          Edimax                       ...

OpenCV Docker Image and use

Open CV Install docker mage run $ docker ps $ docker start 0c5f0bc9b04c $ docker ps -a We need to go Self terminal not SSH terminal $ gksudo open a bog and type lxterminal Python and OpenCV. Alright, now we can finally start writing some code! Open up a new file, name it   test_image . py  , and insert the following code: Accessing the Raspberry Pi Camera with OpenCV and Python Python 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 # import the necessary packages from picamera . array import PiRGBArray from picamera import PiCamera import time import cv2   # initialize the camera and grab a reference to the raw camera capture camera = PiCamera ( ) rawCapture = PiRGBArray ( camera )   # allow the camera to warmup time . sleep ( 0.1 )   # grab an image from the camera camera . capture ( rawCapture , format = "bgr" ) image = rawC...