LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 06-05-2009, 02:41 AM   #1
noelc
Member
 
Registered: Apr 2009
Location: Sydney
Distribution: Ubuntu
Posts: 103

Rep: Reputation: Disabled
Old PC used as test environment


Hi I am setting up two monitors to a new PC - No problem. I want to network the old PC to the new PC (And Internet)via a router i suspect but it wont have an independant monitor or key board etc. I want to switch from the new PC environment to the Old pc environment so I can practise commands etc (Use as test environment) without the need for a KVM switch as these can be expensive.

I,m useing Ubuntu 9.01 and have been told this is possible with software similar to PC Anywhere. PC anywhere is a windows based program so I would appreciate comments on how I can acheive the above.
 
Old 06-05-2009, 04:09 AM   #2
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
You can use SSH, or plain XDMCP if your network is secure enough. The former is more secure, the latter is faster.

For the former, installing SSH server is enough; for the latter, SSH is not needed (but good to have around anyway) but a Display Manager has to run (eg: KDM or GDM).

Yves.
 
Old 06-05-2009, 05:33 AM   #3
noelc
Member
 
Registered: Apr 2009
Location: Sydney
Distribution: Ubuntu
Posts: 103

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by theYinYeti View Post
You can use SSH, or plain XDMCP if your network is secure enough. The former is more secure, the latter is faster.

For the former, installing SSH server is enough; for the latter, SSH is not needed (but good to have around anyway) but a Display Manager has to run (eg: KDM or GDM).

Yves.
lolol thanks. I have no idea what KDM or GDM that means lolol

Can I assume SSH is Linux compatible?

Last edited by noelc; 06-05-2009 at 05:35 AM.
 
Old 06-05-2009, 05:39 AM   #4
noelc
Member
 
Registered: Apr 2009
Location: Sydney
Distribution: Ubuntu
Posts: 103

Original Poster
Rep: Reputation: Disabled
[QUOTE=noelc;3563940]lolol thanks. I have no idea what KDM or GDM that means lolol

I,m new to networking so will need to do some research.

Thanks
 
Old 06-05-2009, 05:42 AM   #5
pwc101
Senior Member
 
Registered: Oct 2005
Location: UK
Distribution: Slackware
Posts: 1,847

Rep: Reputation: 128Reputation: 128
You might also want to check out synergy (http://synergy2.sourceforge.net/). It allows you to share a single mouse/keyboard over a network with a number of other machines on the same network. This will only work if you set up your computers to have a monitor each, rather than one with twin monitors, and the other headless.

It essentially does the job of a KVM switch in software over a network.
 
Old 06-05-2009, 05:47 AM   #6
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 471Reputation: 471Reputation: 471Reputation: 471Reputation: 471
My 2 PC's are side by side sharing a Linksys Router=
Can I connect the 2 together using SSH?
 
Old 06-05-2009, 06:02 AM   #7
pwc101
Senior Member
 
Registered: Oct 2005
Location: UK
Distribution: Slackware
Posts: 1,847

Rep: Reputation: 128Reputation: 128
Quote:
Originally Posted by linus72 View Post
My 2 PC's are side by side sharing a Linksys Router=
Can I connect the 2 together using SSH?
What do you want to achieve?

SSH allows you to log in to another machine (called, for example, Bob) over a network from a different computer (called Alice) such that it appears as though you've logged in locally (i.e. as if you were sat at Bob). This technically connects the two computers, but there's little transfer of resources beyone the output of a terminal. At least, that's the simplest explanation I can muster.

If you want to be able to use two computers simultaneously as though they were one single machine, then there's hardware solutions (KVM switches) or there's the software I mentioned above (http://synergy2.sourceforge.net). There's a whole host of alternative solutions (VNC servers, FreeNX servers, RDP servers etc.).
 
Old 06-05-2009, 06:44 AM   #8
noelc
Member
 
Registered: Apr 2009
Location: Sydney
Distribution: Ubuntu
Posts: 103

Original Poster
Rep: Reputation: Disabled
SSH seems to be an expensive peice of sotfware?
 
Old 06-05-2009, 07:54 AM   #9
pwc101
Senior Member
 
Registered: Oct 2005
Location: UK
Distribution: Slackware
Posts: 1,847

Rep: Reputation: 128Reputation: 128
Quote:
Originally Posted by noelc View Post
SSH seems to be an expensive peice of sotfware?
Yes, that's true.

However, what I've been discussing with reference to SSH is actually OpenSSH, a free and open source piece of software.

http://www.openssh.com/

This version of SSH is what comes with every Linux and BSD distribution I am aware of. The wikipedia's History section in the SSH article (http://en.wikipedia.org/wiki/Ssh#History) explains the reason for the two separate entities. Chances are, SSH is already installed on your computer (open a terminal and type ssh -V to check).

Last edited by pwc101; 06-05-2009 at 07:55 AM.
 
Old 06-05-2009, 08:12 AM   #10
noelc
Member
 
Registered: Apr 2009
Location: Sydney
Distribution: Ubuntu
Posts: 103

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by pwc101 View Post
Yes, that's true.

However, what I've been discussing with reference to SSH is actually OpenSSH, a free and open source piece of software.

http://www.openssh.com/

This version of SSH is what comes with every Linux and BSD distribution I am aware of. The wikipedia's History section in the SSH article (http://en.wikipedia.org/wiki/Ssh#History) explains the reason for the two separate entities. Chances are, SSH is already installed on your computer (open a terminal and type ssh -V to check).
Ok Thanks
 
Old 06-05-2009, 08:59 PM   #11
noelc
Member
 
Registered: Apr 2009
Location: Sydney
Distribution: Ubuntu
Posts: 103

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by pwc101 View Post
You might also want to check out synergy (http://synergy2.sourceforge.net/). It allows you to share a single mouse/keyboard over a network with a number of other machines on the same network. This will only work if you set up your computers to have a monitor each, rather than one with twin monitors, and the other headless.

It essentially does the job of a KVM switch in software over a network.
Hi Thnaks again for your help,

Ive checked out your suggested options and synergy2-sourceforge seems to be the way to go for me.

I must admit I,m a newbie with this stuff and have download synergy 1.3.1.tar.gz but thats as far as I got. Can you advise how I can install this download from here.

Thx much appreciated
 
Old 06-05-2009, 09:25 PM   #12
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 471Reputation: 471Reputation: 471Reputation: 471Reputation: 471
Synergy is available thru synaptic package manager
Goto System/Administration/synaptic package manager at the top panel
Click the "search" button and enter "synergy"
click box and choose "install"

Last edited by linus72; 06-05-2009 at 09:27 PM.
 
Old 06-05-2009, 09:39 PM   #13
noelc
Member
 
Registered: Apr 2009
Location: Sydney
Distribution: Ubuntu
Posts: 103

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linus72 View Post
Synergy is available thru synaptic package manager
Goto System/Administration/synaptic package manager at the top panel
Click the "search" button and enter "synergy"
click box and choose "install"
Thanks have installed it
 
Old 06-07-2009, 07:32 AM   #14
noelc
Member
 
Registered: Apr 2009
Location: Sydney
Distribution: Ubuntu
Posts: 103

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linus72 View Post
Synergy is available thru synaptic package manager
Goto System/Administration/synaptic package manager at the top panel
Click the "search" button and enter "synergy"
click box and choose "install"
Thanks.

I,ve downloaded this software and installed it. I have two PC running via a router and each PC has its own monitor. The keyboard and mouse are connected to this PC. When I activate quicksynergy not much happens only the option to select left/right/top or bottom when i select and action nothing happens?

I,m obviously doing something wrong and would appreciate your help.

Thx
 
Old 06-07-2009, 07:36 AM   #15
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 471Reputation: 471Reputation: 471Reputation: 471Reputation: 471
Actually dog, I've never used it?!
But, I guarantee you that someone here knows....
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Setting Up a SME Server Test Environment with Virtual Box on Vista LXer Syndicated Linux News 0 02-03-2009 10:00 AM
Virtualization test environment spAlex Linux - Newbie 2 10-15-2008 04:13 PM
Net boot in test environment. Kanon Linux - Newbie 2 02-27-2005 11:19 AM
creating a good test environment ddaas Linux - General 1 01-05-2005 01:11 PM
Creating a test environment - server mirroring stillontheedge Debian 8 05-24-2004 05:05 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 07:51 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration