Differences between revisions 9 and 27 (spanning 18 versions)
Revision 9 as of 2010-11-11 15:31:38
Size: 1544
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.
{{{ sudo add-apt-repository "deb http://code.bitlbee.org/debian/devel/maverick/i386/ ./" }}}
Bitlbee offers daily builds for debian like linux distros. They are located at:
Line 7: Line 5:
If you are missing the command are you able to install it with the command
{{{ sudo apt-get install python-software-properties }}}
http://code.bitlbee.org/debian/
Line 10: Line 7:
More information at the [[https://help.ubuntu.com/community/Repositories/CommandLine#Adding Launchpad PPA Repositories|Ubuntu community documentation]] 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 12: Line 9:
== General linux == An up to date list of available distros and architectures is available in the repo readme at:
Line 14: Line 11:
http://code.bitlbee.org/debian/README.html
Line 15: Line 13:
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''.
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 18: Line 15:
The line you need to add might look something like this: The line you need to add might look something like this for a 32-bits system:
Line 20: Line 17:
{{{deb http://code.bitlbee.org/debian/devel/karmic/i386/ ./}}}  {{{
deb http://code.bitlbee.org/debian/master/jessie/i386/ ./
}}}
Line 22: Line 21:
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. And for a 64-bit version:
Line 24: Line 23:
Builds are currently available for:  {{{
deb http://code.bitlbee.org/debian/master/jessie/amd64/ ./
}}}
Line 26: Line 27:
  * 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)
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 -
}}}

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)