Differences between revisions 10 and 27 (spanning 17 versions)
Revision 10 as of 2010-11-11 15:32:03
Size: 1548
Editor: sjefen6
Comment:
Revision 27 as of 2016-05-07 23:23:54
Size: 1778
Editor: dx
Comment: remove some dust
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
== Ubuntu ==
Users of newer versions of ubuntu can use the add-apt-repository command to add the repository in one simple command. To change the deb line, look at the general section.
Bitlbee offers daily builds for debian like linux distros. They are located at:
Line 6: Line 5:
{{{ sudo add-apt-repository "deb http://code.bitlbee.org/debian/devel/maverick/i386/ ./" }}} http://code.bitlbee.org/debian/
Line 8: Line 7:
If you are missing the command are you able to install it with the command Since these are binary packages they may not be usable for you if you're using a less common platform. Right now, 32-/64-bit Intel and ARM platforms are supported.
Line 10: Line 9:
{{{ sudo apt-get install python-software-properties }}} An up to date list of available distros and architectures is available in the repo readme at:
Line 12: Line 11:
More information at the [[https://help.ubuntu.com/community/Repositories/CommandLine#Adding Launchpad PPA Repositories|Ubuntu community documentation]] http://code.bitlbee.org/debian/README.html
Line 14: Line 13:
== General linux == The most common way of adding the !BitlBee repository, is by adding it to your ''sources.list'' file, located at ''/etc/apt/sources.list''. Alternatively you may create a new file ''/etc/apt/sources.list.d/bitlbee.list''.
Line 16: Line 15:
The line you need to add might look something like this for a 32-bits system:
Line 17: Line 17:
Bitlbee offers daily builds for debian like linux distros. They are located at [[http://code.bitlbee.org/debian/]].
The most common way of adding the !BitlBee repository, is by adding it to your ''sources.list'' file, located at ''/etc/apt/sources.list''.
 {{{
deb http://code.bitlbee.org/debian/master/jessie/i386/ ./
}}}
Line 20: Line 21:
The line you need to add might look something like this: And for a 64-bit version:
Line 22: Line 23:
{{{deb http://code.bitlbee.org/debian/devel/karmic/i386/ ./}}}  {{{
deb http://code.bitlbee.org/debian/master/jessie/amd64/ ./
}}}
Line 24: Line 27:
The '''devel''' subdirectory means that it is the main development branch of bitlbee. The '''karmic''' subdirectory means that it is intended for the Karmic Koala release of Ubuntu and the '''i386''' subdirectory means that it is intended for an i386 (32 bit) version of the operating system. Or if you're using an ARM-based machine:
Line 26: Line 29:
Builds are currently available for:  {{{
deb http://code.bitlbee.org/debian/master/jessie/armhf/ ./
}}}
Line 28: Line 33:
  * Debian Lenny (5.0)
  * Debian Squeeze (6.0) (testing)
  * Ubuntu Hardy Heron (8.04 LTS)
  * Ubuntu Karmic Koala (9.10)
  * Ubuntu Lucid Lynx (10.04 LTS)
  * Ubuntu Mavrick Meercat (10.10)
The '''master''' subdirectory means that it is the main development branch of bitlbee. The '''jessie''' subdirectory means that it is intended for the Jessie (8.0) release of Debian and the '''i386''' subdirectory means that it is intended for an i386 (32 bit) version of the operating system. You can check if you need 32 or 64-bits using the ''uname -m'' command.

After adding the repository and the GPG key (optional, see below) do {{{sudo apt-get update}}} and then install with {{{sudo apt-get install bitlbee}}} (''aptitude'' may be used instead of ''apt-get'').

For the GPG key, copy-paste the following into your terminal

 {{{
wget -O- https://code.bitlbee.org/debian/release.key | sudo apt-key add -
}}}

Daily built packages

Bitlbee offers daily builds for debian like linux distros. They are located at:

http://code.bitlbee.org/debian/

Since these are binary packages they may not be usable for you if you're using a less common platform. Right now, 32-/64-bit Intel and ARM platforms are supported.

An up to date list of available distros and architectures is available in the repo readme at:

http://code.bitlbee.org/debian/README.html

The most common way of adding the BitlBee repository, is by adding it to your sources.list file, located at /etc/apt/sources.list. Alternatively you may create a new file /etc/apt/sources.list.d/bitlbee.list.

The line you need to add might look something like this for a 32-bits system:

  • deb http://code.bitlbee.org/debian/master/jessie/i386/ ./

And for a 64-bit version:

  • deb http://code.bitlbee.org/debian/master/jessie/amd64/ ./

Or if you're using an ARM-based machine:

  • deb http://code.bitlbee.org/debian/master/jessie/armhf/ ./

The master subdirectory means that it is the main development branch of bitlbee. The jessie subdirectory means that it is intended for the Jessie (8.0) release of Debian and the i386 subdirectory means that it is intended for an i386 (32 bit) version of the operating system. You can check if you need 32 or 64-bits using the uname -m command.

After adding the repository and the GPG key (optional, see below) do sudo apt-get update and then install with sudo apt-get install bitlbee (aptitude may be used instead of apt-get).

For the GPG key, copy-paste the following into your terminal

  • wget -O- https://code.bitlbee.org/debian/release.key | sudo apt-key add -

BitlBee Wiki: Packages (last edited 2016-05-07 23:23:54 by dx)