I'm trying to install the latest version of putty GUI ssh client on my C5 box, but get the error:
./configure: line 2353: syntax error near unexpected token '1.2.0,' ./configure: "AM_PATH_GTK(1.2.0, all_targets="all-cli all-gtk", all_targets="all-cli)'
What am I missing? I thought I had GTK fully installed. Maybe I don't?
I tried a yum install *gtk* and *GTK* and got through that fine.
What else?
Thanks.
Scott
On Sat, 2007-11-03 at 11:03 -0400, Scott Ehrlich wrote:
I'm trying to install the latest version of putty GUI ssh client on my C5 box, but get the error:
./configure: line 2353: syntax error near unexpected token '1.2.0,' ./configure: "AM_PATH_GTK(1.2.0, all_targets="all-cli all-gtk", all_targets="all-cli)'
What am I missing? I thought I had GTK fully installed. Maybe I don't?
PuTTY is a GTK+ 1.x app. Please let it die.
On Sat, 3 Nov 2007, Ignacio Vazquez-Abrams wrote:
On Sat, 2007-11-03 at 11:03 -0400, Scott Ehrlich wrote:
I'm trying to install the latest version of putty GUI ssh client on my C5 box, but get the error:
./configure: line 2353: syntax error near unexpected token '1.2.0,' ./configure: "AM_PATH_GTK(1.2.0, all_targets="all-cli all-gtk", all_targets="all-cli)'
What am I missing? I thought I had GTK fully installed. Maybe I don't?
PuTTY is a GTK+ 1.x app. Please let it die.
I need a solution (commandline or otherwise) that will let me ssh through a socks proxy. What is a real-world .ssh/config line with ProxyCommand to look like that will work?
Thanks.
Scott
-- Ignacio Vazquez-Abrams ivazqueznet@gmail.com
PLEASE don't CC me; I'm already subscribed
On Sat, 3 Nov 2007, Scott Ehrlich wrote:
On Sat, 3 Nov 2007, Ignacio Vazquez-Abrams wrote:
On Sat, 2007-11-03 at 11:03 -0400, Scott Ehrlich wrote:
I'm trying to install the latest version of putty GUI ssh client on my C5 box, but get the error:
./configure: line 2353: syntax error near unexpected token '1.2.0,' ./configure: "AM_PATH_GTK(1.2.0, all_targets="all-cli all-gtk", all_targets="all-cli)'
What am I missing? I thought I had GTK fully installed. Maybe I don't?
PuTTY is a GTK+ 1.x app. Please let it die.
I need a solution (commandline or otherwise) that will let me ssh through a socks proxy. What is a real-world .ssh/config line with ProxyCommand to look like that will work?
I just figured it out.
Scott
Thanks.
Scott
-- Ignacio Vazquez-Abrams ivazqueznet@gmail.com
PLEASE don't CC me; I'm already subscribed
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Scott Ehrlich wrote:
I need a solution (commandline or otherwise) that will let me ssh through a socks proxy. What is a real-world .ssh/config line with ProxyCommand to look like that will work?
Thanks.
Scott
A quick look at the ssh_config and nc manpages indicates something like this should work in your .ssh/config:
Host {target} ProxyCommand /usr/bin/nc -X 5 -x {proxyip}:{proxyport} %h %p
where {target} is the FQDN of the target host, {proxyip} is the IP of the SOCKS proxy, and {proxyport} is the port of the SOCKS proxy. Change "-X 5" to "-X 4" if your SOCKS proxy is version 4 instead of 5. I haven't tested this, it's just extrapolation from the manpages.
Hope that helps!
On Sat, 3 Nov 2007, Scott Ehrlich wrote:
I'm trying to install the latest version of putty GUI ssh client on my C5 box, but get the error:
./configure: line 2353: syntax error near unexpected token '1.2.0,' ./configure: "AM_PATH_GTK(1.2.0, all_targets="all-cli all-gtk", all_targets="all-cli)'
What am I missing? I thought I had GTK fully installed. Maybe I don't?
I tried a yum install *gtk* and *GTK* and got through that fine.
What else?
http://dag.wieers.com/rpm/packages/putty/
On 2007-11-03, Scott Ehrlich scott@MIT.EDU wrote:
I'm trying to install the latest version of putty GUI ssh client on my C5 box, but get the error:
./configure: line 2353: syntax error near unexpected token '1.2.0,' ./configure: "AM_PATH_GTK(1.2.0, all_targets="all-cli all-gtk", all_targets="all-cli)'
What am I missing? I thought I had GTK fully installed. Maybe I don't?
You probably have gtk-2.x installed. Putty is looking for gtk-1.2.0.
But why do you need putty? Using ssh in an xterm does the same thing with less overhead.