Skip to content

Instantly share code, notes, and snippets.

@SayanSeth
Created June 12, 2018 06:53
Show Gist options
  • Save SayanSeth/50be7bd54063eb0d1ccccc221d60a9a4 to your computer and use it in GitHub Desktop.
Save SayanSeth/50be7bd54063eb0d1ccccc221d60a9a4 to your computer and use it in GitHub Desktop.

At first follow the steps given in the link below upto WRITE THE RASPIAN OPERATING SYSTEM TO THE MICROSD CARD Setup Raspberry Pi Headless

To enable SSH automatically in startup without monitor all,create an empty file called “SSH” and place it in the root partition of the SD card.

Open Command prompt navigate to root drive of SD card (D: drive for example ) D: echo>>ssh This will create a file named ssh and enable SSH

Connect Pi to the router using Ethernet cable

Download and Install MobaXterm in PC. Goto to Tools->Network Scanner Scan to find IP to Rpi

After finding the IP create Session - > SSH Input IP,username and Password

To connect automatically to desired Wi-Fi Network

sudo nano /etc/wpa_supplicant/wpa_supplicant.conf

In that file paste the below line

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=IN

network={
        ssid="Wi-Fi SSID"
        psk="<Password>"
        key_mgmt=WPA-PSK
}

After that to set Proxy (if using college Network)

Raspberry Pi Proxy Setup

Steps to set proxy in Raspberry Pi running on Raspbian OS

Navigate to the following folder as follows:

cd /etc/apt/apt.conf.d

Create a file called 10proxy:

sudo nano 10proxy

Without authentication add this line:

Acquire::http::Proxy "http://proxyaddress:proxyport/";

Make sure to include the / at the end.

For everything else:

Edit this file:

sudo nano /etc/environment
export http_proxy="http://proxyaddress:proxyport/"

Other Tasks to Do sudo apt-get update sudo apt-get upgrade sudo apt-get install --upgrade chromium-browser rpi-chromium-mods

to view the screen without monitor vncserver -geometry 1280x720 Then open VNC Viewer in PC using same username and Password

VNC (VIRTUAL NETWORK COMPUTING)

sudo apt autoremove

sudo pip3 install numpy matplotlib scipy spidev To shutdown sudo shutdown now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment