Displaying 20 results from an estimated 266 matches for "ucb".
Did you mean:
cb
2004 Jul 19
1
My fox build segfaults on Solaris 9 gcc.
...ith GCC, so will the
> libraries interoperate? There are dire warnings about this in the
> changes docs for GCC, and I don''t know enough to test for the
> ramificiations in any particular case.
>
OK, here is what I did
#!/bin/sh -vx
# vim:sw=2
for ld in /usr/ccs/bin/ld /usr/ucb/ld /usr/local/bin/ld
do
LD=$ld
export LD
for cc in gcc /progs/SUNWspro/bin/cc /usr/ucb/cc
do
CC=$cc
export CC
for cxx in g++ CC
do
CXX=$cxx
export CXX
for make in gmake make
do
MAKE=$make
export MAKE
$MAKE distcl...
2010 Dec 02
1
latex tables for 3+ dimensional tables/arrays
...looking for an R method to produce latex versions of tables for
table/array objects of 3 or more dimensions,
which, of necessity is flattened to a 2D display, for example with
ftable(), or vcd::structable, as shown below.
I'd be happy to settle for a flexible solution for the 3D case.
> UCB <- aperm(UCBAdmissions, c(2, 1, 3))
> ftable(UCB)
Dept A B C D E F
Gender Admit
Male Admitted 512 353 120 138 53 22
Rejected 313 207 205 279 138 351
Female Admitted 89 17 202 131 94 24
Rejected 19 8 391 244 299 317...
2010 Dec 27
1
aperm() should retain class of input object
...equires some package writers to
implement both .array and .table
methods for the same functionality, usually one in terms of the other.
Some examples of unexpected, and initially perplexing results (when only
methods for one class are implemented)
are shown below.
> library(vcd)
> pairs(UCBAdmissions, shade=TRUE)
> UCB <- aperm(UCBAdmissions, c(2, 1, 3))
>
> # UCB is now an array, not a table
> pairs(UCB, shade=TRUE)
There were 50 or more warnings (use warnings() to see the first 50)
>
> # fix it, to get pairs.table
> class(UCB) <- "table"...
1999 May 26
3
Controlling unix print queues from PC
...messages in the logs.
The unix print queue is set up OK and reacts to local lpc, lpq, lpr and
lprm commands just fine.
This is what I have in smb.conf:
[blackhole]
comment = Dummy printer for testing
path = /var/spool/samba
print ok = Yes
print command = /usr/ucb/lprm -P%p %s
lpq command = /usr/ucb/lpq -P%p
lprm command = /usr/ucb/lprm -P%p %j
queuepause command = /usr/etc/lpc stop %p
queueresume command = /usr/etc/lpc start %p
printer name = blackhole
Any suggestions what I'm doing wrong?
--
Mike Clarke
S...
2014 Jan 10
0
proposal: stats::as.matrix.ftable method
...mes = paste(collapse=sep, names(vars))
)
}
structure(
unclass(x),
dimnames=c(makeDimNames(attr(x, "row.vars")),
makeDimNames(attr(x, "col.vars"))),
row.vars=NULL,
col.vars=NULL)
}
Some test cases:
> UCB <- UCBAdmissions
> as.matrix(ftable(Dept ~ Admit + Gender, data=UCB))
Dept
Admit_Gender A B C D E F
Admitted_Male 512 353 120 138 53 22
Admitted_Female 89 17 202 131 94 24
Rejected_Male 313 207 205 279 138 351
Rejected_Female 19 8 3...
2006 Oct 31
0
6301697 several programs in /usr/ucb are not lint clean
Author: gbrunett
Repository: /hg/zfs-crypto/gate
Revision: 10057df46ac4d52040af9e3df97e79a30d7e04ec
Log message:
6301697 several programs in /usr/ucb are not lint clean
Files:
update: usr/src/Makefile.lint
update: usr/src/ucbcmd/basename/basename.c
update: usr/src/ucbcmd/biff/biff.c
update: usr/src/ucbcmd/echo/echo.c
update: usr/src/ucbcmd/groups/groups.c
update: usr/src/ucbcmd/mkstr/mkstr.c
update: usr/src/ucbcmd/printenv/printenv.c
up...
2004 May 05
0
Samba 3 use of /etc/passwd /etc/shadow
...ted fix to allow win 2000 to participate
;nt smb support = no
;nt pipe support = no
[pcserve]
path = /home/pcserve
read only = no
[homes]
writable = true
browseable = no
[ljp]
printing = bsd
path = /var/spool/samba/ljp
writable = no
printable = yes
print command = /usr/ucb/lpr -P %p %s
lprm command = /usr/ucb/lprm -P %p %j
lpq command = /usr/ucb/lpq -P %p
[rmf587]
printing = bsd
path = /var/spool/samba/rmf587
writable = no
printable = yes
print command = /usr/ucb/lpr -P %p %s
lprm command = /usr/ucb/lprm -P %p %j
lpq command = /usr/ucb/lpq...
2015 Mar 11
4
Call for testing: OpenSSH 6.8
On Tue, 10 Mar 2015, Damien Miller wrote:
> On Fri, 6 Mar 2015, Damien Miller wrote:
>
>> On Wed, 4 Mar 2015, mikep at noc.utoronto.ca wrote:
>>
>>> Re-testing 'openssh-SNAP-20150305' on Solaris 10, with 'gcc':
>>>
>>> Configure, 'make' complete; 'make tests' fails at:
>>>
>>> postcondition check
2005 Oct 25
2
SOLARIS 9 INSTALL PROBLEMS
...= sun4
/usr/bin/arch -k = sun4u
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/bin
PATH: /usr/sbin
PATH: /usr/openwin/bin
PATH: /usr/dt/bin
PATH: /usr/ucb
PATH: /usr/local/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1687: checking for -fPIE
configure:1697: cc -pie -fPIE -o conftest conftest.c 1>&5
/usr/ucb/cc: language optional software package not installed
configure:1700: $? = 1
configure:1709: result:
configure:...
2009 Sep 09
1
Stats help with calculating between and within subject variance and confidence intervals
...etween)/grandmean * 100 # Between Machine CV%
> withinCV<-sqrt(within)/grandmean * 100 # Within Machine CV%
> totalCV<-sqrt(total)/grandmean * 100 # Total CV%
> #within confidence intervals (Chi Squared Method)
> withinLCB<-within/qf(1-a,8,Inf) # Within LCB
> withinUCB<-within/qf(a,8,Inf) # Within UCB
> #Between Confidence Intervals (Modified Large Sample Method)
> n1<-dfMachine
> n2<-dfWithin
> G1<-1-(1/qf(1-a,n1,Inf)) # According to Burdick and Graybill this
should be a
> G2<-1-(1/qf(1-a,n2,Inf))
> H1<-(1/qf(a,n1...
2002 Feb 27
2
PATCH: nroff detection wrong, by default uses mantype=cat
...Security. -- Robert Jordan: A Crown of Swords
-------------- next part --------------
--- configure.ac~ Wed Feb 27 08:12:35 2002
+++ configure.ac Wed Feb 27 18:43:45 2002
@@ -1798,7 +1798,7 @@
]
)
if test -z "$MANTYPE"; then
- AC_PATH_PROGS(NROFF, nroff awf, /bin/false, /usr/bin:/usr/ucb)
+ AC_PATH_PROGS(NROFF, nroff awf, /bin/false, /usr/bin /usr/ucb)
if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
MANTYPE=doc
elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
2000 Jan 27
2
oops
I just sent a bug report about "mailx" being the default mailer, before
I looked at bug.report() carefully and saw that it checked
"/usr/ucb/mail", and "Mail" as well as "mailx". I guess I had had the
problem with this in a previous version.
Would it be clearer to have .Options$mailer be a vector or list of
alternate mailers that were checked in turn, rather than having them
hard-wired into bug.report()?
(...
2003 Mar 08
1
Advanced printers shares
...th = /var/spool/samba
guest ok = Yes
printable = No
browseable = No
include = /opt/samba/lib/smbprint1.conf
smbprint1.conf
[pgmp01004]
comment = p-egmp01-37.test.COM - Lexmark Optra S1855
path = /var/spool/samba
printable = Yes
print command = /usr/ucb/lpr -P %p %s; /bin/rm %s
printer driver = Lexmark Optra S1855
lpq command = lpstat %p
lprm command = /usr/ucb/lprm %j
[pgmp01007]
comment = p-egmp01-22.test.COM - Lexmark Optra S1650
path = /var/spool/samba
printable = Yes
print command = /usr/ucb/l...
2009 Oct 18
0
Sunday 18th 12N-3P PDST Global Asterisk Mtg - BerkeleyTIP - for forwarding
Join the global Free SW HW & Culture meeting online via VOIP & IRC.
Sunday Oct 18, 12N-3P Pacific Daylight Savings Time (UTC-8),
3P-6P Eastern, (7P-10P UTC?)
http://sites.google.com/site/berkeleytip/remote-attendance
Or, come to the UCBerkeley Free Speech Cafe.
Discuss the videos, work on your own projects & share them with others,
& help work on the group projects.
Get a VOIP headset, & join the #berkeleytip channel on irc.freenode.net
We'll help you install VOIP client SW, & join the global meeting.
Join w...
2002 Apr 08
0
portable tests for symlinks (was patch for autoconf manual)
...his code, in
<http://cvs.samba.org/cgi-bin/cvsweb/rsync/testsuite/rsync.fns?rev=1.49&content-type=text/x-cvsweb-markup>
# Determine what shell command will appropriately test for links.
ln -s foo "$scratchdir/testlink"
for cmd in test /bin/test /usr/bin/test /usr/ucb/bin/test /usr/ucb/test
do
for switch in -h -L
do
if $cmd $switch "$scratchdir/testlink" 2>/dev/null
then
# how nice
TEST_SYMLINK_CMD="$cmd $switch"
# i wonder if break 2 is portable?
break 2
fi...
2004 Jan 09
0
Upgrading Samba: minimum requirements for Samba wrtSolaris and gcc
...>>
>>an on Solaris 8, the 'configure' step completes
>>successfully, but 'make' seems to hang early:
>> ...
>>creating /home/troy/src/samba/samba-3.0.1/source/include/proto.h
>>[it hangs here for hours if I let it]
>This problem occurs if /usr/ucb is in your path ahead of /usr/bin or
>/bin. I tracked this behavior into mkproto.sh: the problem is with
the
>"tr" program in /usr/ucb. mkproto.sh uses "tr" in a pipeline like
this:
> ... | tr ' ' '\n' | ...
>/usr/ucb/tr substitutes spaces with &qu...
2000 Mar 07
2
[Fwd: va_list problems on Solaris]
...onfigure
>
> It's a Solaris box, which means that cc=gcc (Solaris doesn't ship with a
> compilier, and since gcc is free and works with just about everything...)
>
> However, I screwed up and downgraded gcc from 2.95.1 to 2.8.1, which left
> version 2.95.1 of gcc in /usr/ucb/cc, and version 2.8.1 in
> /usr/local/bin/gcc. Removing the errant binary from /usr/ucb allowed the
> compile to proceed to completion.
>
> I haven't testing the results though, I gotta bolt out the door for a
> meeting, but perhaps this anecdote might be helpful for others that...
2003 Dec 12
3
configure error with --enable-dmalloc
Hi list,
I'm trying to compile samba 3.0.1 rc1 with --enable-dmalloc switch because I have been asked to provide more information on a winbindd panic on a Solaris server. However the configure fails with the error shown below,
config.status: creating include/config.h
Note: The dmalloc debug library will be included. To turn it on use
./configure: command substitution: line 3: syntax error:
2006 Feb 16
2
Authentication failing - Ant Internet Suite (Risc-OS)
...of the packet trace, possible
it is responding to an earlier packet, but thought I'd ask before pursuing
this further in case some one leaps up and says "oh that'll be...".
The client software has an option to disabled "queued commands" buried deep
within it (append /ucb to user details), I suggested trying this if possible,
will report back if it works. Also mentioned in a Google search.
I'm curious as to what is right here, but the "/ucb" is presumably the
practical answer if it works.
Simon
2004 Jan 08
1
Upgrading Samba: minimum requirements for Samba wrt Solaris and gcc
Greetings list!
I have a older Samba (v 2.0.7) server compiled with
an older gcc (v 2.8.1) running on an older Solaris
(v 2.5.1).
I would like to upgrade to a newer version of Samba.
I have had trouble compiling Samba version 3.0.1
with gcc version 2.8.1 on Solaris 2.5.1:
$ ./configure
checking for gcc... gcc
checking for C compiler default output... cat: cannot open conftest.c
configure: