Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleExample: Configure net work network and hard drive with VTOK label
[VTOK disk configuration example] - https://dilos-dev.atlassian.net/wiki/display/DS/Prepare+boot+disk
[Configure network]: (if you have physical e1000g0)
	ifconfig e1000g0 plumb
	ifconfig e1000g0 192.168.1.2 netmask 255.255.255.0 up
	route add default 192.168.1.1
	(update /etc/resolv.conf: echo "nameserver 8.8.8.8" > /etc/resolv.conf)
	cp -f /etc/nsswitch.dns /etc/nsswotch.conf)
Code Block
titleUpdate root password and connect to host from internet or localnet by ssh:
# passwd root
<new password>
<confirm>
 
# ssh root@<configured IP>

...