Ternyata, pengembang Raspberry Pi sudah memfasilitasi proses-proses ala ala Recovery Mode di Linux, tapi lebih sederhana lagi. Secara umum, Raspberry Pi booting dengan juga membaca dan mengeksekusi file cmdline.txt. Kita bisa isi perintah-perintah unik disana :D
Implementasi
Silakan shutdown Raspberry Pi, kemudian copot SD Cardnya. Buka di komputer/laptop. Kemudian lihat di partisi boot, ada satu file bernama cmdline.txt. Buka file tersebut.
Ganti dari:
dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=PARTUUID=.......f-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
menjadi:
dwc_otg.lpm_enable=0 console=serial0,115200 console=tty1 root=PARTUUID=.......f-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait init=/bin/sh
Simpan. Kemudian taruh lagi SD Card ke Raspberry Pi.
Secara khusus, Raspberry Pi akan booting langsung ke Shell (/bin/sh) dan kita bisa melakukan proses reset disana.
Caranya dengan mengaitkan ulang partisi Linux Raspberry Pi ke modus read-n-write (rw) dengan perintah:
[sourcecode]mount -o remount,rw /dev/mmcblk0p2 /[/sourcecode]
kemudian reset password dengan perintah passwd seperti biasa:
[sourcecode]passwd namauser[/sourcecode]
Kemudian keluar, reboot Raspberry Pi. Copot SD Card dan kembalikan lagi isi dari file cmdline.txt seperti semula.
0 comments:
Post a Comment