Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Alternative Computing > Linux Support
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Linux Support Linux - Operating Systems and Applications Support

Reply
 
LinkBack Thread Tools
Old 08-22-2007, 03:08 PM   #1 (permalink)
Registered User
 
Join Date: Aug 2007
Posts: 7
OS: Windows Vista, Ubuntu Linux


Best VNC for Ubuntu

I want to remote desktop to my ubuntu computer from my windows, but VNC seems low grade. Can anyone recommend a better Server/Client that will let me RDesktop from Windows to Ubuntu?
nas061000 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 08-22-2007, 05:13 PM   #2 (permalink)
Manager
 
shuuhen's Avatar
 
Join Date: Sep 2004
Location: Colorado
Posts: 985
OS: Mac OS 9.1, Mac OS X 10.5.8, WinXP Pro, FreeBSD 6.0, Gentoo Linux

My System

Re: Best VNC for Ubuntu

I use VNC personally. What do you not like about VNC? A couple of the places I've worked at use VNC to log into servers and it worked great there. It's more cross platform than the other options I know about.

As far as I know, you cannot run Microsoft's Remote Desktop server on a non-Windows machine (you can run the client though). If you really don't like VNC, you could try NoMachine's NX. There is a free version of it called FreeNX. It does seem to be harder to set up than VNC (although I've heard it has some good benefits). Unfortunately I've been distracted from setting it up on my server (two new computers I need to configure the way I like), so I can't say how well it works.
__________________


Has it been a few days since I replied to your thread? Don't panic! I'm a busy college student and may forget a post if I'm extra busy (or it might just take me a while to be able to do a decent reply). If you still need help and are awaiting my reply after a few days, PM me about it.

When posting what errors you get, please give the full message. It makes helping you much easier.
shuuhen is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-22-2007, 05:35 PM   #3 (permalink)
Registered User
 
Join Date: Aug 2007
Posts: 7
OS: Windows Vista, Ubuntu Linux


Re: Best VNC for Ubuntu

Then which specific version of VNC? I see in the repo that there's like 5 difference choices...
nas061000 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-22-2007, 10:15 PM   #4 (permalink)
Manager
 
shuuhen's Avatar
 
Join Date: Sep 2004
Location: Colorado
Posts: 985
OS: Mac OS 9.1, Mac OS X 10.5.8, WinXP Pro, FreeBSD 6.0, Gentoo Linux

My System

Re: Best VNC for Ubuntu

I usually use TightVNC. It has consistently been easier for me to set up and use quickly than the other's I looked into.
__________________


Has it been a few days since I replied to your thread? Don't panic! I'm a busy college student and may forget a post if I'm extra busy (or it might just take me a while to be able to do a decent reply). If you still need help and are awaiting my reply after a few days, PM me about it.

When posting what errors you get, please give the full message. It makes helping you much easier.
shuuhen is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-22-2007, 10:37 PM   #5 (permalink)
Registered User
 
Join Date: Aug 2007
Posts: 7
OS: Windows Vista, Ubuntu Linux


Re: Best VNC for Ubuntu

See, when I VNC to ubuntu, all i get is a terminal screen... how do i get full gnome from there?
nas061000 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-22-2007, 11:22 PM   #6 (permalink)
Registered User
 
Join Date: Aug 2007
Posts: 7
OS: Windows Vista, Ubuntu Linux


Re: Best VNC for Ubuntu

Ok, I do a

tightvncserver -broadcast

which will start up the login for ubuntu, but when ever I get into gnome, the keyboard map get's messed up. s becomes f, etc... any idea?
nas061000 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-24-2007, 01:33 PM   #7 (permalink)
Manager
 
shuuhen's Avatar
 
Join Date: Sep 2004
Location: Colorado
Posts: 985
OS: Mac OS 9.1, Mac OS X 10.5.8, WinXP Pro, FreeBSD 6.0, Gentoo Linux

