Raspberry Pi

Revision as of 18:30, 7 February 2019 by Ke0etz (Talk | contribs)


Lost Root/Admin Password

  1. Power down and pull the SD card out from your Pi and put it into your computer.
  2. Open the file 'cmdline.txt' and add 'init=/bin/sh' to the end. This will cause the machine to boot to single user mode.
  3. Put the SD card back in the Pi and boot.
  4. When the prompt comes up, type 'su' to log in as root (no password needed).
  5. Type "passwd pi" and then follow the prompts to enter a new password.
  6. Shut the machine down, then pull the card again and put the cmdline.txt file back the way it was by removing the 'init=/bin/sh' bit.

The cmdline.txt should look something like this:

dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait init=/bin/sh

This file should contain a line of text that resembles the line below.

dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait

additional comments:

You must modify this file so that the Raspberry Pi starts on the bin/sh script, which will allow you to change the password of your Raspberry Pi without knowing it. To do this, simply add the line below to the end of the file and save it.

init=/bin/sh

Shellinabox is handy for Raspberry Pi

Shellinabox has a built-in web server that runs as a web-based SSH client on a specified port and prompt you a web terminal emulator to access and control your Raspberry Pi SSH Shell remotely using any AJAX/JavaScript and CSS enabled browsers without the need of any additional browser plugins such as FireSSH.

On Debian, Ubuntu and Linux Mint

sudo apt-cache search shellinabox
sudo apt-get install openssl shellinabox

By default, shellinaboxd listens on TCP port 4200 on localhost.

Last modified on 7 February 2019, at 18:30