Dieses Wiki ist ein Archiv bis 2023. Das aktuelle Wiki findet sich unter https://wiki.hamburg.ccc.de/

Difference between revisions of "Club Sound System"

From CCCHHWiki
Jump to: navigation, search
(initial commit)
 
(Replaced content with "# [https://wiki.mad.unserver.de/Club-Sound-System MOVED].")
Line 1: Line 1:
# Setup an SD card with Arch Linux for a Raspberry Pi according to to instructions in the '''Install''' section of [https://archlinuxarm.org/platforms/armv6/raspberry-pi their website].
+
# [https://wiki.mad.unserver.de/Club-Sound-System MOVED].
# Attach the Pi to network and power.
 
# Connect to the Pi via ssh. An arp-scan can help find it.
 
<pre>
 
$ sudo arp-scan --localnet --ignoredups
 
[...]
 
10.42.23.REDACTED b8:27:eb:REDACTED Raspberry Pi Foundation
 
[...]
 
$ ssh alarm@10.42.23.REDACTED
 
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
 
[alarm@alarmpi ~]$ exit
 
$ ssh-copy-id -i ~/.ssh/id_ed25519 alarm@10.42.23.REDACTED
 
$ vim ~/.ssh/config
 
Host clubsoundsystem
 
    user alarm
 
    HostName 10.42.23.REDACTED
 
</pre>
 
# Initialize the pacman keyring, populate the Arch Linux ARM package signing keys, upgrade system and install sudo.
 
<pre>
 
$ ssh clubsoundsystem
 
[alarm@alarmpi ~]$ su
 
[root@alarmpi alarm]# pacman-key --init
 
[root@alarmpi alarm]# pacman-key --populate archlinuxarm
 
[root@alarmpi alarm]# pacman -Syyu
 
[root@alarmpi alarm]# pacman -S sudo
 
</pre>
 

Revision as of 23:13, 3 June 2020