Disable Terminal
Posted: Sun Aug 24, 2014 3:20 am
I have Rasbian installed on raspberry pi and what I want is that I can only access it through network. Not by local keyboard or anything else. Possible ?
A small, affordable computer with free resources to help people learn, make things, and have fun
https://www.raspberrypi.org/forums/
https://www.raspberrypi.org/forums/viewtopic.php?f=91&t=85264
It is possible and not very complicated. However probably not necessary if you have a reasonably good password. If you really want to do it though ...xmen wrote:I have Rasbian installed on raspberry pi and what I want is that I can only access it through network. Not by local keyboard or anything else. Possible ?
Code: Select all
1:2345:respawn:/sbin/getty --noclear 38400 tty1
2:23:respawn:/sbin/getty 38400 tty2
3:23:respawn:/sbin/getty 38400 tty3
4:23:respawn:/sbin/getty 38400 tty4
5:23:respawn:/sbin/getty 38400 tty5
6:23:respawn:/sbin/getty 38400 tty6Code: Select all
T0:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100The Raspberry Pi GPIO provides (among other things) provides a serial connection into the Raspberry Pi. In Raspbian this is set up to enable you to log in via a serial terminal connected to the GPIO.xmen wrote:Thank you, exactly what I needed. But what is serial line ? if I disable, login using Ethernet will still work ?
Just unplug the keyboard.xmen wrote:I have Rasbian installed on raspberry pi and what I want is that I can only access it through network. Not by local keyboard or anything else. Possible ?