Package Details: conserver 8.2.7-1

Git Clone URL: https://aur.archlinux.org/conserver.git (read-only, click to copy)
Package Base: conserver
Description: Serial console remote sharing and logging daemon with support for IPMI.
Upstream URL: https://www.conserver.com
Licenses: BSD
Submitter: ndowens
Maintainer: omgold
Last Packager: omgold
Votes: 3
Popularity: 0.000000
First Submitted: 2009-07-01 04:51 (UTC)
Last Updated: 2023-10-25 07:22 (UTC)

Latest Comments

leobras commented on 2023-10-19 19:47 (UTC)

There is an update. Please merge: https://gitlab.com/LeoBras/aur-conserver/-/tree/master

PyroDevil commented on 2021-12-15 13:52 (UTC) (edited on 2021-12-15 13:53 (UTC) by PyroDevil)

I integrated this on a Raspberry PI, and here are a couple of comments:

  • I had to add armv7h to the arch list in the PKGBUILD, which seems to work without issue.
  • I switched the conserver.service over to the simple type and call conserver without any arguments. This makes sure that the logs are send to journald, which does log rotation/truncation etc. without requiring logrotate etc.

KingSpeedy commented on 2019-06-07 11:53 (UTC)

Disregard my comment - I had an old orphaned version of the package installed that was getting hit first in my $PATH.

omgold commented on 2019-06-06 12:26 (UTC)

@KingSpeedy: cannot confirm. For me it definitely links against openssl 1.1.1, meaning: /usr/lib/libssl.so.1.1

What was installed on the system you built it? 1.0 or 1.1 or both? What is /usr/lib/libssl.so pointing at?

KingSpeedy commented on 2019-06-06 12:08 (UTC)

This seems to specifically need core/openssl-1.0 now. Without it I got a runtime error of "error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory"

omgold commented on 2019-03-04 11:21 (UTC)

the PKGBUILD seems to need various fixes to build (and build something useful), parts of it already are mentioned below.

Maybe you could use something more like this:

https://github.com/omgold/conserver-aur/commit/20edbc1d680fa35fc9236868c145322238f8ea98

plus enabling a few more options (others seem to need).

<deleted-account> commented on 2012-03-21 12:20 (UTC)

console did not work for me when tried to log in with it to company conserver. It faied with: console: getservbyname(conserver) failed I recompiled with adapting configure options from Fedora build [ http://dl.fedoraproject.org/pub/fedora/linux/releases/16/Everything/source/SRPMS/conserver-8.1.18-3.fc15.src.rpm ] which are: --with-libwrap \ --with-openssl \ --with-pam \ --with-gssapi \ --with-striprealm \ --with-port=782 With this, it works now fine. (The company most likely uses conserver on RHEL, so we can imply that these flags are needed for Red Hat compatibility.)

<deleted-account> commented on 2011-05-12 07:57 (UTC)

With new MIT krb5 in [Core], it will complain about missing /usr/lib/libgssapi.so (even recompile) This command might solve the problem. But not sure why recompile don't work. sudo ln -s /usr/lib/libgssapi_krb5.so /usr/lib/libgssapi.so

<deleted-account> commented on 2011-02-11 10:48 (UTC)

pkgname=conserver pkgver=8.1.18 pkgrel=1 pkgdesc="an application that allows multiple users to watch a serial console at the same time." arch=('i686' 'x86_64') url="http://www.conserver.com" license=('BSD') depends=('sh') source=(http://www.conserver.com/${pkgname}-${pkgver}.tar.gz) md5sums=('93d1c38df71b4e3fd5d8f7ad6fc186bb') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr --with-port=782 --with-libwrap --with-openssl --with-pam --with-gssapi make make bindir=${pkgdir}/usr/bin mandir=${pkgdir}/usr/share/man sbindir=${pkgdir}/usr/sbin/ libdir=${pkgdir}/usr/lib datadir=${pkgdir}/usr/share/${pkgname} install install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE }

<deleted-account> commented on 2010-11-04 02:47 (UTC)

Please update the compile option: ./configure --prefix=/usr --with-port=782 --with-libwrap --with-openssl --with-pam