User Tools

Site Tools


docs:man:installing_pld_linux_based_on_rescue_cd

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
docs:man:installing_pld_linux_based_on_rescue_cd [2019-01-21 19:19]
arekm [Filesystem]
docs:man:installing_pld_linux_based_on_rescue_cd [2019-01-21 19:30]
arekm [Network configuration]
Line 33: Line 33:
 If more partitions are going to be used (like you want to have separate /boot or /home) then these need to be mounted now, too. If more partitions are going to be used (like you want to have separate /boot or /home) then these need to be mounted now, too.
 ===== Network configuration ===== ===== Network configuration =====
-''​RescueCd''​ should configure (using DHCP) our network automatically during a boot process. If DHCP is not present, We need to do it manuallyLet's assume We want to set IP to 192.168.0.2. **/​etc/​sysconfig/​interfaces/​ifcfg-eth0** should looks like: + 
 +RescueCD and installed PLD system will use the same way of configuring ​network
 + 
 +By default both try to use DHCP to automatically ​configure network interface ​during a boot process. 
 +If that works for you you don'​t ​need to do anything. 
 + 
 +If manual configuration is required then configure networking using files below. 
 + 
 +==== eth0 interface configuration: ​/​etc/​sysconfig/​interfaces/​ifcfg-eth0 ​==== 
 + 
 +Assume you want 192.168.0.2 with /24 network (CIRD notation is preferred)
  
 <​file>​DEVICE=eth0 <​file>​DEVICE=eth0
-IPADDR=192.168.0.2+IPADDR=192.168.0.2/24
 ONBOOT=yes ONBOOT=yes
 BOOTPROTO=none BOOTPROTO=none
 </​file>​ </​file>​
-In file **/​etc/​sysconfig/​static-routes** ​ We added route to gateway (ex.: 10.0.0.254): ​ 
  
-<​file>​eth0 ​default ​via 10.0.0.254 +==== Default gateway and default ​gateway interface configuration: ​/etc/sysconfig/​network ====
-</​file>​ +
-In file **/etc/resolv.conf** we add at least one adress of DNS server: ​+
  
-<​file>​nameserver 193.192.160.243 +enable networking, ipv4 networking, set default gateway and interface which should be used to reach geteway:
-</​file>​ +
-In the end We need to reload network configuration+
  
-<​file>#​ service network restart +<​file>​ 
-</​file>​+NETWORKING=yes 
 +IPV4_NETWORKING=yes 
 +GATEWAY=192.168.0.254 
 +GATEWAYDEV=eth0 
 +<​file>​ 
 + 
 +==== DNS resolver IP addresses configuration:​ /​etc/​resolv.conf ==== 
 + 
 +Add default nameservers:​ 
 + 
 +<​file>​nameserver 1.1.1.1 
 +nameserver 8.8.8.8</​file>​ 
 + 
 +=== Reload network === 
 + 
 +<​file>#​ service network restart</​file>​
  
  
docs/man/installing_pld_linux_based_on_rescue_cd.txt · Last modified: 2019-01-21 20:21 by arekm