Networking Forums

Networking Forums > Computer Networking > Linux Networking > Using Putty and Exceed

Reply
Thread Tools Display Modes

Using Putty and Exceed

 
 
Matt
Guest
Posts: n/a

 
      02-22-2007, 08:46 PM
Hey guys. I'm having some trouble accessing the Linux servers at my
University from my home PC which runs Windows XP.

Basically we have been told to use both Putty and Exceed (a link for
Putty and a Cd containing Exceed was given to me by my Univeristies IT
Helpdesk) on our home computers to access the Linux servers which we
use in our Computing Lab. Since these labs only run for a few hours a
week, I would like to put some more time in myself at home.

I had no problems with the installation of either program. What is
more, Putty has no problems with logging onto the server once I enable
X11 Forwarding. The problem is that when I run Exceed, nothing
happens! All I get is a small toolbar at the top of the screen. There
is no other activity, and certainty no Linux window popping up as
expected.

Every now and again, I get an error message in the Putty log file
which states:

"software caused connection abort"

This doesn't appear all the time, just usually when I've run the
programs for the first time since my last reboot.

Does anyone have any idea what I might be doing wrong?

If anyone wants any further information then don't hesistate to ask.

Kind Regards,

Matt

 
Reply With Quote
 
 
 
 
J.O. Aho
Guest
Posts: n/a

 
      02-22-2007, 09:10 PM
Matt wrote:
> Hey guys. I'm having some trouble accessing the Linux servers at my
> University from my home PC which runs Windows XP.


You could always run a LiveCD, no need to install anything on your computer,
but you get both X11 and ssh.


> I had no problems with the installation of either program. What is
> more, Putty has no problems with logging onto the server once I enable
> X11 Forwarding. The problem is that when I run Exceed, nothing
> happens! All I get is a small toolbar at the top of the screen. There
> is no other activity, and certainty no Linux window popping up as
> expected.


As I'm not a microsoft user and never used Exceed, not sure how it's supposed
to look, but you need to run the application on the Linux server and then the
X-Forward will see to that Exceed will display the application on your computer

When you logged in with putty, it will most likely look something like this:

Password:
Last login: Wed Feb 21 18:10:29 2007 from 192.168.0.1
username $

Say you want to run mathlab, then

username $ mathlab &

Using an '&' after the command, you tell that you want to run the program in
the background, which gives you the prompt back, otherwise you need to make a
connection per application you want to run on the remote machine.

If you don't have Exceed installed (or any other X11 environment), then you
can't run applications on the remote machine, as it's not possible to display
it on your machine.

--

//Aho
 
Reply With Quote
 
Michael C.
Guest
Posts: n/a

 
      02-23-2007, 07:08 AM
["Followup-To:" header set to alt.linux.]
On 22 Feb 2007 13:46:47 -0800,
Matt <(E-Mail Removed)> wrote:
> Hey guys. I'm having some trouble accessing the Linux servers at my
> University from my home PC which runs Windows XP.
>
> Basically we have been told to use both Putty and Exceed (a link for
> Putty and a Cd containing Exceed was given to me by my Univeristies IT
> Helpdesk) on our home computers to access the Linux servers which we
> use in our Computing Lab. Since these labs only run for a few hours a
> week, I would like to put some more time in myself at home.
>
> I had no problems with the installation of either program. What is
> more, Putty has no problems with logging onto the server once I enable
> X11 Forwarding. The problem is that when I run Exceed, nothing
> happens! All I get is a small toolbar at the top of the screen. There
> is no other activity, and certainty no Linux window popping up as
> expected.
>
> Every now and again, I get an error message in the Putty log file
> which states:
>
> "software caused connection abort"
>
> This doesn't appear all the time, just usually when I've run the
> programs for the first time since my last reboot.
>
> Does anyone have any idea what I might be doing wrong?


If you type a program name in Putty, it will run on the XServer. Try
typing in "xterm &" or "xeyes &" or "icewm &". Okay, icewm may not be
installed, be "twm" should be. If they recommended Exceed, I'd assume
that means you have permission to run the programs. If "xterm"
doesn't work, report back the error you get in Putty.

Michael C.
--
(E-Mail Removed) http://mcsuper5.freeshell.org/

The barrier between... success is not something which exists in the real
world: it is composed purely and simply of... doubts about...ability.
- Franklin Delano Roosevelt
 
Reply With Quote
 
pgmer6809@yahoo.com
Guest
Posts: n/a

 
      03-19-2007, 08:07 PM
On Feb 22, 2:46 pm, "Matt" <matt...@hotmail.com> wrote:
> Hey guys. I'm having some trouble accessing the Linux servers at my
> University from my home PC which runs Windows XP.
>
> Basically we have been told to use both Putty and Exceed (a link for
> Putty and a Cd containing Exceed was given to me by my Univeristies IT
> Helpdesk) on our home computers to access the Linux servers which we
> use in our Computing Lab. Since these labs only run for a few hours a
> week, I would like to put some more time in myself at home.
>
> I had no problems with the installation of either program. What is
> more, Putty has no problems with logging onto the server once I enable
> X11 Forwarding. The problem is that when I run Exceed, nothing
> happens! All I get is a small toolbar at the top of the screen. There
> is no other activity, and certainty no Linux window popping up as
> expected.
>
> Every now and again, I get an error message in the Putty log file
> which states:
>
> "software caused connection abort"
>
> This doesn't appear all the time, just usually when I've run the
> programs for the first time since my last reboot.
>
> Does anyone have any idea what I might be doing wrong?
>
> If anyone wants any further information then don't hesistate to ask.
>
> Kind Regards,
>
> Matt

