Jump to content

Nas help

Flyguygamer

I am trying to create a nas with ubuntu server. I am following a guide but not quite sure what to do.

 

Set Static IP Address

sudo nano /etc/network/interfaces

iface eth0 inet static

address 192.168.1.100

network 192.168.1.0

netmask 255.255.255.0

broadcast 192.168.1.255

gateway 192.168.1.1

dns-nameservers 192.168.1.1 8.8.8.8

 

Adjust the IP addresses for your network.

8.8.8.8 is Google DNS Server, I find this a lot better than my ISP’s DNS Server.

 

Add NAS IP Address to your Local DNS Lookup

This is on any Linux computer that you would like to access the NAS from.

sudo echo "192.168.1.100 nas.local" >> /etc/hosts

 

The NAS can be accessed via SSH with the following terminal command:

ssh user@nas.local

 

Install MDADM RAID Controller (Optional if using RAID)

sudo apt-get --no-install-recommends install mdadm

 
 
 
 
Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×