corsasport.co.uk
 

Corsa Sport » Message Board » Off Day » Geek Day » Linux nerds in here please


New Topic

New Poll
  <<  1    2  >> Subscribe | Add to Favourites

You are not logged in and may not post or reply to messages. Please log in or create a new account or mail us about fixing an existing one - register@corsasport.co.uk

There are also many more features available when you are logged in such as private messages, buddy list, location services, post search and more.


Author Linux nerds in here please
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
12th Sep 10 at 11:10   View User's Profile U2U Member Reply With Quote

My server is running Ubuntu 10.04 'Lucid Lynx' LTS, I want to be able to connect to it remotely from my Windows 7 laptop.

On the server side, I have set up SSH, and on the laptop side I have installed and set up TightVNC Viewer and PuTTY.

I have also got a domain name with DynDNS, and entered those details into my broadband router.

Here's the thing... I can successfully SSH into the server box (using the DynDNS address) and I *think* I am successfully running X11VNC from the console, but TightVNC never seems to connect whether I try 'localhost' or the DynDNS address with the port as well.

Where am I going wrong?
Andrew
Member

Registered: 5th May 04
Location: Skoda Octavia Estate, Ford Puma
User status: Offline
12th Sep 10 at 12:56   View User's Profile U2U Member Reply With Quote

Have you forwarded the VNC ports from the router to Linux box?
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
12th Sep 10 at 14:55   View User's Profile U2U Member Reply With Quote

Yeah, 22 and 5900-5901 is forwarded to the server, I just went on CanYouSeeMe.org and it's telling me port 22 is OK (SSH) but 5900 = connection refused?

[Edited on 12-09-2010 by Sam]
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
12th Sep 10 at 15:08   View User's Profile U2U Member Reply With Quote

Think I sorted it. Removing the -localhost parameter when I type in the x11vnc command in the shell seems to have fixed it.

Weird though, because the Ubuntu documentation page on VNC said to set it up that way?
Andrew
Member

Registered: 5th May 04
Location: Skoda Octavia Estate, Ford Puma
User status: Offline
12th Sep 10 at 15:47   View User's Profile U2U Member Reply With Quote

Mate, working with computers all day long i wouldn't be surprised. They do some weird and wonderful things
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
12th Sep 10 at 15:50   View User's Profile U2U Member Reply With Quote

This was much easier when I was running XP as my server - I just used Remote Desktop
PaulW
Member

Registered: 26th Jan 03
Location: Atherton, Greater Manchester
User status: Offline
12th Sep 10 at 16:33   View User's Profile U2U Member Reply With Quote

You turn VNC on via System -> Preferences -> Remote Desktop anyway... no idea why you're manually playing with x11vnc...
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
12th Sep 10 at 16:49   View User's Profile U2U Member Reply With Quote

Remote Desktop doesn't work if you're not already logged in at the Ubuntu box.

With x11vnc you don't need to be logged in.
PaulW
Member

Registered: 26th Jan 03
Location: Atherton, Greater Manchester
User status: Offline
12th Sep 10 at 17:14   View User's Profile U2U Member Reply With Quote

Look up XDMCP then, less overheads and much friendlier on the 'old bandwidth requirements.
Rob_Quads
Member

Registered: 29th Mar 01
Location: southampton
User status: Offline
12th Sep 10 at 18:15   View User's Profile U2U Member Reply With Quote

I would recommend using SSH to tunnel through than opening up VNC, much more secure.
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
12th Sep 10 at 18:23   View User's Profile U2U Member Reply With Quote

quote:
Originally posted by Rob_Quads
I would recommend using SSH to tunnel through than opening up VNC, much more secure.


quote:
Originally posted by Sam
On the server side, I have set up SSH


I need access to the desktop as well hence using VNC as well.
Rob_Quads
Member

Registered: 29th Mar 01
Location: southampton
User status: Offline
12th Sep 10 at 18:26   View User's Profile U2U Member Reply With Quote

You can use VNC but I would recommend tunneling it through SSH which is much more secure.