Disclaimer: <IANALE> (I am not a LInux Expert - I struggle with it
weekly...)

I am not sure how this works when running over Putty, but if you were
just doing access via telnet here are a few more things that need to
be setup.
1) your xserver (on your PC -- here I assume Exceed) must be started
and ready to process requests. Check with your IT folks to see how
that is done.
2) Your xserver (Exceed) must have permissions set to allow other
hosts to access him. Depending on your level of paranoia you can just
allow access to all hosts. using a Linux distro (not Exceed) you would
say xhosts + I think.
3) Your DISPLAY variable on the lab linux box must be set to point to
your PC.
If you had just telneted in, and gotten the bash prompt, you could
just say, export DISPLAY=my.ip.add.ress
Now when you run xterm & or xeyes & etc. the code will run on the
Linux lab machine, and send its output to the destination specified by
DISPLAY.

Again not sure how the issue of Putty affects this. I expect not much.

The above aside I second the motion of using a Linux live distro on
your home PC. You can use ssh, instead of putty, and you will be using
proper X instead of eXceed. If you need to save files etc to your
local disk, (or a USB stick) that can be done even from a LiveCD.

Good luck.
G.

 
Reply With Quote
 
Joe Beasley
Guest
Posts: n/a

 
      03-23-2007, 01:57 AM
(E-Mail Removed) wrote:
> On Feb 22, 2:46 pm, "Matt" <matt...@hotmail.com> wrote:
>> Hey guys. I'm having some trouble accessing the Linux servers at my
>> University from my home PC which runs Windows XP.
>>
>> Basically we have been told to use both Putty and Exceed (a link for
>> Putty and a Cd containing Exceed was given to me by my Univeristies IT
>> Helpdesk) on our home computers to access the Linux servers which we
>> use in our Computing Lab. Since these labs only run for a few hours a
>> week, I would like to put some more time in myself at home.
>>
>> I had no problems with the installation of either program. What is
>> more, Putty has no problems with logging onto the server once I enable
>> X11 Forwarding. The problem is that when I run Exceed, nothing
>> happens! All I get is a small toolbar at the top of the screen. There
>> is no other activity, and certainty no Linux window popping up as
>> expected.
>>
>> Every now and again, I get an error message in the Putty log file
>> which states:
>>
>> "software caused connection abort"
>>
>> This doesn't appear all the time, just usually when I've run the
>> programs for the first time since my last reboot.
>>
>> Does anyone have any idea what I might be doing wrong?
>>
>> If anyone wants any further information then don't hesistate to ask.
>>
>> Kind Regards,
>>
>> Matt

> Disclaimer: <IANALE> (I am not a LInux Expert - I struggle with it
> weekly...)
>
> I am not sure how this works when running over Putty, but if you were
> just doing access via telnet here are a few more things that need to
> be setup.
> 1) your xserver (on your PC -- here I assume Exceed) must be started
> and ready to process requests. Check with your IT folks to see how
> that is done.
> 2) Your xserver (Exceed) must have permissions set to allow other
> hosts to access him. Depending on your level of paranoia you can just
> allow access to all hosts. using a Linux distro (not Exceed) you would
> say xhosts + I think.
> 3) Your DISPLAY variable on the lab linux box must be set to point to
> your PC.
> If you had just telneted in, and gotten the bash prompt, you could
> just say, export DISPLAY=my.ip.add.ress
> Now when you run xterm & or xeyes & etc. the code will run on the
> Linux lab machine, and send its output to the destination specified by
> DISPLAY.
>
> Again not sure how the issue of Putty affects this. I expect not much.
>
> The above aside I second the motion of using a Linux live distro on
> your home PC. You can use ssh, instead of putty, and you will be using
> proper X instead of eXceed. If you need to save files etc to your
> local disk, (or a USB stick) that can be done even from a LiveCD.
>
> Good luck.
> G.
>

Make sure your putty is setup for X11 forwarding also. (Connections,
ssh, tunnels)

With Exceed running, ssh to the host using putty. type "xterm". (without
the quotes.) An xterm should popup in exceed.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
What happens when you exceed 2GB on Orange Victor Delta Broadband 4 08-27-2007 09:26 AM
DHCP exceed the support limit kysiow Windows Networking 2 08-16-2005 03:07 AM
PuTTY Lyle Ladeira Linux Networking 2 06-01-2004 10:06 PM
Redhat 9 & Exceed andy Broadband 1 03-02-2004 03:12 PM
Newbie - VnC or Exceed ? Takeshi Linux Networking 1 11-11-2003 12:00 AM



1 2 3 4 5 6 7 8 9 10 11