Restrict root ssh access to a single IP under Raspbian / Debian / Ubuntu
Today I configured a new backup solution that required me to restrict root ssh access to a single IP for the root user.
Today I configured a new backup solution that required me to restrict root ssh access to a single IP for the root user.
For a home automation project I have to setup a local DynDNS client on my Banana Pi running with Raspian. Here are the steps I’ve taken to run a DynDNS client under Raspbian (will work on other Debian based Linux distributions too): Install ddclient package: $>sudo apt-get install ddclient This command installs the package and starts the DynDNS […]
Sometimes its necessary that your machine gets a static IP-address. For example if you want to run a server or a other service on that machine. On Debian based machines you can do this by: Edit /etc/network/interfaces (f.e.: with nano) auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.88.6 netmask 255.255.255.0 […]
The default password for the default user pi on a Raspbian operating system is raspberry. You should change it to a secure password on first connect via ssh. Therefore you can use: $> sudo passwd pi
To install Rasbian on a SD-Card you have to follow these Steps Format SD-Card Fat32 (f.e. with GParted http://gparted.org/) Download Raspbian (or any other operation system) from http://www.raspberrypi.org/downloads/ Extract the downloaded zip-file Find out what is the devicepath of your SD-Card (you can use the df-command or get a list of partitions via linux-list-of-partitions) Execute the […]