Displaying 20 results from an estimated 51 matches for "catman".
Did you mean:
cartman
2001 Jun 08
1
configure --with-catman is supposed to be --with-mantype
There's a typo in configure.in that's specifying --with-catman as an
option but the help message says --with-mantype. Here's a patch.
- Dave Dykstra
*** configure.in.old Fri Jun 8 13:23:13 2001
--- configure.in Fri Jun 8 13:17:47 2001
***************
*** 1422,1428 ****
AC_SUBST(INSTALL_SSH_PRNG_CMDS)
! AC_ARG_WITH(catman,
[ --with-mantype...
2011 Jan 31
1
DO NOT REPLY [Bug 7941] New: Formatting bug in rsync man page? (man -k, whatis, catman -w)
https://bugzilla.samba.org/show_bug.cgi?id=7941
Summary: Formatting bug in rsync man page? (man -k, whatis,
catman -w)
Product: rsync
Version: 3.0.7
Platform: Sparc
OS/Version: Solaris
Status: NEW
Severity: minor
Priority: P3
Component: core
AssignedTo: wayned at samba.org
ReportedBy: johnggilmartin at gmail.com...
2011 Jan 13
0
Formatting bug in rsync man page? (man -k, whatis, catman -w)
...'m new to this mailing list as I just came across a small
problem after installing the rsync package on one of our Solaris 10
machines.
I installed rsync package SMCrsync v3.0.7 SPARC and although command
man rsync worked, man -k rsync and whatis rsync did not despite the
fact that I had run a catman -w to rebuild the windex databases. After
reading the catman man page, I suspected it might be due to the
formatting of the line following .SH "NAME" in the man page file
/usr/local/share/man/man1/rsync.1. I changed it from?
rsync \(em a fast, versatile, remote (and local) file-copying t...
2001 Feb 07
2
Patch for unformatted manpages
...ts.o auth-options.o auth-krb4.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o dh.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o groupaccess.o
-TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1
-CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh-keyscan.0 ssh.0 sshd.0 sftp-server.0 sftp.0
-MANPAGES = @MANTYPE@
+MANPAGES = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1
CONFIGFILES=sshd_config ssh_config primes
@@ -67,6 +64,8 @@
FIXPATHSCMD = $(...
2000 Nov 09
2
SCO Openserver Patch
...ned. I have
tested this on Openserver 5.0.5 and 5.0.6. Here is the universal patch fo
configure to allow it to work with openserver.
--- configure Sun Nov 5 21:25:18 2000
+++ /configure Thu Nov 9 14:18:21 2000
@@ -1685,7 +1685,7 @@
LDFLAGS="$LDFLAGS -L/usr/local/lib"
MANTYPE='$(CATMAN)'
mansubdir=cat
- LIBS="$LIBS -lgen -lsocket -los -lprot -lx"
+ LIBS="$LIBS -lgen -lsocket -los -lprot -lx -ltinfo -lm"
no_dev_ptmx=1
RANLIB=true
cat >> confdefs.h <<\EOF
@@ -1703,11 +1703,12 @@
LDFLAGS="$LDFLAGS -L/usr/local/lib"
MANTYPE=...
2000 Mar 15
3
1.2.3pre2 works great on Solaris 2.7 except man
Right out of the box (after I made Damien's LDFLAGS fix in configure) using
gcc-2.95.2. The only problem I have now is the man pages. I still can't
read them using Solaris nroff, and when I tried to build with
--with-catman=cat, I got the following during a make install:
/rtr/bin/install -c -m 644 ssh.[01].out /usr/local/man/cat1/ssh.1
Try `/rtr/bin/install --help' for more information.
2016 Jan 27
2
CentOS 7, man
This is... odd.
>From my workstation, where I'm directly logged in, if I ssh to any CentOS
7 box, as myself, and try to run man, it fails.
Example 1:
man dd
man:
cannot write to /var/cache/man/cat1/dd.1.gz in catman mode
dd.
Example 2:
man dd
man: can't chmod (null): Bad address
man: can't unlink (null): Bad address
dd.
In all cases, if I sudo -s to root, I have no trouble reading the manpage.
In all cases I've tried, selinux is in permissive mode.
>From one of these boxes:
ls -laF /var/cach...
2000 Nov 08
4
man pages won't work
Hi,
I am sorry about this stupid question but after compilation of openssh-2.3.0p1 the manpages were installed but a man ssh gives only unstructured response without underlined lines etc. A nroff -man sshd.8 gives the same output but the contents of the file shows a nroff-format.
Any ideas?
My system is a HP-UX 11.000 with the pam-patch.
regards
Stephan
--
LDS Brandenburg
Dr. Stephan Hendl
2000 May 22
3
scp not found with solaris 8/2.1.0p2
I've just upgraded to 2.1.0p2 on my solaris 8 boxes (now it
survives a little longer, thanks!). But, I'm seeing "scp not found"
where before it was fine.
configure --prefix=/opt/local --with-random-/dev/random (the entropy
generator is still broken), and in the past I had no problems
with scp, but AFAIK something's broken in 2.1.0.
Is anyone else seeing anything similar?
2001 Nov 11
1
[PATCH] do not invoke sub-make unless the 'cd directory' succeeds
...onfig.log
rm -f *.out core
rm -f Makefile config.h config.status ssh_prng_cmds *~
- (cd openbsd-compat; $(MAKE) distclean)
- (cd scard; $(MAKE) distclean)
+ (cd openbsd-compat && $(MAKE) distclean)
+ (cd scard && $(MAKE) distclean)
mrproper: distclean
@@ -174,13 +174,13 @@ catman-do:
distprep: catman-do
autoreconf
- (cd scard ; $(MAKE) -f Makefile.in distprep)
+ (cd scard && $(MAKE) -f Makefile.in distprep)
install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
scard-insta...
2002 May 09
4
make distprep broken?
Hello All,
Doing a make distprep doesn't seem to work anymore:
$ make -f Makefile.in distprep
make: @SH@: Command not found
make: *** [catman-do] Error 127
I've seen this on AIX & Redhat (gnu make) and Solaris (native make). I
suspect this occurs on most platforms. Is this still the recommended way
of autoreconf'ing CVS releases for building?
-Daz.
2000 Jun 13
2
Openssh-2.1.1p1 and solaris 7/8
...s okay.
Logged out and logged in again, and got the same problem.
I upgraded from 2.1.0p3 to fix the utmpx problem; that version did not
exhibit this problem. So far the utmpx problem hasn't recurred though :-)
I configured both systems using:
./configure --with-egd-pool=/tmp/entropy --with-catman=man
--with-tcp-wrappers --with-default-path=/usr/bin:/usr/local/bin
Using the '--disable-lastlog' got around the problem. Something doesn't seem
right though.
John.
--------------------------------------------------------------------------
John Horne, University of Plym...
2001 Feb 19
1
scp doesn't work with sshd 2.5.1p1 on Solaris 2.6
...Received signal #18, SIGCLD [caught]
627: siginfo: SIGCLD CLD_KILLED pid=629 status=0x000B
627: wait() = 629 [0x000B]
627: sigaction(SIGCLD, 0xEFFFEE98, 0xEFFFEF18) = 0
I configured with:
./configure \
--with-pam \
--with-catman=cat \
--with-egd-pool=/var/adm/entropy \
--with-ssl-dir=$OPENSSL \
--with-pid-dir=/var/adm --with-rsh=/usr/bin/rsh \
--with-xauth=/usr/openwin/bin/xauth \
--with-lastlog=/var/adm/lastlog \
--with-default-path=/usr/bin:/usr/sbin:/usr/openwin/bin:/usr/sepp/bin \
--sysconfdir=/etc...
2001 Apr 04
3
Problem with latest OpenSSH - 2.5.2p2
..."-n32 -mips4 -O3 -r10000
-TARG:processor=r10000:platform=ip28 -I/usr/local/include"
--with-ldflags="-n32 -mips4 -L/usr/local/lib -Wl,-s,-x
-Wl,-rpath,/usr/local/lib" --prefix=/usr/local --with-tcp-wrappers
--with-prngd-socket=/var/adm/entropy --with-ssl-dir=/usr/local/lib
--with-catman=man --mandir=/usr/share/man/local
Has anyone seen anything like this before? I did make two changes from
previous compilations/installs. I've switched from using EGD for random
numbers to PRNGD and I've added the TCP-Wrappers library. The switch to PRNGD
doesn't seem to be a pr...
2000 Jul 09
0
OpenSSH 2.1.1p2: /etc/nologin handling and related stuff
...[ --with-nologin-allow=FILE File with users to allow during nologin (default none)],
+ [
+ if test "x$withval" != "xno" ; then
+ NOLOGIN_ALLOW_FILE="$withval";
+ AC_DEFINE_UNQUOTED(NOLOGIN_ALLOW_FILE, "$NOLOGIN_ALLOW_FILE")
+ fi
+ ]
+)
+
AC_ARG_WITH(catman,
[ --with-catman=man|cat Install preformatted manpages[no]],
diff -ruw -x configure ../dist/session.c ./session.c
--- ../dist/session.c Sat Jul 1 05:24:21 2000
+++ ./session.c Sun Jul 9 19:22:23 2000
@@ -816,17 +816,34 @@
if (options.use_login && command != NULL)
options.use_log...
2016 Jan 27
0
CentOS 7, man
...7/2016 10:31 AM, m.roth at 5-cent.us
wrote:
> This is... odd.
>
> From my workstation, where I'm directly logged in, if I ssh to any CentOS
> 7 box, as myself, and try to run man, it fails.
> Example 1:
> man dd
> man:
> cannot write to /var/cache/man/cat1/dd.1.gz in catman mode
> dd.
>
> Example 2:
> man dd
> man: can't chmod (null): Bad address
> man: can't unlink (null): Bad address
> dd.
>
> In all cases, if I sudo -s to root, I have no trouble reading the manpage.
> In all cases I've tried, selinux is in permissive mode...
2000 Mar 16
1
TEST RELEASE: 1.2.3pre4
This will be the last test release before 1.2.3.
It consists of only a few lines difference to 1.2.3pre3, but please
test it anyway.
Changelog:
20000316
- Fixed configure not passing LDFLAGS to Solaris. Report from David G.
Hesprich <dghespri at sprintparanet.com>
- Propogate LD through to Makefile
- Doc cleanups
- Added blurb about "scp: command not found" errors to
2000 Jul 10
1
OpenSSH port to ReliantUNIX
...igure
--- openssh-2.1.1p2.orig/configure Sat Jul 1 11:43:09 2000
+++ openssh-2.1.1p2/configure Mon Jul 10 15:16:05 2000
@@ -1442,6 +1442,13 @@
done
;;
+*-sni-sysv*)
+ CFLAGS="$CFLAGS -I/usr/local/include"
+ LDFLAGS="$LDFLAGS -L/usr/local/lib -L/usr/ucblib"
+ MANTYPE='$(CATMAN)'
+ mansubdir=cat
+ LIBS="$LIBS -lgen -lnsl -lsocket -lucb"
+ ;;
*-*-sysv*)
CFLAGS="$CFLAGS -I/usr/local/include"
LDFLAGS="$LDFLAGS -L/usr/local/lib"
diff -ru openssh-2.1.1p2.orig/packet.c openssh-2.1.1p2/packet.c
--- openssh-2.1.1p2.orig/packet.c Thu Jun 22 1...
2002 May 28
1
Build problem on IRIX 6.5.16m
I had a problem building OpenSSH 3.2.3p1 on IRIX 6.5.16m.
The configure command I used was:
env CC=cc ./configure --prefix=/usr --sysconfdir=/etc/ssh
--libexecdir=/usr/lib \
--mandir=/usr/share/man/u_man --with-catman=man --without-rsh \
--with-xauth=/usr/bin/X11/xauth --with-ssl-
dir=../openssl-0.9.6d \
--with-prngd-socket=/dev/egd-pool
The errors during make are:
(cd openbsd-compat && make)
cc -g -I. -I. -I../openssl-0.9.6d/include -I/usr/local/include
-DSSHDI...
2000 Jun 21
0
IRIX patches
...e
latest release.)
--
Mike Stone
-------------- next part --------------
*** openssh-2.1.1p1.orig/configure.in Thu Jun 08 21:58:35 EDT 2000
--- openssh-2.1.1p1/configure.in Wed Jun 21 14:16:26 EDT 2000
***************
*** 89,94 ****
--- 89,97 ----
LDFLAGS="$LDFLAGS"
MANTYPE='$(CATMAN)'
AC_MSG_WARN([*** Irix 6.x is not tested, please report you experiences *** ])
+ AC_DEFINE(WITH_ARRAY)
+ AC_DEFINE(WITH_IRIX_PROJECT)
+ AC_DEFINE(WITH_IRIX_AUDIT)
no_libsocket=1
no_libnsl=1
;;
*** openssh-2.1.1p1.orig/config.h.in Fri Jun 09 06:56:25 EDT 2000
--- openssh-2.1.1p1/...