Skip to content

Instantly share code, notes, and snippets.

@androclus
Last active February 5, 2016 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save androclus/ce9bd75fd98bcef7ae9f to your computer and use it in GitHub Desktop.
Save androclus/ce9bd75fd98bcef7ae9f to your computer and use it in GitHub Desktop.
okay, so in the file, https://jitsi.org/Main/DebianNightlyRepository ,
to make this a little friendlier to newb's, i would just add a little
more specific step-by-step info by replacing the line 463 that says,
<p>To use our debian/ubuntu nightly repository add this line to the list of repositories <code class='escaped'>"deb http://download.jitsi.org/nightly/deb unstable/"</code>.
</p>
with:
<p>To use our debian/ubuntu nightly repository, and install jitsi, do all of the following:</p>
<ul>
<li>update your packages first:<br/>
<code class='escaped'>$ sudo apt-get -y update</code></li>
<li>install the jitsi repository key onto your system:<br/>
<code class='escaped'>sudo wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add -</code></li>
<li>as root, create a file,<br/>
<code class='escaped'>/etc/apt/sources.list.d/jitsi-nightly.list</code><br/>
and in that file, add the following single line and save the file:<br/>
<code class='escaped'>deb http://download.jitsi.org/nightly/deb unstable/</code></li>
<li>run update again:<br/>
<code class='escaped'>$ sudo apt-get -y update</code></li>
<li>now install jitsi:<br/>
<code class='escaped'>$ sudo apt-get -y install jitsi</code></li>
</ul>
<p>From now on, to update to a newer nightly build, just run the apt update again:<br/>
<code class='escaped'>$ sudo apt-get -y update</code></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment