Yubico Forum

...visit our web-store at store.yubico.com
It is currently Tue Jan 30, 2018 10:52 am

All times are UTC + 1 hour




Post new topic Reply to topic  [ 22 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
PostPosted: Tue Oct 28, 2014 4:12 am 
Offline

Joined: Sat Mar 22, 2014 4:45 am
Posts: 12
I know with my Lubuntu install the GPG agent launch script for xsession did not properly export the environment variables. I had to kill gpg-agent, then issue:

gpg-agent --enable-ssh-support --sh --deaemon

The process will spit out 3 environment variables: GPG_AGENT_INFO, SSH_AUTH_SOCK, and SSH_AGENT_PID.
I then issued 3 export statements for the 3 variables:

export GPG_AGENT_INFO=/home/[USERNAME]/.gnupg/S.gpg-agent:somenumber:1
export SSH_AUTH_SOCK=/home/[USERNAME]/.gnupg/S.gpg-agent.ssh
export SSH_AGENT_PID=somenumber (matches the one in the first line)

... and ran ssh-add -L to grab my key from the Neo so that SSH knew it could use the Neo for authentication.
SSH from the command line worked fine after that. It even prompted me for my user PIN from the card.

Don't know if that will help you at all. It seems like there's a registered bug on Launchpad regarding the environment variables, but as we say in the inbred south "it ain't fixed yet!"


Top
 Profile  
Reply with quote  

Share On:

Share on Facebook FacebookShare on Twitter TwitterShare on Tumblr TumblrShare on Google+ Google+

PostPosted: Tue Oct 28, 2014 8:44 pm 
Offline

Joined: Thu Aug 28, 2014 9:24 pm
Posts: 23
Location: California
Aggraxis wrote:
It seems like there's a registered bug on Launchpad regarding the environment variables


Edit ~/.gnupg/gpg-agent.conf and add these lines (the first 2 or 3 are really important, and it's specifically the 2nd that is relevant to this topic, the last two are just nice to have):

Code:
enable-ssh-support
write-env-file
use-standard-socket
default-cache-ttl 600
max-cache-ttl 7200


The env-file referenced in the 2nd line above is ~/.gpg-agent-info and it's created by gpg-agent when it starts running - in it you will find all those variables you need. Then you could simply edit ~/.profile or any other profile file in your account and add:

Code:
source ~/.gpg-agent-info


Make all the changes indicated above. Log out, log back in, and voila, the variables are now present in your environment. Everything just works.

_________________
Florin Andrei
http://florin.myip.org/


Top
 Profile  
Reply with quote  
PostPosted: Fri Oct 31, 2014 5:24 am 
Offline

Joined: Sat Mar 22, 2014 4:45 am
Posts: 12
Florin,

Thank you very much for that. I edited my gpg-agent.conf (which didn't exist for some silly reason) and then tied it in with .session as you illustrated. It worked at next login with no fussing from me.


Top
 Profile  
Reply with quote  
PostPosted: Thu May 28, 2015 2:42 pm 
Offline

Joined: Sat Jan 14, 2012 6:01 pm
Posts: 7
Getting SSH to prompt for a pin is sort of hit or miss in Windows 7. It seems to be due to other smart cards and services all fighting for resources and locking them once they get them. I think the smart card I use for work is hijacking the service whenever I use something that requires it to check credentials. I've worked around it by writing a couple of scripts that do the following:

stop-all:
Kill gpg agent process and putty for good measure

start-gpg:
stop "CertPropvc"
Restart "SCardSvc"
start "CertPropSvc"
start gpg agent, usually it works better if started by doing gpg2 --card-status
start putty

However, this isn't perfect and sometimes I have to run the start script more than once to get the pin prompt, and I'll likely need to run it again if I take out my (work) smart card or my yubikey neo.

Does anyone have a more robust solution?

The perfect solution, other than it just working properly with no intervention (unlikely), would be something akin to udev in Linux, triggered by insertion of a smartcard, and monitored to restart when it is hijacked.


Top
 Profile  
Reply with quote  
PostPosted: Tue Jun 16, 2015 5:20 pm 
Offline

Joined: Tue Jun 16, 2015 4:33 pm
Posts: 7
Hi,

I'm running into a problem installing this on a CentOS 7 box.

Installing libyubikey-1.10.tar.gz went fine.

Code:
[root@server01 libyubikey-1.10]#  ./configure --prefix=/usr/local/yubi
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for ar... ar
checking the archiver (ar) interface... ar
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking if LD -Wl,--version-script works... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating tests/Makefile
config.status: executing depfiles commands
config.status: executing libtool commands
[root@server01 libyubikey-1.10]# make && make install
Making all in .
make[1]: Map '/usr/local/yubi/src/libyubikey-1.10' wordt binnengegaan
  CC     yktoken.lo
  CC     ykhex.lo
  CC     ykmodhex.lo
  CC     ykcrc.lo
  CC     ykaes.lo
  CCLD   libyubikey.la
  CC     modhex.o
  CCLD   modhex
  CC     ykparse.o
  CCLD   ykparse
  CC     ykgenerate.o
  CCLD   ykgenerate
make[1]: Map '/usr/local/yubi/src/libyubikey-1.10' wordt verlaten
Making all in tests
make[1]: Map '/usr/local/yubi/src/libyubikey-1.10/tests' wordt binnengegaan
make[1]: Er hoeft niets gedaan te worden voor 'all'.
make[1]: Map '/usr/local/yubi/src/libyubikey-1.10/tests' wordt verlaten
Making install in .
make[1]: Map '/usr/local/yubi/src/libyubikey-1.10' wordt binnengegaan
make[2]: Map '/usr/local/yubi/src/libyubikey-1.10' wordt binnengegaan
 /usr/bin/mkdir -p '/usr/local/yubi/lib'
 /bin/sh ./libtool   --mode=install /usr/bin/install -c   libyubikey.la '/usr/local/yubi/lib'
libtool: install: /usr/bin/install -c .libs/libyubikey.so.0.1.4 /usr/local/yubi/lib/libyubikey.so.0.1.4
libtool: install: (cd /usr/local/yubi/lib && { ln -s -f libyubikey.so.0.1.4 libyubikey.so.0 || { rm -f libyubikey.so.0 && ln -s libyubikey.so.0.1.4 libyubikey.so.0; }; })
libtool: install: (cd /usr/local/yubi/lib && { ln -s -f libyubikey.so.0.1.4 libyubikey.so || { rm -f libyubikey.so && ln -s libyubikey.so.0.1.4 libyubikey.so; }; })
libtool: install: /usr/bin/install -c .libs/libyubikey.lai /usr/local/yubi/lib/libyubikey.la
libtool: install: /usr/bin/install -c .libs/libyubikey.a /usr/local/yubi/lib/libyubikey.a
libtool: install: chmod 644 /usr/local/yubi/lib/libyubikey.a
libtool: install: ranlib /usr/local/yubi/lib/libyubikey.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/sbin" ldconfig -n /usr/local/yubi/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/yubi/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/local/yubi/bin'
  /bin/sh ./libtool   --mode=install /usr/bin/install -c modhex ykparse ykgenerate '/usr/local/yubi/bin'
libtool: install: /usr/bin/install -c .libs/modhex /usr/local/yubi/bin/modhex
libtool: install: /usr/bin/install -c .libs/ykparse /usr/local/yubi/bin/ykparse
libtool: install: /usr/bin/install -c .libs/ykgenerate /usr/local/yubi/bin/ykgenerate
 /usr/bin/mkdir -p '/usr/local/yubi/include'
 /usr/bin/install -c -m 644 yubikey.h '/usr/local/yubi/include'
make[2]: Map '/usr/local/yubi/src/libyubikey-1.10' wordt verlaten
make[1]: Map '/usr/local/yubi/src/libyubikey-1.10' wordt verlaten
Making install in tests
make[1]: Map '/usr/local/yubi/src/libyubikey-1.10/tests' wordt binnengegaan
make[2]: Map '/usr/local/yubi/src/libyubikey-1.10/tests' wordt binnengegaan
make[2]: Er hoeft niets gedaan te worden voor 'install-exec-am'.
make[2]: Er hoeft niets gedaan te worden voor 'install-data-am'.
make[2]: Map '/usr/local/yubi/src/libyubikey-1.10/tests' wordt verlaten
make[1]: Map '/usr/local/yubi/src/libyubikey-1.10/tests' wordt verlaten


But with ykpers-1.14.0.tar.gz I have some problems.

Code:
[root@server01 ykpers-1.14.0]# ./configure --prefix=/usr/local/yubi
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for ar... ar
checking the archiver (ar) interface... ar
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... done
checking for libyubikey... no
configure: error: libyubikey v1.5+ not found, see http://code.google.com/p/yubico-c/
[root@server01 ykpers-1.14.0]# make && make install
make: *** No targets specified and no makefile found. Stop.


Code:
[root@server01 ykpers-1.14.0]# ls
69-yubikey.rules   build-aux     contrib          m4           rfc4634       ykinfo.1        ykpers4mac.mk  ykpers.h       ykpers-nojson.c   ykpers-version.h.in
70-yubikey.rules   ChangeLog     COPYING          Makefile.am  tests         ykinfo.c        ykpers4win.mk  ykpers-json.c  ykpersonalize.1
aclocal.m4         config.log    doc              Makefile.in  ykchalresp.1  ykpbkdf2.c      ykpers-args.c  ykpers-json.h  ykpersonalize.c
AUTHORS            configure     INSTALL          NEWS         ykchalresp.c  ykpbkdf2.h      ykpers-args.h  ykpers_lcl.c   ykpers-version.c
build-and-test.sh  configure.ac  libykpers-1.map  README       ykcore        ykpers-1.pc.in  ykpers.c       ykpers_lcl.h   ykpers-version.h


I'm not sure why this is happening, can anyone put me on the right path?

Thanks :-)


Top
 Profile  
Reply with quote  
PostPosted: Wed Jun 17, 2015 8:37 am 
Offline
Site Admin
Site Admin

Joined: Mon Dec 08, 2014 2:52 pm
Posts: 314
get 1.13 release https://developers.yubico.com/yubico-c/Releases/

are you building from master?


Top
 Profile  
Reply with quote  
PostPosted: Wed Jun 17, 2015 7:03 pm 
Offline

Joined: Tue Jun 16, 2015 4:33 pm
Posts: 7
Hi Tom,

Yes, building from master.
I just Installed 1.13, same problem. :?

Code:
checking for libyubikey... no
configure: error: libyubikey v1.5+ not found, see http://code.google.com/p/yubico-c/
[root@server01 ykpers-1.14.0]# make && make install
make: *** No targets specified and no makefile found. Stop.
[root@server01 ykpers-1.14.0]#


Top
 Profile  
Reply with quote  
PostPosted: Mon Jun 22, 2015 3:11 pm 
Offline
Site Admin
Site Admin

Joined: Mon Dec 08, 2014 2:52 pm
Posts: 314
Can you check with pkg-config if you find libyubikey ?

sometimes it ends up in path that are not checked by pkg-config e.g. /user/local/share


Top
 Profile  
Reply with quote  
PostPosted: Mon Jun 22, 2015 8:30 pm 
Offline

Joined: Tue Jun 16, 2015 4:33 pm
Posts: 7
Tom2 wrote:
Can you check with pkg-config if you find libyubikey ?

sometimes it ends up in path that are not checked by pkg-config e.g. /user/local/share


Hi Tom,

I can't find it in pkg-config
This is what I got

Code:
[root@server01 ~]# locate libyubikey
/usr/local/yubi/lib/libyubikey.a
/usr/local/yubi/lib/libyubikey.la
/usr/local/yubi/lib/libyubikey.so
/usr/local/yubi/lib/libyubikey.so.0
/usr/local/yubi/lib/libyubikey.so.0.1.4
/usr/local/yubi/lib/libyubikey.so.0.1.7
/usr/local/yubi/src/libyubikey-1.10
/usr/local/yubi/src/libyubikey-1.10.tar.gz
/usr/local/yubi/src/libyubikey-1.13
/usr/local/yubi/src/libyubikey-1.13.tar.gz
/usr/local/yubi/src/libyubikey-1.13.tar.gz.sig
/usr/local/yubi/src/libyubikey-1.10/.deps
/usr/local/yubi/src/libyubikey-1.10/.libs
/usr/local/yubi/src/libyubikey-1.10/AUTHORS
/usr/local/yubi/src/libyubikey-1.10/COPYING
/usr/local/yubi/src/libyubikey-1.10/ChangeLog
/usr/local/yubi/src/libyubikey-1.10/INSTALL
/usr/local/yubi/src/libyubikey-1.10/Makefile
/usr/local/yubi/src/libyubikey-1.10/Makefile.am
/usr/local/yubi/src/libyubikey-1.10/Makefile.in
/usr/local/yubi/src/libyubikey-1.10/NEWS
/usr/local/yubi/src/libyubikey-1.10/README
/usr/local/yubi/src/libyubikey-1.10/THANKS
/usr/local/yubi/src/libyubikey-1.10/aclocal.m4
/usr/local/yubi/src/libyubikey-1.10/ar-lib
/usr/local/yubi/src/libyubikey-1.10/config.guess
/usr/local/yubi/src/libyubikey-1.10/config.log
/usr/local/yubi/src/libyubikey-1.10/config.status
/usr/local/yubi/src/libyubikey-1.10/config.sub
/usr/local/yubi/src/libyubikey-1.10/configure
/usr/local/yubi/src/libyubikey-1.10/configure.ac
/usr/local/yubi/src/libyubikey-1.10/depcomp
/usr/local/yubi/src/libyubikey-1.10/install-sh
/usr/local/yubi/src/libyubikey-1.10/libtool
/usr/local/yubi/src/libyubikey-1.10/libyubikey.la
/usr/local/yubi/src/libyubikey-1.10/libyubikey.map
/usr/local/yubi/src/libyubikey-1.10/ltmain.sh
/usr/local/yubi/src/libyubikey-1.10/m4
/usr/local/yubi/src/libyubikey-1.10/missing
/usr/local/yubi/src/libyubikey-1.10/modhex
/usr/local/yubi/src/libyubikey-1.10/modhex.c
/usr/local/yubi/src/libyubikey-1.10/modhex.o
/usr/local/yubi/src/libyubikey-1.10/simple.mk
/usr/local/yubi/src/libyubikey-1.10/tests
/usr/local/yubi/src/libyubikey-1.10/ykaes.c
/usr/local/yubi/src/libyubikey-1.10/ykaes.lo
/usr/local/yubi/src/libyubikey-1.10/ykaes.o
/usr/local/yubi/src/libyubikey-1.10/ykcrc.c
/usr/local/yubi/src/libyubikey-1.10/ykcrc.lo
/usr/local/yubi/src/libyubikey-1.10/ykcrc.o
/usr/local/yubi/src/libyubikey-1.10/ykgenerate
/usr/local/yubi/src/libyubikey-1.10/ykgenerate.c
/usr/local/yubi/src/libyubikey-1.10/ykgenerate.o
/usr/local/yubi/src/libyubikey-1.10/ykhex.c
/usr/local/yubi/src/libyubikey-1.10/ykhex.lo
/usr/local/yubi/src/libyubikey-1.10/ykhex.o
/usr/local/yubi/src/libyubikey-1.10/ykmodhex.c
/usr/local/yubi/src/libyubikey-1.10/ykmodhex.lo
/usr/local/yubi/src/libyubikey-1.10/ykmodhex.o
/usr/local/yubi/src/libyubikey-1.10/ykparse
/usr/local/yubi/src/libyubikey-1.10/ykparse.c
/usr/local/yubi/src/libyubikey-1.10/ykparse.o
/usr/local/yubi/src/libyubikey-1.10/yktoken.c
/usr/local/yubi/src/libyubikey-1.10/yktoken.lo
/usr/local/yubi/src/libyubikey-1.10/yktoken.o
/usr/local/yubi/src/libyubikey-1.10/yubikey.h
/usr/local/yubi/src/libyubikey-1.10/.deps/modhex.Po
/usr/local/yubi/src/libyubikey-1.10/.deps/ykaes.Plo
/usr/local/yubi/src/libyubikey-1.10/.deps/ykcrc.Plo
/usr/local/yubi/src/libyubikey-1.10/.deps/ykgenerate.Po
/usr/local/yubi/src/libyubikey-1.10/.deps/ykhex.Plo
/usr/local/yubi/src/libyubikey-1.10/.deps/ykmodhex.Plo
/usr/local/yubi/src/libyubikey-1.10/.deps/ykparse.Po
/usr/local/yubi/src/libyubikey-1.10/.deps/yktoken.Plo
/usr/local/yubi/src/libyubikey-1.10/.libs/libyubikey.a
/usr/local/yubi/src/libyubikey-1.10/.libs/libyubikey.la
/usr/local/yubi/src/libyubikey-1.10/.libs/libyubikey.lai
/usr/local/yubi/src/libyubikey-1.10/.libs/libyubikey.so
/usr/local/yubi/src/libyubikey-1.10/.libs/libyubikey.so.0
/usr/local/yubi/src/libyubikey-1.10/.libs/libyubikey.so.0.1.4
/usr/local/yubi/src/libyubikey-1.10/.libs/modhex
/usr/local/yubi/src/libyubikey-1.10/.libs/ykaes.o
/usr/local/yubi/src/libyubikey-1.10/.libs/ykcrc.o
/usr/local/yubi/src/libyubikey-1.10/.libs/ykgenerate
/usr/local/yubi/src/libyubikey-1.10/.libs/ykhex.o
/usr/local/yubi/src/libyubikey-1.10/.libs/ykmodhex.o
/usr/local/yubi/src/libyubikey-1.10/.libs/ykparse
/usr/local/yubi/src/libyubikey-1.10/.libs/yktoken.o
/usr/local/yubi/src/libyubikey-1.10/m4/ld-version-script.m4
/usr/local/yubi/src/libyubikey-1.10/m4/libtool.m4
/usr/local/yubi/src/libyubikey-1.10/m4/ltoptions.m4
/usr/local/yubi/src/libyubikey-1.10/m4/ltsugar.m4
/usr/local/yubi/src/libyubikey-1.10/m4/ltversion.m4
/usr/local/yubi/src/libyubikey-1.10/m4/lt~obsolete.m4
/usr/local/yubi/src/libyubikey-1.10/m4/manywarnings.m4
/usr/local/yubi/src/libyubikey-1.10/m4/warnings.m4
/usr/local/yubi/src/libyubikey-1.10/tests/.deps
/usr/local/yubi/src/libyubikey-1.10/tests/Makefile
/usr/local/yubi/src/libyubikey-1.10/tests/Makefile.am
/usr/local/yubi/src/libyubikey-1.10/tests/Makefile.in
/usr/local/yubi/src/libyubikey-1.10/tests/selftest.c
/usr/local/yubi/src/libyubikey-1.10/tests/.deps/selftest.Po
/usr/local/yubi/src/libyubikey-1.13/.deps
/usr/local/yubi/src/libyubikey-1.13/.libs
/usr/local/yubi/src/libyubikey-1.13/AUTHORS
/usr/local/yubi/src/libyubikey-1.13/COPYING
/usr/local/yubi/src/libyubikey-1.13/ChangeLog
/usr/local/yubi/src/libyubikey-1.13/INSTALL
/usr/local/yubi/src/libyubikey-1.13/Makefile
/usr/local/yubi/src/libyubikey-1.13/Makefile.am
/usr/local/yubi/src/libyubikey-1.13/Makefile.in
/usr/local/yubi/src/libyubikey-1.13/NEWS
/usr/local/yubi/src/libyubikey-1.13/README
/usr/local/yubi/src/libyubikey-1.13/THANKS
/usr/local/yubi/src/libyubikey-1.13/aclocal.m4
/usr/local/yubi/src/libyubikey-1.13/build-aux
/usr/local/yubi/src/libyubikey-1.13/config.log
/usr/local/yubi/src/libyubikey-1.13/config.status
/usr/local/yubi/src/libyubikey-1.13/configure
/usr/local/yubi/src/libyubikey-1.13/configure.ac
/usr/local/yubi/src/libyubikey-1.13/libtool
/usr/local/yubi/src/libyubikey-1.13/libyubikey.la
/usr/local/yubi/src/libyubikey-1.13/libyubikey.map
/usr/local/yubi/src/libyubikey-1.13/m4
/usr/local/yubi/src/libyubikey-1.13/modhex
/usr/local/yubi/src/libyubikey-1.13/modhex.1
/usr/local/yubi/src/libyubikey-1.13/modhex.1.txt
/usr/local/yubi/src/libyubikey-1.13/modhex.c
/usr/local/yubi/src/libyubikey-1.13/modhex.o
/usr/local/yubi/src/libyubikey-1.13/simple.mk
/usr/local/yubi/src/libyubikey-1.13/tests
/usr/local/yubi/src/libyubikey-1.13/ykaes.c
/usr/local/yubi/src/libyubikey-1.13/ykaes.lo
/usr/local/yubi/src/libyubikey-1.13/ykaes.o
/usr/local/yubi/src/libyubikey-1.13/ykcrc.c
/usr/local/yubi/src/libyubikey-1.13/ykcrc.lo
/usr/local/yubi/src/libyubikey-1.13/ykcrc.o
/usr/local/yubi/src/libyubikey-1.13/ykgenerate
/usr/local/yubi/src/libyubikey-1.13/ykgenerate.1
/usr/local/yubi/src/libyubikey-1.13/ykgenerate.1.txt
/usr/local/yubi/src/libyubikey-1.13/ykgenerate.c
/usr/local/yubi/src/libyubikey-1.13/ykgenerate.o
/usr/local/yubi/src/libyubikey-1.13/ykhex.c
/usr/local/yubi/src/libyubikey-1.13/ykhex.lo
/usr/local/yubi/src/libyubikey-1.13/ykhex.o
/usr/local/yubi/src/libyubikey-1.13/ykparse
/usr/local/yubi/src/libyubikey-1.13/ykparse.1
/usr/local/yubi/src/libyubikey-1.13/ykparse.1.txt
/usr/local/yubi/src/libyubikey-1.13/ykparse.c
/usr/local/yubi/src/libyubikey-1.13/ykparse.o
/usr/local/yubi/src/libyubikey-1.13/yktoken.c
/usr/local/yubi/src/libyubikey-1.13/yktoken.lo
/usr/local/yubi/src/libyubikey-1.13/yktoken.o
/usr/local/yubi/src/libyubikey-1.13/yubikey.h
/usr/local/yubi/src/libyubikey-1.13/.deps/modhex.Po
/usr/local/yubi/src/libyubikey-1.13/.deps/ykaes.Plo
/usr/local/yubi/src/libyubikey-1.13/.deps/ykcrc.Plo
/usr/local/yubi/src/libyubikey-1.13/.deps/ykgenerate.Po
/usr/local/yubi/src/libyubikey-1.13/.deps/ykhex.Plo
/usr/local/yubi/src/libyubikey-1.13/.deps/ykparse.Po
/usr/local/yubi/src/libyubikey-1.13/.deps/yktoken.Plo
/usr/local/yubi/src/libyubikey-1.13/.libs/libyubikey.a
/usr/local/yubi/src/libyubikey-1.13/.libs/libyubikey.la
/usr/local/yubi/src/libyubikey-1.13/.libs/libyubikey.lai
/usr/local/yubi/src/libyubikey-1.13/.libs/libyubikey.so
/usr/local/yubi/src/libyubikey-1.13/.libs/libyubikey.so.0
/usr/local/yubi/src/libyubikey-1.13/.libs/libyubikey.so.0.1.7
/usr/local/yubi/src/libyubikey-1.13/.libs/modhex
/usr/local/yubi/src/libyubikey-1.13/.libs/ykaes.o
/usr/local/yubi/src/libyubikey-1.13/.libs/ykcrc.o
/usr/local/yubi/src/libyubikey-1.13/.libs/ykgenerate
/usr/local/yubi/src/libyubikey-1.13/.libs/ykhex.o
/usr/local/yubi/src/libyubikey-1.13/.libs/ykparse
/usr/local/yubi/src/libyubikey-1.13/.libs/yktoken.o
/usr/local/yubi/src/libyubikey-1.13/build-aux/ar-lib
/usr/local/yubi/src/libyubikey-1.13/build-aux/compile
/usr/local/yubi/src/libyubikey-1.13/build-aux/config.guess
/usr/local/yubi/src/libyubikey-1.13/build-aux/config.sub
/usr/local/yubi/src/libyubikey-1.13/build-aux/depcomp
/usr/local/yubi/src/libyubikey-1.13/build-aux/install-sh
/usr/local/yubi/src/libyubikey-1.13/build-aux/ltmain.sh
/usr/local/yubi/src/libyubikey-1.13/build-aux/missing
/usr/local/yubi/src/libyubikey-1.13/build-aux/test-driver
/usr/local/yubi/src/libyubikey-1.13/m4/ld-version-script.m4
/usr/local/yubi/src/libyubikey-1.13/m4/libtool.m4
/usr/local/yubi/src/libyubikey-1.13/m4/ltoptions.m4
/usr/local/yubi/src/libyubikey-1.13/m4/ltsugar.m4
/usr/local/yubi/src/libyubikey-1.13/m4/ltversion.m4
/usr/local/yubi/src/libyubikey-1.13/m4/lt~obsolete.m4
/usr/local/yubi/src/libyubikey-1.13/m4/manywarnings.m4
/usr/local/yubi/src/libyubikey-1.13/m4/valgrind-tests.m4
/usr/local/yubi/src/libyubikey-1.13/m4/warnings.m4
/usr/local/yubi/src/libyubikey-1.13/tests/.deps
/usr/local/yubi/src/libyubikey-1.13/tests/Makefile
/usr/local/yubi/src/libyubikey-1.13/tests/Makefile.am
/usr/local/yubi/src/libyubikey-1.13/tests/Makefile.in
/usr/local/yubi/src/libyubikey-1.13/tests/selftest.c
/usr/local/yubi/src/libyubikey-1.13/tests/.deps/selftest.Po
[root@server01 ~]#


That's weird because the libyubikey installation went fine. I just did that again. Tried different versions. All the same result.


Top
 Profile  
Reply with quote  
PostPosted: Mon Jul 06, 2015 5:09 pm 
Offline

Joined: Tue Jun 16, 2015 4:33 pm
Posts: 7
I managed to get it working with the pam module on CentOS 7.1 8-)
https://developers.yubico.com/yubico-pam/


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 22 posts ]  Go to page Previous  1, 2, 3  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 10 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group