Changes between Version 3 and Version 4 of ArtemisInstall


Ignore:
Timestamp:
02/13/11 15:59:26 (2 years ago)
Author:
pespin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ArtemisInstall

    v3 v4  
    158158 
    159159 
     160---- 
     161 
    160162= Post-install configuration = 
    161163 
     164=== Network tweaks === 
     165 
     166I don't know why usb0 network interface is not initialize correctly, and there's nothing in /etc/resolv.conf, so we need this in '''/etc/init.d/htcartemis''': 
     167 
     168{{{ 
     169#! /bin/sh 
     170case "$1" in  
     171start)           
     172        echo "Running PESPIN init script" 
     173 
     174        ifconfig usb0 192.168.2.202 >/log-pespin-ifconfig-exec  2>&1 
     175 
     176        echo "nameserver 209.67.222.222" > /etc/resolv.conf 
     177        echo "nameserver 208.67.220.220" >> /etc/resolv.conf 
     178 
     179        route add default gw 192.168.2.200 metric 8 
     180         
     181        ;; 
     182esac 
     183 
     184 
     185exit 0 
     186}}} 
     187 
     188 
     189Then link it to runlevel 5: 
     190ln -s /etc/init.d/htcartemis /etc/rc5.d/S89htcartemis 
     191 
     192 
    162193=== GUI tweaks === 
    163 TODO 
     194 
     195In '''/etc/profile.d/elementary.sh''', set the following variables: 
     196 
     197{{{ 
     198export ELM_SCALE=1 
     199export ELM_FINGER_SIZE=40 
     200}}} 
     201