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 revision
Previous revision
Next revisionBoth sides next revision
projects:howtos:artemis [2014/08/26 19:33] 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 =====
  
 [0] [[http://deadunicornz.org/blog/2013/12/20/raspberrypi-root-partition-encryption/|RaspberryPi With Root Partition Encryption, Unlocked Using Flash Drive]] [0] [[http://deadunicornz.org/blog/2013/12/20/raspberrypi-root-partition-encryption/|RaspberryPi With Root Partition Encryption, Unlocked Using Flash Drive]]
 \\ [1] [[https://gist.github.com/pezz/5310082|Archlinux ARM encrypted root]] \\ [1] [[https://gist.github.com/pezz/5310082|Archlinux ARM encrypted root]]
 +\\ [] [[http://archlinuxarm.org/platforms/armv6/raspberry-pi|ArchLinux ARM - Raspberry Pi Installation]]