close Warning: Can't synchronize with repository "(default)" (/common/SVN/wimax does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of dSite/b0OS


Ignore:
Timestamp:
Sep 30, 2014, 1:18:41 PM (10 years ago)
Author:
seskar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dSite/b0OS

    v1 v1  
     1= OS Installation =
     2
     3[[TOC(WiMAX/dSite*)]]
     4
     5== Disk Partitioning ==
     6
     7While setting up Ubuntu server, partition the disk as follows:
     8
     9* 20 GB Primary boot partition
     10* 20 GB Home directory
     11* 116 GB create a new mount point /Export for images
     12* 4 GB Swap . Set the 'location' as end, and set 'use as' to swap area.
     13
     14== Configure Host Name ==
     15
     16/etc/hosts
     17/etc/hostname
     18
     19== Network setup and configuration ==
     20* Four networks
     21* Data
     22* CM
     23* Control
     24* Outside
     25
     26Setup networking as follows on the console host
     27
     28{{{
     29# This file describes the network interfaces available on your system
     30# and how to activate them. For more information, see interfaces(5).
     31
     32# The loopback network interface
     33auto lo
     34iface lo inet loopback
     35
     36# The CM network interface
     37auto eth1
     38iface eth1 inet static
     39      address 10.1.0.254
     40      netmask 255.255.255.0
     41      broadcast 10.1.0.255
     42
     43# The Control network interface
     44auto eth3
     45iface eth3 inet static
     46      address 10.10.0.254
     47      netmask 255.255.255.0
     48      broadcast 10.10.0.255
     49
     50# The  Data network interface
     51auto eth0
     52iface eth0 inet static
     53      address 10.20.0.254
     54      netmask 255.255.255.0
     55      broadcast 10.20.0.255
     56
     57# The primary network interface
     58auto eth2
     59iface eth2 inet dhcp
     60}}}
     61