You then SSH in (using putty or similar) make sure you have it setup to port forward i.e. localhost:5900 -> 192.168.1.5:5900 (where the server on your home network is 192.168.1.5)

That way you are only opening 1 port up to the wide world and not the VNC port.
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
12th Sep 10 at 18:57   View User's Profile U2U Member Reply With Quote

The way I do it is:

- connect to server via SSH in PuTTY
- run x11vnc in the shell, which listens for connections on port 5900
- connect to desktop with VNC client to the DynDNS address on port 5900

Is that the correct way of tunneling through SSH?

I followed these instructions on the Ubuntu website:

VNC - Community Ubuntu Documentation

[Edited on 12-09-2010 by Sam]
ENB
Member

Registered: 24th Apr 06
User status: Offline
13th Sep 10 at 12:45   View User's Profile U2U Member Reply With Quote

Why would you have a server with a GUI?
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
13th Sep 10 at 13:36   View User's Profile U2U Member Reply With Quote

Why not?
moka
Member

Registered: 11th Mar 06
User status: Offline
13th Sep 10 at 16:42   View User's Profile U2U Member Reply With Quote

quote:
Originally posted by ENB
Why would you have a server with a GUI?


Does seem a bit odd, but if he has come directly from a windows world its normal i suppose.
moka
Member

Registered: 11th Mar 06
User status: Offline
13th Sep 10 at 16:45   View User's Profile U2U Member Reply With Quote

quote:
Originally posted by Sam
The way I do it is:

- connect to server via SSH in PuTTY
- run x11vnc in the shell, which listens for connections on port 5900
- connect to desktop with VNC client to the DynDNS address on port 5900

Is that the correct way of tunneling through SSH?

I followed these instructions on the Ubuntu website:

VNC - Community Ubuntu Documentation

[Edited on 12-09-2010 by Sam]


To tunnel through ssh is to make a ssh connection and tunnel the vnc connection thru it thus making it secure.

What your describing is logging into the server via ssh, enabling the vnc server and connecting to it normally via vnc.
Rob_Quads
Member

Registered: 29th Mar 01
Location: southampton
User status: Offline
13th Sep 10 at 16:51   View User's Profile U2U Member Reply With Quote

Running a GUI on modern server would have virtually no impact at all when no-one is logged in
moka
Member

Registered: 11th Mar 06
User status: Offline
13th Sep 10 at 16:51   View User's Profile U2U Member Reply With Quote

quote:
Originally posted by Sam
Why not?


Normally a server (especially a linux server) in my experience would be run headless.

What that means is... If its a home server (for example), the server would be setup using a keyboard mouse and monitor, ssh would be enabled to allow remote admin, then the keyboard mouse and monitor would be removed and the server chucked under the stairs. You would then be able to control the server from your main pc using SSH.

Additionally i would install webmin to give me a web based admin console if i was feeling lazy or couldnt do something using the console.

A gui is a bit odd though as normally you just wouldnt need it plus it would be taking up potentially valuable system resources.

Each to there own though.
Andrew
Member

Registered: 5th May 04
Location: Skoda Octavia Estate, Ford Puma
User status: Offline
13th Sep 10 at 20:09   View User's Profile U2U Member Reply With Quote

I'm becoming quite fond of Linux. I assume you initially went for Linux due to it being Open Source. I don't know much about and have only used it to recover data on a few occasions. Quite fancy getting myself a netbook running Ubuntu in the coming months. I'll be mainly using it as a cheap web browser while waching TV. Need to look into this 3G stuff to see if the software will work.

My set up at home currently consists of SonicWall VPN and an SBS2008 box used for Exchange 2007 and as a file server (RAID5). Got a USB Laser printer attached too. Looking into Exchange 2010 soon, just had too many person issues going on.
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
14th Sep 10 at 07:53   View User's Profile U2U Member Reply With Quote

Right I've done some more tweaking and now I can connect to the terminal AND the desktop via SSH.

Hopefully this is correct?

In PuTTY, I've got the following set up:

Connection > SSH > X11

- Enable X11 forwarding is ticked
- X display location = localhost:O

