Last active
November 28, 2017 11:25
-
-
Save adikari/e8efeb38a183c2160eec3a58c800c145 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# set up fstab /etc/fstab | |
mkdir /mnt/data | |
/dev/md0 /mnt/data ext4 defaults 0 2 | |
# set up static IP /etc/network/interfaces | |
iface em0 inet static | |
address 192.168.1.128 | |
netmask 255.255.255.0 | |
network 192.168.1.0 | |
broadcast 192.168.0.1 | |
dns-nameservers 8.8.8.8 8.8.4.4 | |
# Install openssh | |
sudo apt-get update | |
sudo apt-get install openssh-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment