Narwhal: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
m (HARD RESET)
Line 3: Line 3:
=== Initial Config ===
=== Initial Config ===


From fresh install of Debian...
From fresh install of Ubuntu 16.04...




==== Utils ====
==== Utils ====
<pre>
<pre>
su
root@102>
apt install gnupg
apt install wget
apt install git
apt install python3-pip
apt install python3-venv
</pre>
</pre>


==== Jitsi ====
==== Big Blue Button (BBB) ====
<pre>
<pre>
su
root@102>
wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add -
sh -c "echo 'deb https://download.jitsi.org stable/' > /etc/apt/sources.list.d/jitsi-stable.list"
apt -y update
apt -y install jitsi-meet
</pre>
</pre>
==== HackspaceOS ====
<pre>
su noisebridge
cd /home/noisebridge
git https://github.com/marcoEDU/HackspaceOS.git
</pre>
https://github.com/marcoEDU/HackspaceOS#setup

Revision as of 21:26, 21 May 2020

Narwhal

Initial Config

From fresh install of Ubuntu 16.04...


Utils

root@102>

Big Blue Button (BBB)

root@102>