search for: dirmngr

Displaying 20 results from an estimated 23 matches for "dirmngr".

2009 Jun 17
0
[Announce] Dirmngr 1.0.3 released
Hi! We are pleased to announce the availability of Dirmngr version 1.0.3. Dirmngr is a server for managing and downloading certificate revocation lists (CRLs) for X.509 certificates and for downloading the certificates themselves. Dirmngr also handles OCSP requests as an alternative to CRLs. Although Dirmngr can be invoked on demand, it should in genera...
2024 Jan 25
0
[Announce] GnuPG 2.4.4 released
...9] * scd: Add support for D-Trust 4.1/4.4 cards. [rG0b85a9ac09] * scd: Add support for Smartcafe Expert 7.0 cards. [T6919] * scd: Add a length check for a new PIN. [T6843] * tpm: Fix keytotpm handling in the agent. [rG9909f622f6] * tpm: Fixes for the TPM test suite. [T6052] * dirmngr: Avoid starting a second instance on Windows via GPGME based launching. [T6833] * dirmngr: New option --ignore-crl-extensions. [T6545] * dirmngr: Support config value "none" to disable the default keyserver. [T6708] * dirmngr: Implement automatic proxy detection on Win...
2019 Jan 20
2
Still hitting odd problems trying to install R 3.5.2 on Debian amd64 machine
...page so: root at DebianAdvent:/etc/apt# apt-key adv --keyserver keys.gnupg.net --recv-key 'E19F5F87128899B192B1A2C2AD5F960A256A04AF' Executing: /tmp/apt-key-gpghome.qC3CUffAEm/gpg.1.sh --keyserver keys.gnupg.net --recv-key E19F5F87128899B192B1A2C2AD5F960A256A04AF gpg: failed to start the dirmngr '/usr/bin/dirmngr': No such file or directory gpg: connecting dirmngr at '/tmp/apt-key-gpghome.qC3CUffAEm/S.dirmngr' failed: No such file or directory gpg: keyserver receive failed: No dirmngr Might be worth adding a warning about this to that page but I think I can manage this...
2009 Feb 18
0
[Announce] Gpg4win 1.1.4 released
...--------------------------------------------- * Updated GnuPG to 1.4.9 to solve problems on Windows Vista. * Updated the optional GnuPG-2 components. * Included the small Paperkey and Scute utilities. * Included components are: GnuPG: 1.4.9 [*] GnuPG2: 2.0.10 [*] DirMngr: 1.0.3-svn310 [*] GPA: 0.8.0 [*] GPGol: 0.9.92 GPGee: 1.3.1 WinPT: 1.2.0 Claws-Mail: 3.0.0-rc2 Novices: 1.0.0 Einsteiger: 2.0.2 Durchblicker: 2.0.2 (Marked packages are updated since the last release) I...
2024 Jul 08
2
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...sitory is not updated and the previous index files will be used. GPG error: https://packages.adoptium.net/artifactory/deb jammy InRelease: At least one invalid signature was encountered. I skipped that line and tried the next line: :/# apt install --no-install-recommends software-properties-common dirmngr Reading package lists... Done Building dependency tree... Done Reading state information... Done dirmngr is already the newest version (2.2.27-3ubuntu2.1). software-properties-common is already the newest version (0.99.22.9). 0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded. Next, I d...
2024 Jul 08
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...for building from source if you care to have the minimal footprint in your images). FROM ubuntu:22.04 USER root ENV DEBIAN_FRONTEND noninteractive ## Configure Ubuntu for R install RUN apt-get update \ && apt install -y --no-install-recommends \ software-properties-common \ dirmngr \ gnupg2 \ wget \ build-essential \ libcurl4-openssl-dev \ libxml2-dev \ && wget -q -O - https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc \ | tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc \ && add-apt-repository -y "ppa:marut...
2024 Mar 12
0
[Announce] GnuPG 2.4.5 released
...Allow auto detaching of kernel drivers; can be disabled with the new compatibility-flag ccid-no-auto-detach. [rGa1ea3b13e0] * scd: Allow setting a PIN length of 6 also with a reset code for openpgp cards. [T6843] * agent: Allow GET_PASSPHRASE in restricted mode. [rGadf4db6e20] * dirmngr: Trust system's root CAs for checking CRL issuers. [T6963] * dirmngr: Fix regression in 2.4.4 in fetching keys via hkps. [T6997] * gpg-wks-client: Make option --mirror work properly w/o specifying domains. [rG37cc255e49] * g13,gpg-wks-client: Allow command style options as...
2019 Dec 02
4
Debian Stretch - > buster: samba packages
On 02/12/2019 10:07, Stefan G. Weichinger via samba wrote: > Am 02.12.19 um 08:47 schrieb L.P.H. van Belle via samba: >> Hai, >> >> Sorry for the late reply. > Never mind, weekend is important ... > >> Here its just apt-get distupgrade --autoremove --purge >> Without the autoremove libldb1 is not removed so libldb2 can be installed. > # apt-get distupgrade
2024 Oct 15
2
R Package: 'ggbreak' in Dockerfile
...hing else. Please see the contents of the Dockerfile below: FROM selenium/standalone-firefox:127.0 USER root ENV SE_OFFLINE=true ENV PATH "$PATH:/usr/bin/geckodriver" ENV HOME "/root/" RUN apt-get update \ && apt install -y \ software-properties-common \ dirmngr \ gnupg2 \ wget \ build-essential \ libcurl4-openssl-dev \ libxml2-dev \ libasound2 \ # libasound2t64 \ python3 \ python3-pip \ python3.11-venv \ # python3.12-venv \ git-all \ lsb-release \ libxml-twig-perl \ libc6-dev \ vim \ &&...
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...d over 32.53 gigs of data, and seemed to have been interfering with some of the package installations trying to take place. Next, I tried using part of Marco?s dockerfile and it helped solve the issue: RUN apt-get update \ && apt install -y \ software-properties-common \ dirmngr \ gnupg2 \ wget \ build-essential \ libcurl4-openssl-dev \ libxml2-dev \ libasound2 \ python3 \ python3-pip \ python3.10-venv \ git-all \ lsb-release \ libxml-twig-perl \ libc6-dev \ && wget -q -O - https://...
2020 Jun 26
2
reboot of nut managment node resets Tripplite SMX1000LCD
Hi Roger et.al, The shutdown /reset of UPS is near instantaneous after rpi reboots or switches off. FWIW -- It looks like something is off with Ubuntu 20.04 -- I tried with raspbian and arch linux using the same nut configuration on the same hardware and the UPS does not reset. I have repurposed an old rpi2 to act as a nut server. Thanks Roger. Yogesh On Mon, Jun 22, 2020 at 11:33 AM
2020 Jun 27
1
reboot of nut managment node resets Tripplite SMX1000LCD
...:26:32 fourpi01 systemd[1547]: Stopped target Sockets. Jun 25 11:26:32 fourpi01 systemd[1547]: Stopped target Timers. Jun 25 11:26:32 fourpi01 systemd[1547]: dbus.socket: Succeeded. Jun 25 11:26:32 fourpi01 systemd[1547]: Closed D-Bus User Message Bus Socket. Jun 25 11:26:32 fourpi01 systemd[1547]: dirmngr.socket: Succeeded. Jun 25 11:26:32 fourpi01 systemd[1547]: Closed GnuPG network certificate management daemon. Jun 25 11:26:32 fourpi01 systemd[1547]: gpg-agent-browser.socket: Succeeded. Jun 25 11:26:32 fourpi01 systemd[1547]: Closed GnuPG cryptographic agent and passphrase cache (access for web b...
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...d over 32.53 gigs of data, and seemed to have been interfering with some of the package installations trying to take place. Next, I tried using part of Marco?s dockerfile and it helped solve the issue: RUN apt-get update \ && apt install -y \ software-properties-common \ dirmngr \ gnupg2 \ wget \ build-essential \ libcurl4-openssl-dev \ libxml2-dev \ libasound2 \ python3 \ python3-pip \ python3.10-venv \ git-all \ lsb-release \ libxml-twig-perl \ libc6-dev \ && wget -q -O - https://...
2019 Dec 02
0
Debian Stretch - > buster: samba packages
...3-lib2to3 python3.7 python3.7-dev python3.7-minimal runit-helper usb.ids Die folgenden Pakete werden aktualisiert (Upgrade): amanda-client amanda-common apt apt-listchanges apt-transport-https apt-utils aspell at bind9-host binutils build-essential cpp curl dash debconf debconf-i18n debconf-utils dirmngr dnsutils dpkg exim4 exim4-base exim4-config exim4-daemon-light g++ gcc git git-man gnupg gnupg-agent gnutls-bin groff-base htop iftop iptables irqbalance isc-dhcp-client isc-dhcp-server krb5-user libalgorithm-diff-xs-perl libapt-pkg5.0 libaspell15 libatomic1 libcc1-0 libcilkrts5 libcurl3-gnutls...
2024 Oct 15
2
R Package: 'ggbreak' in Dockerfile
...hing else. Please see the contents of the Dockerfile below: FROM selenium/standalone-firefox:127.0 USER root ENV SE_OFFLINE=true ENV PATH "$PATH:/usr/bin/geckodriver" ENV HOME "/root/" RUN apt-get update \ && apt install -y \ software-properties-common \ dirmngr \ gnupg2 \ wget \ build-essential \ libcurl4-openssl-dev \ libxml2-dev \ libasound2 \ # libasound2t64 \ python3 \ python3-pip \ python3.11-venv \ # python3.12-venv \ git-all \ lsb-release \ libxml-twig-perl \ libc6-dev \ vim \ &&...
2024 Jul 11
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
...d over 32.53 gigs of data, and seemed to have been interfering with some of the package installations trying to take place. Next, I tried using part of Marco?s dockerfile and it helped solve the issue: RUN apt-get update \ && apt install -y \ software-properties-common \ dirmngr \ gnupg2 \ wget \ build-essential \ libcurl4-openssl-dev \ libxml2-dev \ libasound2 \ python3 \ python3-pip \ python3.10-venv \ git-all \ lsb-release \ libxml-twig-perl \ libc6-dev \ && wget -q -O - https://...
2019 Dec 02
0
Debian Stretch - > buster: samba packages
...n3.7-dev > python3.7-minimal runit-helper usb.ids > Die folgenden Pakete werden aktualisiert (Upgrade): > amanda-client amanda-common apt apt-listchanges apt-transport-https > apt-utils aspell at bind9-host binutils build-essential cpp curl dash > debconf debconf-i18n debconf-utils dirmngr dnsutils dpkg exim4 > exim4-base exim4-config exim4-daemon-light g++ gcc git git-man gnupg > gnupg-agent gnutls-bin groff-base htop iftop iptables irqbalance > isc-dhcp-client isc-dhcp-server krb5-user libalgorithm-diff-xs-perl > libapt-pkg5.0 libaspell15 libatomic1 libcc1-0 libcilk...
2008 Aug 02
2
wbinfo -u and -g work, getent passwd works, getent group DOES NOT WORK
...mbadmin:/bin/bash ORA\bob4:*:31008:10513::/home/ORA/bob4:/bin/bash ORA\bob:*:13012:10513::/home/ORA/bob:/bin/bash ORA\bob2:*:31000:10513::/home/ORA/bob2:/bin/bash ubuntu01@ubuntu19:~$ getent group | egrep ORA ubuntu01@ubuntu19:~$ getent group | tail -5 sambashare:x:125:ubuntu01 winbindd_priv:x:126: dirmngr:x:127: BUILTIN\administrators:x:10000: BUILTIN\users:x:10001: ubuntu01@ubuntu19:~$ smbd -V Version 3.0.28a ubuntu01@ubuntu19:~$ smb.conf for server: ------------------------ [global] log level = 2 workgroup = ORA netbios name = SAMBA1 server string = %h server (S...
2024 Jul 10
1
Issues with Ubuntu 22.04 and Installing the Latest Version of R (R 4.4.1) to Docker Image
Lauren, I am now back home where looking into these things is a little easier. From your first email to me, I started off with the selenium container you mentioned as your starting point. And that basically is your issue. It is a 'high-level' container, and it sets a user. (Essentially) all other Dockerfiles you have seen and been pointed at are 'lower-level' and operate as root
2019 Dec 02
1
Debian Stretch - > buster: samba packages
...3.7-dev > python3.7-minimal runit-helper usb.ids > Die folgenden Pakete werden aktualisiert (Upgrade): > amanda-client amanda-common apt apt-listchanges apt-transport-https > apt-utils aspell at bind9-host binutils build-essential cpp curl dash > debconf debconf-i18n debconf-utils dirmngr dnsutils dpkg exim4 > exim4-base exim4-config exim4-daemon-light g++ gcc git git-man gnupg > gnupg-agent gnutls-bin groff-base htop iftop iptables irqbalance > isc-dhcp-client isc-dhcp-server krb5-user libalgorithm-diff-xs-perl > libapt-pkg5.0 libaspell15 libatomic1 libcc1-0 libci...