Displaying 20 results from an estimated 63 matches for "printenv".
2001 May 04
1
instaling needs printenv on solaris 2.7
To exicute 'make check' correctly there needs to be a printenv in
the path. If you don't have /usr/ucb in your path you should probibly
put it there.
The errors:
<..>
collecting examples for package `base' ...
make[5]: Entering directory
`/apps/sm/SunOS/sun4u/5.7/data/stats/r/1.2.3/.src/R-1.2.3/src/library'
>>> Building/Updating...
2017 Sep 29
2
Call for testing: OpenSSH 7.6
...o my shell being csh, which is pickier about undefined
> variables than the Bourne-style shells. The attached patch fixes the
> issue.
Thanks for figuring this out.
> - 'test -z "$SSH_USER_AUTH"' || fail "SSH_USER_AUTH present"
> + 'test -z `printenv SSH_USER_AUTH`' || fail "SSH_USER_AUTH present"
Unfortunately printenv is not specified by posix (AFAICT it's a
gnuism) so that would likely break many other currently working
platforms.
Would it be possible to do something like:
'test -z `sh -c "echo $SSH_USER_AUTH&qu...
2011 Jan 20
4
No command 'rspec' found
...c'' is
found. Perhaps the PATH is wrong. What is the correct search path?
The following was copied from my terminal. Thank you for taking a look:
~$ sudo gem install rspec --version 2.0.0
~$ gem list --local
*** LOCAL GEMS ***
rspec (2.0.0)
~$ ls /var/lib/gems/1.8/gems
rspec-2.0.0
~$ printenv PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
~$ export PATH=$PATH:/var/lib/gems/1.8/
~$ printenv PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/var/lib/gems/1.8/
~$ rspec -help
No command ''rspec'' found, did you mean:...
2006 Jan 30
3
RMySQL install
....10.0.0
/usr/lib64/mysql3/mysql/libmysqlclient.so.10
/usr/lib64/mysql3/mysql/libmysqlclient.so
**********************
I set the LD_LIBRARY_PATH according to these results, then double checked that
it was set. (I also set it to /usr/lib64/mysql3/mysql as another iteration)
[root at BX mtaylor]# printenv LD_LIBRARY_PATH
/usr/lib64/mysql3/
Just to be sure...
[root at BX mtaylor]# printenv PKG_CPPFLAGS
-I/usr/include/mysql
[root at BX mtaylor]# printenv PKG_LIBS
-L/usr/lib64/mysql
(also tried PKG_LIBS=-L/usr/lib64/mysql3/mysql and PKG_LIBS=-L/usr/lib/mysql)
I recompiled the package each time wit...
2017 Sep 29
3
Call for testing: OpenSSH 7.6
On Fri, 29 Sep 2017, Iain Morgan wrote:
> Actually, according to OpenBSD's printenv(1) man page, it first appeared
> in 2BSD. The man page on OS X claims it was BSD 3.0. However, it doesn't
> appear to be part of any standard.
>
> Your suggestion ran into the same issue as the original test, but
> escaping the evaluation by the user's shell appears to work:...
2008 May 08
2
LaTeX in system()
...st,
I want to run latex from an R script:
system("latex mysource.tex")
or:
texi2dvi("mysource.tex", pdf = TRUE, clean = FALSE, quiet = TRUE,
texi2dvi = latex)
but latex does not seem to be on the search path:
/bin/sh: line 1: latex: command not found.
Although 'printenv PATH' tells me that the usr/texbin is looked for
executables:
/Library/Frameworks/Python.framework/Versions/Current/bin:/sw/bin:/sw/
sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/texbin:/usr/
X11R6/bin
Or am I wrong here?
In any case this is strange because if I call latex from...
2013 Jun 08
4
"Virtual hosts" for ssh
It'd be very cool if ssh supported something like Apache "virtual hosts". This would make it much more viable to host multiple installs of git on the same server, for example.
More details:
On the remote server, ssh already sets some environment variables:
> printenv | grep SSH
SSH_CLIENT=192.168.1.18 50945 22
SSH_TTY=/dev/pts/1
SSH_CONNECTION=192.168.1.18 50945 192.168.1.1 22
What about adding another, say
SSH_SERVER_HOST=host1
Assuming that /etc/hosts
192.168.1.1 host1 host2
then
ssh user at host1
and
ssh user at host2
would lead to a shell on the same host...
2005 Mar 28
17
[Bug 1004] X11 forwarding not working with ssh3.9p1 (Error: Can't open display)
....xx:10.0
The rpms installed are:
openssh-clients-3.9p1-1
openssh-3.9p1-1
openssh-server-3.9p1-1
openssh-askpass-3.9p1-0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Initially, there was no DISPALY variable defined. So, I did
# xhost 64.xx.xx.xx
64.xx.xx.xx being added to access control list
# ssh 64.xx.xx.xx
# printenv DISPLAY
#
# export DISPLAY=64.xx.xx.xx:10.0
# printenv DISPLAY
# DISPLAY=64.xx.xx.xx:10.0
# netscape
#error: can't open display:64.xx.xx.xx:10.0
Here is the content of printenv before DISPLAY was added, ssh_config &
sshd_config:
[root at INP-LOG-01 root]# printenv
PWD=/root
HOSTNAME=INP-...
2017 May 11
3
Basic authentication - maybe off topoc
Hi - I am using CentOS 7.3 and trying to receive basic authentication.
I run a command liked: curl -X POST -u jerry:pw
http://192.168.1.8/inbound.cgi
When I use printenv in the cgi I do not see the user and password anywhere.
Isn't it supposed to be there in an environment variable like REMOTE_USER ?
How do I receive the basic authentication ?
Thanks,
Jerry
2006 Oct 31
0
6301697 several programs in /usr/ucb are not lint clean
...al 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
update: usr/src/ucbcmd/sum/sum.c
update: usr/src/ucbcmd/test/test.c
update: usr/src/ucbcmd/users/users.c
update: usr/src/ucbcmd/whoami/whoami.c
2006 Oct 30
1
Which executable is associated with R CMD INSTALL?
I'm still having trouble installing the lme4 package on RHEL 3. I've
asked this list and it seems my problem is not universal. Brian
Ripley indicated that the problem was with recognising the Matrix
package, even though I've taken care to get the most recent versions
of Matrix and lme4.
It seems to me that the problem arises because the computer has a site
installation of R-2.3.1
2006 Oct 30
1
Which executable is associated with R CMD INSTALL?
I'm still having trouble installing the lme4 package on RHEL 3. I've
asked this list and it seems my problem is not universal. Brian
Ripley indicated that the problem was with recognising the Matrix
package, even though I've taken care to get the most recent versions
of Matrix and lme4.
It seems to me that the problem arises because the computer has a site
installation of R-2.3.1
2006 Oct 31
1
missing SIGWINCH?
...tem(com="xterm -e
less /a/corresponding/file") to view files when I click on an x11()
plot. I can successfully resize the xterm on Linux (i486) and Macos
10.4 (G4 and G5), but NOT Macos 10.4 (Intel). For example, on a new
mac pro:
# in a terminal,xterm,iterm,etc:
xterm -e "printenv | less"
# the resulting xterm resizes fine - eg text wraps at resized window
boundaries. so i don't think the problem is in xterm (?)
# BUT, in R:
system(com="xterm -e 'printenv | less'")
# the resulting xterm DOES NOT resize fine - eg text does not wrap at
resized...
2017 Jan 20
1
[PATCH] p2v: log also environment on conversion server
...b34 100644
--- a/p2v/conversion.c
+++ b/p2v/conversion.c
@@ -1061,6 +1061,11 @@ generate_wrapper_script (struct config *config, const char *remote_dir,
fprintf (fp, "\n");
fprintf (fp,
+ "# Log the environment where virt-v2v will run.\n");
+ fprintf (fp, "printenv > environment\n");
+ fprintf (fp, "\n");
+
+ fprintf (fp,
"# Run virt-v2v. Send stdout back to virt-p2v. Send stdout\n"
"# and stderr (debugging info) to the log file.\n");
fprintf (fp, "v2v 2>> $log | tee -a $log\n&quo...
2006 Feb 15
0
setup program doesn't find extracted dll
...ini
i also found some files timed "now" under:
drive_c/windows/temp/{0EE1A336-3E82-4BBD-89FB-50C48EEEDAB6}
May this be a hint to a misconfiguration or a missed config?
here are my environment:
########################################################
alexander@kubuntu:~/.wine/dosdevices$
printenv
SSH_AGENT_PID=7670
TERM=xterm
SHELL=/bin/bash
GTK_RC_FILES=/etc/gtk/gtkrc:/home/alexander/.gtkrc-1.2-gnome2
WINDOWID=23068768
OLDPWD=/home/alexander/.wine
USER=alexander
LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz...
2017 Feb 09
2
R CMD check error
...ny of the R scripts. That means
it is inherited by any subprocess. For example:
tmt1495% R --vanilla --no-environ
R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
> system("printenv | grep R_LIBS")
R_LIBS_SITE=
R_LIBS_USER=/people/biostat2/therneau/Rlib
So, per the manual R CMD check inherits the path. The question is why does it ignore it?
Terry T.
On 02/09/2017 02:54 AM, Martyn Plummer wrote:
> On Wed, 2017-02-08 at 15:51 -0600, Therneau, Terry M., Ph.D. wrote:...
2006 Feb 02
3
readline detection problems
...;
./configure --x-includes="/$HOME/vol/readline"
./configure --x-libraries="-L/$HOME/vol/readline"
./configure --x-libraries="/$HOME/vol/readline"
trying out the different path variants which I previously included in the
$PATH variable. Nothing helps yet. According to printenv there is currently
no kind of $LIBRARY or sth. like that defined, but maybe the path should
rather be included in such an env. variable, I didn't find any hint in the
documentation.
Has someone an idea how I should link my local readline correctly, so that
the library is found not only during...
2006 Feb 02
3
readline detection problems
...;
./configure --x-includes="/$HOME/vol/readline"
./configure --x-libraries="-L/$HOME/vol/readline"
./configure --x-libraries="/$HOME/vol/readline"
trying out the different path variants which I previously included in the
$PATH variable. Nothing helps yet. According to printenv there is currently
no kind of $LIBRARY or sth. like that defined, but maybe the path should
rather be included in such an env. variable, I didn't find any hint in the
documentation.
Has someone an idea how I should link my local readline correctly, so that
the library is found not only during...
2015 Feb 13
2
[PATCH] ./run: Use 'prepend' function to build paths.
..."/foo"
would set PYTHONPATH to "/foo" or "/foo:<previous-contents-of-PYTHONPATH>"
Tested by:
(1) Building and testing libguestfs twice: first without libguestfs
installed as a system library, and then with it installed.
(2) Examining the output of './run printenv' by hand and comparing
environment variables to the expected values.
---
run.in | 103 +++++++++++++++++++++++++++++++++++------------------------------
1 file changed, 55 insertions(+), 48 deletions(-)
diff --git a/run.in b/run.in
index bf7ea1b..46b47c3 100755
--- a/run.in
+++ b/run.in
@@ -4...
2005 Aug 01
4
valgrind complains about regex.c (PR#8043)
...cording to the man page.
This seems to be a valid regular expression. But whether
I know what I'm doing or no, it still shouldn't be doing
what valgrind seems to be saying it's doing. (IMHO)
---------- start of script ----------
Script started on Mon 01 Aug 2005 02:09:00 PM PDT
linux$ printenv VALGRIND_OPTS
--tool=3Dmemcheck
linux$ cat bar.R
foo <- 1
bar <- 2:3
baz <- 4:6
qux <- matrix(7:10, 2)
ls()
rm(list =3D objects(pattern =3D "^[a-pr-z]"))
ls()
linux$ R --version
R 2.1.1 (2005-06-20).
Copyright (C) 2005 R Development Core Team
R is free software and...