Displaying 3 results from an estimated 3 matches for "httpproxy".
Did you mean:
http_proxy
2011 Oct 05
3
Terrible FPS on Lord of the Rings Online (LOTRO)
Hey all I've been trying to get some good FPS on this game and I can't seem to get it work decently at all. According to the AppDB for LOTRO a lot of people seem to be able to push out 80-150fps on this game. I don't know how as I've scoured the internet and have tried every possible registry tweak you can imagine. I even tried niceing the process to see if it would make a
2017 Nov 23
0
Cluster installation CentOS 7.4 network problems
...changing to VT 3 so that we can see whats going on....
/usr/bin/chvt 3
(
#update local time
echo "updating system time"
/usr/sbin/ntpdate -sub 139.18.1.2
/usr/sbin/hwclock --systohc
# Yum proxy
echo 'proxy = http://proxy.uni-leipzig.de:3128' >> /etc/yum.conf
rpm -Uvh --httpproxy proxy.uni-leipzig.de --httpport 3128
https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
# update all the base packages from the updates repository
if [ -f /usr/bin/dnf ]; then
dnf -y update
else
yum -t -y update
fi
# SSH keys setup snippet for Remote Execution plugin...
2005 Sep 03
1
CentOS bootstrapper for chroot(2) environment
...v/
rpm --root=$ROOT --initdb
rpm --root=$ROOT --import $KEY/usr/share/doc/centos-release-4/RPM-GPG-KEY
rm -rf $KEY
cd $RPMS
# For rpm(1) http:// downloads:
mkdir -p $ROOT/var/tmp
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...