Connection > SSH > Tunnels

- Source port = 5900
- Destination = localhost:5900

In the terminal, I type in:

sudo x11vnc -safer -localhost -nopw -once -display :O

And finally in the VNC viewer I connect to localhost::5900.

(O = 0 BTW in the above examples, CS smiley got in the way!)

[Edited on 14-09-2010 by Sam]
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
14th Sep 10 at 08:02   View User's Profile U2U Member Reply With Quote

quote:
Originally posted by moka
Normally a server (especially a linux server) in my experience would be run headless.

What that means is... If its a home server (for example), the server would be setup using a keyboard mouse and monitor, ssh would be enabled to allow remote admin, then the keyboard mouse and monitor would be removed and the server chucked under the stairs. You would then be able to control the server from your main pc using SSH.

Additionally i would install webmin to give me a web based admin console if i was feeling lazy or couldnt do something using the console.

A gui is a bit odd though as normally you just wouldnt need it plus it would be taking up potentially valuable system resources.

Each to there own though.


I'm not that much of a Linux guru as you can probably tell, I'm starting to learn my way around the terminal screen as I also use it in case things in GUI based programs don't work as I expect them to, but I do like the convenience of having a GUI as let's face it, we aren't back in 1970 with the good old UNIX days are we?

I do have Webmin installed as well, although I tend to use that to check system changes I make in the terminal are correct
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
14th Sep 10 at 08:07   View User's Profile U2U Member Reply With Quote

quote:
Originally posted by Andrew
I'm becoming quite fond of Linux. I assume you initially went for Linux due to it being Open Source. I don't know much about and have only used it to recover data on a few occasions. Quite fancy getting myself a netbook running Ubuntu in the coming months. I'll be mainly using it as a cheap web browser while waching TV. Need to look into this 3G stuff to see if the software will work.

My set up at home currently consists of SonicWall VPN and an SBS2008 box used for Exchange 2007 and as a file server (RAID5). Got a USB Laser printer attached too. Looking into Exchange 2010 soon, just had too many person issues going on.


I just fancied learning something new, and Linux isn't as demanding as Windows which is great for my little Athlon 1.6 server! It originally had 512MB RAM and Windows XP, but I upgraded the RAM to 1GB and migrated over to Ubuntu as that seems to be the most popular flavour of Linux these days (I did try Kubuntu on a laptop once but that's just Ubuntu with a different desktop).

The server runs a RAID1 disk mirror, and I've got my laser connected to it so that anyone on the network can access files and print easily. Can't get my UPS to work with it though, probably because it's a cheap ass unit from eBuyer I bought ages ago although it did work OK with Windows...
willay
Moderator
Organiser: South East, National Events
Premium Member


Avatar

Registered: 10th Nov 02
Location: Roydon, Essex
User status: Offline
14th Sep 10 at 08:19   View Garage View User's Profile U2U Member Reply With Quote

whats the make and model of the UPS?
Sam
Moderator
Premium Member


Registered: 24th Dec 99
Location: West Midlands
User status: Offline
14th Sep 10 at 08:29   View User's Profile U2U Member Reply With Quote

I think it's a Plexus UPS-500V, it's this bad boy anyway:

http://www.ebuyer.com/product/130477

  <<  1    2  >>
New Topic

New Poll

  Related Threads Author Forum Replies Views Last Post
Computer O/S question cdcool1 Geek Day 80 5933
31st Mar 03 at 15:37
by willay
 
Linux... Mikorsa16v Geek Day 0 1230
15th Sep 03 at 17:42
by Mikorsa16v
 
any LINUX users in the house? need help..... M2RTY Geek Day 21 1898
27th Feb 04 at 15:12
by M2RTY
 
2 pcs + broadband?? Martin_C Geek Day 20 1098
20th Jul 04 at 02:24
by drunkenfool
 
if i put linux on my laptop sam-smith Geek Day 26 1417
25th Mar 09 at 19:06
by noshua
 

Corsa Sport » Message Board » Off Day » Geek Day » Linux nerds in here please 28 database queries in 0.0164819 seconds