projects:howtos:artemis

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revisionBoth sides next revision
projects:howtos:artemis [2014/08/26 19:34] – [References] prometheusprojects:howtos:artemis [2014/08/26 19:42] – [Configuration] prometheus
Line 112: Line 112:
 <note important>Note: Ensure to be on a separate secured network or even better, plug yourself in a non-networked computer.</note> <note important>Note: Ensure to be on a separate secured network or even better, plug yourself in a non-networked computer.</note>
  
 +<sxh bash; title:Setting hostname>
 +# hostnamectl set-hostname your-desired-hostname
 +</sxh>
  
 +<sxh bash; title:Boosting computational power of RPi>
 +# vim /boot/config.txt
 +# PLACE config HERE
 +</sxh>
 +
 +==== Network Configuration ====
 +
 +By default RPi receives IP address via DHCP. We'll assign it a static one.
 +
 +<sxh bash;>
 +# cp /etc/netctl/examples/ethernet-static /etc/netctl
 +# vim /etc/netctl/ethernet-static
 +
 +PUT CONFIG HERE
 +</sxh>
 +
 +<sxh bash; title:Disabling default network settings>
 +# systemctl disable dhcpcd@eth0.service
 +# systemctl disable dhcpcd
 +# systemctl disable netctl-ifplugd@eth0
 +</sxh>
 +
 +<sxh bash; title:Enabling new network config>
 +# netctl enable ethernet-static
 +</sxh>
 +
 +==== System Update ====
 +
 +<sxh bash;>
 +# pacman -Syyu
 +</sxh;>
 ===== References ===== ===== References =====