search for: ftp_proxy

Displaying 20 results from an estimated 46 matches for "ftp_proxy".

Did you mean: lmtp_proxy
2007 Oct 16
3
R-2.6.0 - packages installation through a proxy - not working
...ngs http_proxy="SERVER:3128" With 2.6.0, however, R refuses to connect to the CRAN mirror. I have added to the new Renviron even more lines (useless, probably). Now the Proxy settings look like this: ## Proxy settings http_proxy="SERVER:3128" https_proxy="SERVER:3128" ftp_proxy="SERVER:3128" I also tried - with no luck - to use the following command at the start of the R session: Sys.setenv(http_proxy="SERVER:3128") I get the following error message: > install.packages("Rcmdr", dependencies=TRUE) --- Please select a CRAN mirror for use i...
2010 Feb 24
1
Sketchup 7 and proxy settings.
...ings under: HKEY_LOCAL_MACHINE\ SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Connections\ WinHttpSettings : Proxy Server(s) : proxy.A.B.C:8080 Bypass List : ###### I start sketchup in a terminal using; > env http_proxy="proxy.A.B.C:8080" env ftp_proxy="proxy.A.B.C:8080" env WINEPREFIX="/home/fred/.wine" wine "C:\Program Files\Google\Google SketchUp 7\SketchUp.exe" which yields the following errors in the xterm: fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.VC80.MFCLOC&quot...
2002 Jun 19
0
FW: [R] Problems with url/download and http_proxy (PR#1689)
...e > requirement of the port. The paragraph on proxies could be changed from > > > Proxies can be specified via environment variables. Setting > `"no_proxy"' stops any proxy being tried. Otherwise the setting of > `"http_proxy"' or `"ftp_proxy"' (or failing that, the all > upper-case version) is consulted and if non-empty used as a proxy > site. For FTP transfers, the username and password on the proxy > can be specified by `"ftp_proxy_user"' and `"ftp_proxy_password"'. > &...
2002 Jun 19
0
[R] Problems with url/download and http_proxy
...d > be changed from > > > > > > > > > Proxies can be specified via environment variables. Setting > > > `"no_proxy"' stops any proxy being tried. Otherwise > the setting of > > > `"http_proxy"' or `"ftp_proxy"' (or failing that, the all > > > upper-case version) is consulted and if non-empty > used as a proxy > > > site. For FTP transfers, the username and password > on the proxy > > > can be specified by `"ftp_proxy_user"' and &...
2005 Jan 07
1
winetools + proxy
Hi! Winetools hangs trying to download arial32.exe because we have a proxy here. Is there a way (e.g. environment variable) to tell winetools to use a proxy? Thanks, Sabine Sagner-Weigl
2016 Nov 07
2
Proxy server settings
Hello All, I'm sure this must be a fairly quick and easy configuration, but I have not been able to figure it out yet. How do you configure the proxy settings in the OS itself (not in a browser or other application) so that anytime the server tries to get out to the internet, that it can direct its traffic to go through a proxy server? I tried putting the proxy settings in .bash_profile
2019 Jan 07
0
how to set proxy systemwide (wget and docker)
...$CFGFILE ] && . $CFGFILE done export http_proxy="http://${PROXYHOST}:${PROXYPORT}" export HTTP_PROXY="http://${PROXYHOST}:${PROXYPORT}" export https_proxy="http://${PROXYHOST}:${PROXYPORT}" export HTTPS_PROXY="http://${PROXYHOST}:${PROXYPORT}" export ftp_proxy="http://${PROXYHOST}:${PROXYPORT}" export FTP_PROXY="http://${PROXYHOST}:${PROXYPORT}" export all_proxy="http://${PROXYHOST}:${PROXYPORT}" export ALL_PROXY="http://${PROXYHOST}:${PROXYPORT}" export no_proxy="localhost,$(hostname -s),$(hostname -f),$(host...
2006 May 08
3
build in iexplore.exe
...wine directory and typed #wine iexplore.exe Then it tries to download the Mozilla ActiveX PlugIn and this is where the problem starts: The download window shows, but it doesn't start the download. I am sitting behind a proxy server (no authorisation needed), and the proxy is setup correctly: ftp_proxy=ftp://proxy.sun.ac.za:3128 http_proxy=http://proxy.sun.ac.za:3128 https_proxy=http://proxy.sun.ac.za:3128 no_proxy='localhost, sun.ac.za' Any ideas why it doesn't start the download? Rainer
2009 Oct 31
1
how to set default proxy?
hi I know that I could use ssh tunneling: ssh -fND localhost:6000 SOMEBODY at 192.168.56.5 -p PORTNUMBER to surf the web through another machines internet connection -> I just need to set Firefox to use proxy 6000. But: How can I set that on the client side, to e.g.: ping through the machine with openssh-server? Not just setting Firefox to use port 6000. Is there any method for
2015 Aug 31
1
[PATCH] customize: fix running commands on the same architecture
...diff --git a/customize/customize_run.ml b/customize/customize_run.ml index 2283272..9d97522 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -70,18 +70,20 @@ let run (g : Guestfs.guestfs) root (ops : ops) = ) [ "http_proxy"; "https_proxy"; "ftp_proxy"; "no_proxy" ] in let env_vars = String.concat "\n" env_vars ^ "\n" in - let setarch = + let cmd = match Config.host_cpu, guest_arch with - | "x86_64", ("i386"|"i486"|"i586"|"i686") -> &...
2002 Jun 18
2
Problems with url/download and http_proxy
I would like to use the getBioC.R script from http://www.bioconductor.org/getBioC.R to install the biobase packages. Unfortunately, url() and download.file() die when trying to talk to my proxy: > getBioC("exprs") connect: Cannot assign requested address unable to connect to 'gproxy1.pfizer.com'. connect: Cannot assign requested address unable to connect to
2002 Jun 18
2
Problems with url/download and http_proxy
I would like to use the getBioC.R script from http://www.bioconductor.org/getBioC.R to install the biobase packages. Unfortunately, url() and download.file() die when trying to talk to my proxy: > getBioC("exprs") connect: Cannot assign requested address unable to connect to 'gproxy1.pfizer.com'. connect: Cannot assign requested address unable to connect to
2015 Aug 27
1
[PATCH] customize: Use setarch when running commands on i686 guest (RHBZ#1256405).
...ages. + * - Use setarch when running x86_64 host + i686 guest. * Also catch errors and dump the log file completely on error. *) let env_vars = @@ -69,11 +70,16 @@ let run (g : Guestfs.guestfs) root (ops : ops) = ) [ "http_proxy"; "https_proxy"; "ftp_proxy"; "no_proxy" ] in let env_vars = String.concat "\n" env_vars ^ "\n" in + let setarch = + match Config.host_cpu, guest_arch with + | "x86_64", ("i386"|"i486"|"i586"|"i686") -> "setarch i6...
2019 Jan 05
4
how to set proxy systemwide (wget and docker)
Hallo, what is the right way to set a proxy systemwide using centos 7? I need this for wget and docker. My first idea was /etc/environment but allthough the proxy is set wget and docker don? t connect to their target-systems. Thanks for hints Ralf
2020 May 04
1
[common PATCH] mltools: add run_in_guest_command helper
...unning x86_64 host + i686 guest. + *) + let env_vars = + List.filter_map ( + fun name -> + try Some (sprintf "export %s=%s" name (quote (Sys.getenv name))) + with Not_found -> None + ) [ "http_proxy"; "https_proxy"; "ftp_proxy"; "no_proxy" ] in + let env_vars = String.concat "\n" env_vars ^ "\n" in + + let cmd = + match Guestfs_config.host_cpu, guest_arch with + | "x86_64", ("i386"|"i486"|"i586"|"i686") -> + spr...
2005 Sep 03
1
CentOS bootstrapper for chroot(2) environment
...RPM=rpm while read -r key val;do if test -n "$val";then RPM="$RPM $key $val";fi done <<EOH --httpproxy `echo $http_proxy|sed -n 's#^[^/]*//\([^:/]*\).*$#\1#p'` --httpport `echo $http_proxy|sed -n 's#^[^/]*//[^:/]*:\([^/]*\).*$#\1#p'` --ftpproxy `echo $ftp_proxy|sed -n 's#^[^/]*//\([^:/]*\).*$#\1#p'` --ftpport `echo $ftp_proxy|sed -n 's#^[^/]*//[^:/]*:\([^/]*\).*$#\1#p'` EOH # rpm(8) $RPM --root=$ROOT -i `set +x;while read -r line;do echo $RPMS_URL_BASE/$line;done <<EOH rpm-4.3.3-9_nonptl.i386.rpm bash-3.0-19.2.i386.rpm glibc-2.3....
2013 Jan 15
5
cr repo and firewalling
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I find myself in a complicated situation and would like to ask the oracle (choke!) for help. I would like to install the packages from the continuous release repo and the yum config for this repo says baseurl=http://mirror.centos.org/centos/$releasever/cr/$basearch/ well, I definitely do not want to allow worldwide outgoing http so I try to find
2001 Jul 31
4
update.packages()
Dear R users, I am using R Version 1.3.0 (2001-06-22) under Windows 2000 Professional (SP 2). When I try "Packages"->"Update packages from CRAN" the result is something like trying URL `http://cran.r-project.org/bin/windows/contrib/PACKAGES' unable to connect to 'cran.r-project.org'. Error in download.file(url = paste(contriburl, "PACKAGES",
2016 Jul 07
0
[PATCH 3/3] builder: Use the new Curl module for passing parameters to curl.
...rename filename_new filename - -and proxy_envvar protocol = function - | UnsetProxy -> - (match protocol with - | "http" -> "env http_proxy= no_proxy=* " - | "https" -> "env https_proxy= no_proxy=* " - | "ftp" -> "env ftp_proxy= no_proxy=* " - | _ -> "env no_proxy=* " - ) - | SystemProxy -> - (* No changes required. *) - "" - | ForcedProxy proxy -> - let proxy = quote proxy in - (match protocol with - | "http" -> sprintf "env http_proxy=%s no_proxy...
2015 Aug 27
1
[PATCH v2] customize: Use setarch when running commands on i686 guest
v2: Fix problem when running multiple commands.