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
Last revisionBoth sides next revision
projects:howtos:artemis [2014/08/26 19:34] – [References] prometheusprojects:howtos:artemis [2014/08/27 22:51] prometheus
Line 1: Line 1:
 ====== Artemis ====== ====== Artemis ======
 +
 +<note>This article is still in its initial phase towards the first edition. Stay tuned.</note>
  
 As all projects, this one needed to have a name as well. //Artemis// originates from the old Greek and means - amongst others - unharmful or safe. And exactly this Artemis should deliver to you: safety for your data and no harm to your communications. As all projects, this one needed to have a name as well. //Artemis// originates from the old Greek and means - amongst others - unharmful or safe. And exactly this Artemis should deliver to you: safety for your data and no harm to your communications.
Line 111: Line 113:
  
 <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>
 +
 +==== Additional Software ====
 +
 +The first both programs are needed in order to complete the howto, //vim// is a comfortable choice though.
 +
 +<sxh bash;>
 +# pacman -S rsync mkinitcpio vim
 +</sxh>
 +
 +==== root partition encryption ====
 +