Changes between Initial Version and Version 1 of OpenvpnSoftwareRepos


Ignore:
Timestamp:
01/13/12 07:42:33 (12 years ago)
Author:
Samuli Seppänen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenvpnSoftwareRepos

    v1 v1  
     1[[TOC(inline, depth=1)]]
     2
     3= Introduction =
     4
     5Latest OpenVPN releases are also available in the project's apt repositories. This allow you to use more up-to-date version of OpenVPN than what's typically available in your distribution's repositories.
     6
     7Please note that all commands listed below have to be run as root, e.g. using ''sudo'' or ''su''.
     8
     9= Snapshots and stable releases =
     10
     11The s.c. "stable" packages built from official releases are only available for Debian/Ubuntu. This is so for two reasons:
     12
     13 * Official Debian/Ubuntu repositories tend to have fairly old OpenVPN versions available
     14 * There are fairly up-to-date versions of OpenVPN releases available in places such as  [http://repoforge.org/ RepoForge] (previously RPMForge)
     15
     16Snapshots are available for all platforms to facilitate use of the latest OpenVPN features. New versions are built on a weekly/bi-weekly basis in a semi-automated fashion.
     17
     18For Access Server, only release ("stable") packages are available.
     19
     20= Compatibility =
     21
     22All Linux packages are available in ''i386'' and ''amd64/x86_64'' flavours. Even if a package is built on a particular OS, it does not mean it won't work on older and/or newer versions of the same distro, or even on a different operating system. Compatibility for Debian packages:
     23 
     24||'''Package'''||'''Works on'''||
     25||||Debian 5.x||Debian 6.x||Debian 7.x||Ubuntu 10.04||Ubuntu 10.10||Ubuntu 11.04||Ubuntu 11.10||
     26||Debian 5.x (Lenny)||Yes||Untested||Untested||Untested||Untested||Untested||Untested||
     27||Debian 6.x (Squeeze)||Untested||Yes||Untested||Untested||Untested||Untested||Untested||
     28||Ubuntu 10.04 (Lucid)||Untested||Untested||Untested||Yes||Untested||Yes||Yes||
     29||AS 1.8.3 (deb)||Untested||Yes||Untested||Untested||Untested||Untested||Untested||
     30
     31Compatibility for RPM packages:
     32
     33||'''Package'''||'''Works on'''||
     34||||Fedora 15||Fedora 16||RHEL 6||
     35||Fedora 16||Untested||Works||Untested||
     36||RHEL 6||Untested||Untested||Works||
     37||AS 1.8.3 (RPM)||Untested||Works||Untested||
     38
     39If you've tested the packages yourself on an OS marked as ''"Untested"'', please change the appropriate cell to say ''"Yes"'' or ''"No"'', depending on whether the package worked or not. If you encountered any issues with the package, please file a new [wiki:TesterDocumentation#Reportingbugs bug report].
     40
     41= Using repos.openvpn.net =
     42
     43We have several OpenVPN (OSS) repositories. To use them, blindly follow these instructions:
     44
     45 * [http://repos.openvpn.net/repos/apt/conf/repos.openvpn.net-lenny-stable.txt Stable releases for Debian Lenny (5.0)]
     46 * [http://repos.openvpn.net/repos/apt/conf/repos.openvpn.net-squeeze-stable.txt Stable releases for Debian Squeeze (6.0)]
     47 * [http://repos.openvpn.net/repos/apt/conf/repos.openvpn.net-lucid-stable.txt Stable releases for Ubuntu Lucid Lynx (10.04)]
     48 * [http://repos.openvpn.net/repos/apt/conf/repos.openvpn.net-lenny-snapshots.txt Snapshots for Debian Lenny (5.0)]
     49 * [http://repos.openvpn.net/repos/apt/conf/repos.openvpn.net-squeeze-snapshots.txt Snapshots for Debian Squeeze (6.0)]
     50 * [http://repos.openvpn.net/repos/apt/conf/repos.openvpn.net-lucid-snapshots.txt Snapshots for Ubuntu Lucid Lynx (10.04)]
     51 * [http://repos.openvpn.net/repos/yum/conf/repos.openvpn.net-CentOS6-snapshots.txt Snapshots for RHEL/CentOS/Scientific Linux 6.x]
     52 * [http://repos.openvpn.net/repos/yum/conf/repos.openvpn.net-Fedora16-snapshots.txt Snapshots for Fedora 16]
     53
     54There are also two [wiki:AccessServer Access Server] repositories:
     55
     56 * [http://repos.openvpn.net/repos/apt/conf/repos.openvpn.net-as-stable.txt Stable Access Server releases for Debian-based distributions]
     57 * [http://repos.openvpn.net/repos/yum/conf/repos.openvpn.net-as-stable.txt Stable Access Server releases for RPM-based distributions]
     58
     59All available README files are listed at '''!http://repos.openvpn.net/repos/<apt|yum>/conf/'''. If you're unsure which codename your Debian/Ubuntu -based OS uses, look here:
     60
     61 * [http://en.wikipedia.org/wiki/Debian#Release_history Debian codenames]
     62 * [http://en.wikipedia.org/wiki/Ubuntu_%28operating_system%29#Releases Ubuntu codenames]
     63
     64= Upgrading from build.openvpn.net =
     65
     66If you started using OpenVPN apt repos between 2.2.0 and 2.2.2 releases, you're probably using the old repository server (build.openvpn.net). Although adding repos.openvpn.net repo file on top of that won't cause any issues, you may want to speed up apt by removing any sources.list fragments associated with it:
     67
     68{{{
     69$ rm -f /etc/apt/sources.list.d/openvpn-lenny.list
     70$ rm -f /etc/apt/sources.list.d/openvpn-lucid.list
     71}}}
     72
     73Also, build.openvpn.net repos may be taken offline later, which means apt will start complaining sooner or later.
     74
     75= Installing OpenVPN =
     76
     77On Debian, use
     78
     79{{{
     80$ apt-get update && apt-get install openvpn
     81}}}
     82
     83On !RedHat/Fedora use
     84
     85{{{
     86$ yum install openvpn
     87}}}