My System

Re: Best VNC for Ubuntu

Quote:
Originally Posted by nas061000 View Post
See, when I VNC to ubuntu, all i get is a terminal screen... how do i get full gnome from there?
Well, the way I control the GUIs on my system is with .xinitrc in my home directory. For VNC I have a similar file that should be located at ~/.vnc/xstartup

This is my xstartup
Code:
#!/bin/sh

xrdb $HOME/.Xresources
xsetroot -solid grey
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
exec fluxbox
The key to having the graphical system you want is the last line. Instead of 'exec fluxbox' you will want to have 'exec gnome-session'. You may already have a xsession file, in which case we just care about the 'exec' line (which should be the last). If the exec line isn't there, just add the 'exec gnome-session' (no quotes).
__________________


Has it been a few days since I replied to your thread? Don't panic! I'm a busy college student and may forget a post if I'm extra busy (or it might just take me a while to be able to do a decent reply). If you still need help and are awaiting my reply after a few days, PM me about it.

When posting what errors you get, please give the full message. It makes helping you much easier.
shuuhen is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-24-2007, 01:51 PM   #8 (permalink)
Manager
 
shuuhen's Avatar
 
Join Date: Sep 2004
Location: Colorado
Posts: 985
OS: Mac OS 9.1, Mac OS X 10.5.8, WinXP Pro, FreeBSD 6.0, Gentoo Linux

My System

Re: Best VNC for Ubuntu

Quote:
Originally Posted by nas061000 View Post
Ok, I do a

tightvncserver -broadcast

which will start up the login for ubuntu, but when ever I get into gnome, the keyboard map get's messed up. s becomes f, etc... any idea?
Is the keymap is messed up when you're physically at the Ubuntu machine or is it in the VNC session?

The way I launch VNC on my FreeBSD server is with

vncserver :1

The ':1' gives it a display number. You will use that display number when you log in from your other machine. That's also how it had to be used at one of my jobs that used VNC. We'd usually log in with ssh or puTTY (the latter is a great program to basically use ssh from Windows), then run the vncserver command. I don't think it'll make much difference, but you can try my way if you want.
__________________


Has it been a few days since I replied to your thread? Don't panic! I'm a busy college student and may forget a post if I'm extra busy (or it might just take me a while to be able to do a decent reply). If you still need help and are awaiting my reply after a few days, PM me about it.

When posting what errors you get, please give the full message. It makes helping you much easier.
shuuhen is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-28-2007, 11:29 AM   #9 (permalink)
Be Free
 
LoneWolf071's Avatar
 
Join Date: Nov 2004
Location: Texas
Posts: 840
OS: Windows XP, Linux


Send a message via AIM to LoneWolf071
Re: Best VNC for Ubuntu

This Is My Main, I couldn't remember this password so i created Nas061000... lol... the keymap on the physical computer is normal, and when I'm at the root of VNC, where it's just a terminal, the keymap is normal, but when I open Gnome only it messes it up. When I opened fluxbox, the keymap mapped normal.
__________________
Suicide Command in Linux : rm -rf / ;)
AIM:TheLoneWolf071@aim.com--If You Need Help, Don't Hesitate...
LoneWolf071 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 01-30-2008, 11:55 AM   #10 (permalink)
Registered User
 
Join Date: Jan 2008
Posts: 1
OS: Mint Linux


Re: Best VNC for Ubuntu

Hi All,

I need some guidance, I recently started using Linux (Mint), and have a question about VNC. I use VNC on my Windows machines - the listenening viewer mode and server modes - and want to have a similar setup in Linux - is this only possible via the terminal or is there a way to have icons. Here is what I normally do:

VNC Server - running at all times
VNC Viewer - running at all times (Listening mode)

I also have people install VNC and right click to connect to me (add new client)

How can I accomplish these same things in Linux?

Thanks.
sam1972 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

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 Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 06:34 PM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85