46 | | == Building Your Own == |
| 50 | = Unofficial Precompiled Packages = |
| 51 | These are unofficial packages that are not maintained by the official mechanisms of the upstream distribution; we are trying to get more recent versions of Bcfg2 into distributions, but often you will need to use one of these. |
| 52 | |
| 53 | == Ubuntu Packages (Launchpad Bcfg2 PPA) == |
| 54 | Made by the [https://launchpad.net/~bcfg2 Bcfg2 in Launchpad] team. |
| 55 | |
| 56 | === Testing Releases === |
| 57 | These releases are volitile and may sometimes be broken. You shouldn't automatically update production systems against them. |
| 58 | |
| 59 | After making the appropriate one of the below your `/etc/apt/sources.list.d/bcfg2.list` file, do: |
| 60 | {{{ |
| 61 | sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 98932BEC |
| 62 | sudo aptitude update |
| 63 | sudo aptitude install bcfg2 |
| 64 | }}} |
| 65 | |
| 66 | And if you also want the server: |
| 67 | {{{ |
| 68 | sudo aptitude install bcfg2-server |
| 69 | }}} |
| 70 | |
| 71 | ==== Ubuntu Hardy ==== |
| 72 | (Tested under gNewSense DeltaH) |
| 73 | {{{ |
| 74 | # /etc/apt/sources.list.d/bcfg2.list |
| 75 | # Bcfg2 PPA - https://launchpad.net/~bcfg2/+archive/hardytesting |
| 76 | # sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 98932BEC |
| 77 | |
| 78 | deb http://ppa.launchpad.net/bcfg2/hardytesting/ubuntu hardy main |
| 79 | deb-src http://ppa.launchpad.net/bcfg2/hardytesting/ubuntu hardy main |
| 80 | }}} |
| 81 | |
| 82 | ==== Ubuntu Intrepid ==== |
| 83 | {{{ |
| 84 | # /etc/apt/sources.list.d/bcfg2.list |
| 85 | # Bcfg2 PPA - https://launchpad.net/~bcfg2/+archive/intrepidtesting |
| 86 | # sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 98932BEC |
| 87 | |
| 88 | deb http://ppa.launchpad.net/bcfg2/intrepidtesting/ubuntu intrepid main |
| 89 | deb-src http://ppa.launchpad.net/bcfg2/intrepidtesting/ubuntu intrepid main |
| 90 | }}} |
| 91 | |
| 92 | ==== Ubuntu Jaunty ==== |
| 93 | (Tested under Trisquel Dwyn) |
| 94 | {{{ |
| 95 | # /etc/apt/sources.list.d/bcfg2.list |
| 96 | # Bcfg2 PPA - https://launchpad.net/~bcfg2/+archive/jauntytesting |
| 97 | # sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 98932BEC |
| 98 | |
| 99 | deb http://ppa.launchpad.net/bcfg2/jauntytesting/ubuntu jaunty main |
| 100 | deb-src http://ppa.launchpad.net/bcfg2/jauntytesting/ubuntu jaunty main |
| 101 | }}} |
| 102 | |
| 103 | ==== Ubuntu Karmic ==== |
| 104 | {{{ |
| 105 | # /etc/apt/sources.list.d/bcfg2.list |
| 106 | # Bcfg2 PPA - https://launchpad.net/~bcfg2/+archive/karmictesting |
| 107 | # sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 98932BEC |
| 108 | |
| 109 | deb http://ppa.launchpad.net/bcfg2/hardytesting/ubuntu karmic main |
| 110 | deb-src http://ppa.launchpad.net/bcfg2/hardytesting/ubuntu karmic main |
| 111 | }}} |
| 112 | |
| 113 | ==== Ubuntu Lucid ==== |
| 114 | {{{ |
| 115 | # /etc/apt/sources.list.d/bcfg2.list |
| 116 | # Bcfg2 PPA - https://launchpad.net/~bcfg2/+archive/lucidtesting |
| 117 | # sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 98932BEC |
| 118 | |
| 119 | deb http://ppa.launchpad.net/bcfg2/hardytesting/ubuntu lucid main |
| 120 | deb-src http://ppa.launchpad.net/bcfg2/hardytesting/ubuntu lucid main |
| 121 | }}} |
| 122 | |
| 123 | === Stable Releases === |
| 124 | We will strive to only have stable, working releases that have gone through testing in these repositories. There is not yet anything here. |
| 125 | |
| 126 | = Building Your Own = |