diff options
author | elijah <elijah@riseup.net> | 2014-07-01 15:52:48 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-07-01 15:52:48 -0700 |
commit | c8abaabe42c66cd76651a8bec7cbe5d0fa594340 (patch) | |
tree | 22d1468d8b21f863b009c367c632914d5e3233cc /public/linux/index.en.html | |
parent | 1408a52c3d249d28011bd262061f9cc05c0b686b (diff) |
fixed problems with debian wheezy instructions
Diffstat (limited to 'public/linux/index.en.html')
-rw-r--r-- | public/linux/index.en.html | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/public/linux/index.en.html b/public/linux/index.en.html index 56fee0d..c977a5c 100644 --- a/public/linux/index.en.html +++ b/public/linux/index.en.html @@ -116,10 +116,22 @@ Downloads <h3><a name="debian-70-wheezy"></a>Debian 7.0 (Wheezy)</h3> +<p>For wheezy, you must have <code>wheezy-backports</code> enabled as a software source in <code>/etc/apt/sources.list</code>. For example:</p> + +<pre><code>deb http://ftp.debian.org/debian wheezy-backports main contrib non-free +</code></pre> + +<p>Or, if you have faith in shell:</p> + +<pre><code>grep wheezy-backports /etc/apt/sources.list || grep "^deb .*debian\.org.*wheezy main" /etc/apt/sources.list | sed 's/wheezy/wheezy-backports/' >> /etc/apt/sources.list +</code></pre> + +<p>For instructions on adding backports via a user interface, see the <a href="https://wiki.debian.org/Backports">Debian backports page</a>.</p> + <p><p class='b'> To install </p> -<pre>sudo -s
add-apt-repository "deb http://deb.bitmask.net/debian wheezy main"
curl https://dl.bitmask.net/apt.key | apt-key add -
apt-get update
apt-get install bitmask leap-keyring
</pre> +<pre>sudo -s
add-apt-repository "deb http://deb.bitmask.net/debian wheezy main"
wget -O- https://dl.bitmask.net/apt.key | apt-key add -
apt-get update
apt-get install bitmask leap-keyring
</pre> <p class='b'> To remove </p> @@ -131,7 +143,7 @@ Downloads <p><p class='b'> To install </p> -<pre>sudo -s
add-apt-repository "deb http://deb.bitmask.net/debian jessie main"
curl https://dl.bitmask.net/apt.key | apt-key add -
apt-get update
apt-get install bitmask leap-keyring
</pre> +<pre>sudo -s
add-apt-repository "deb http://deb.bitmask.net/debian jessie main"
wget -O- https://dl.bitmask.net/apt.key | apt-key add -
apt-get update
apt-get install bitmask leap-keyring
</pre> <p class='b'> To remove </p> |