LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-04-2006, 01:21 PM   #1
BizHat.com
Member
 
Registered: Jul 2004
Location: India
Distribution: RH, RHEL, CentOS
Posts: 46

Rep: Reputation: 15
Connecting Linux desktop from Windows


Hi,

I want to connect to remote Linux desktop (on LAN) from my Windows PC.

Linux is running Fedora Core 3.

Quote:
[root@linux ~]# rpm -qa|grep vnc
vnc-4.0-8
vnc-server-4.0-8
[root@linux ~]# uname -a
Linux linux.localdomain 2.6.12-1.1381_FC3 #1 Fri Oct 21 03:46:55 EDT 2005 i686 athlon i386 GNU/Linux
[root@linux ~]#

I have VNC server installed on Linux computer and TightVNC viewer on Windows computer.

But when i connect to Linux desktop from my Windows, i do not get the real desktop, i get a screen with Terminal. This is same like SSH, can't call it desktop :-(

http://imagehost.bizhat.com/users_th...otlink_vnc.jpg

I want to access "gnome" desktop of the Linux PC from my Windows computer, is there any way to do this ?

Thanks,

Yujin
 
Old 07-04-2006, 02:03 PM   #2
jmeadows111
LQ Newbie
 
Registered: Oct 2004
Posts: 18

Rep: Reputation: 0
Check out Freenx. Software available at:

http://nomachine.com/

I just got this installed yesterday - works great, nice performance!
 
Old 07-04-2006, 02:28 PM   #3
BizHat.com
Member
 
Registered: Jul 2004
Location: India
Distribution: RH, RHEL, CentOS
Posts: 46

Original Poster
Rep: Reputation: 15
jmeadows111, is it free ?

I can't find free version on the site

Downloaded "nxclient-2.0.0-93.exe" for Windows.

Also downloaded nxmanager-2.0.0-37.i386.rpm from

http://www.nomachine.com/select-pack...?os=linux&id=1

The linux side software is free to download ?

Can you give the download link of the file you installed ?

Thanks,

Yujin
 
Old 07-04-2006, 03:28 PM   #4
spooon
Senior Member
 
Registered: Aug 2005
Posts: 1,755

Rep: Reputation: 51
Quote:
Originally Posted by BizHat.com
jmeadows111, is it free ?

I can't find free version on the site

Downloaded "nxclient-2.0.0-93.exe" for Windows.

Also downloaded nxmanager-2.0.0-37.i386.rpm from

http://www.nomachine.com/select-pack...?os=linux&id=1

The linux side software is free to download ?

Can you give the download link of the file you installed ?

Thanks,

Yujin
You need to install FreeNX on your Linux computer.
 
Old 07-04-2006, 03:34 PM   #5
jmeadows111
LQ Newbie
 
Registered: Oct 2004
Posts: 18

Rep: Reputation: 0
Here is the link I used:

http://www.nomachine.com/select-pack...?os=linux&id=3

Quote:
Originally Posted by BizHat.com
jmeadows111, is it free ?

I can't find free version on the site

Downloaded "nxclient-2.0.0-93.exe" for Windows.

Also downloaded nxmanager-2.0.0-37.i386.rpm from

http://www.nomachine.com/select-pack...?os=linux&id=1

The linux side software is free to download ?

Can you give the download link of the file you installed ?

Thanks,

Yujin
 
Old 07-04-2006, 04:11 PM   #6
BizHat.com
Member
 
Registered: Jul 2004
Location: India
Distribution: RH, RHEL, CentOS
Posts: 46

Original Poster
Rep: Reputation: 15
thanks spooon for the reply, i really need spoon feed :-)

jmeadows111, i have installed nxserver, nxnode, nxclient on Linux. Can you tell me how do i start it ?
 
Old 07-04-2006, 04:25 PM   #7
jmeadows111
LQ Newbie
 
Registered: Oct 2004
Posts: 18

Rep: Reputation: 0
Hi again:

I am assumng you have ssh installed already.

You will need to add whatever user you want to log on as so that nxserver will recognize it:

/usr/bin/nxserver --adduser user1

The user must already exist on the system.

Then you will need to run /usr/lib/nx/nxsetup and that should start the server at the end of th process. To be sure, run /usr/bin/nxserver --start

You may need to run "xhost +" to enable remote display, then at that point you should be able to try connecting from windows (once the windows client has been installed)

Good luck!

Quote:
Originally Posted by BizHat.com
thanks spooon for the reply, i really need spoon feed :-)

jmeadows111, i have installed nxserver, nxnode, nxclient on Linux. Can you tell me how do i start it ?
 
Old 07-04-2006, 05:02 PM   #8
BizHat.com
Member
 
Registered: Jul 2004
Location: India
Distribution: RH, RHEL, CentOS
Posts: 46

Original Poster
Rep: Reputation: 15
When i try adding user, getting following error

Quote:
[root@linux bin]# /usr/NX/bin/nxserver --useradd user1
NX> 500 ERROR: cannot add user: user1.
NX> 538 To add user: user1 on the system, please run the
NX> 538 command with option: --system.
NX> 999 Bye.
[root@linux bin]#


[root@linux bin]# /usr/NX/bin/nxserver --useradd user1 --system --home=/home --gid=0 --uid=0
NX> 102 Password:
NX> 102 Confirm password:
NX> 900 Setting password for user: user1 to allow authentication.
NX> 137 System password changed correctly.
NX> 538 ERROR: User 'user1' cannot be used as an NX user.
NX> 500 ERROR: Last operation failed.
[root@linux bin]#
Any idea how to fix it ?
 
Old 07-04-2006, 05:20 PM   #9
jmeadows111
LQ Newbie
 
Registered: Oct 2004
Posts: 18

Rep: Reputation: 0
What I would try is creating a user outside of nxserver (if you're not doing it via the command line the gui you use may vary depending on what distro you are using.) At the command line (for example):

sudo adduser nxremote

then

/usr/bin/nxserver --adduser nxremote

Quote:
Originally Posted by BizHat.com
When i try adding user, getting following error



Any idea how to fix it ?
 
Old 07-04-2006, 05:44 PM   #10
BizHat.com
Member
 
Registered: Jul 2004
Location: India
Distribution: RH, RHEL, CentOS
Posts: 46

Original Poster
Rep: Reputation: 15
Thanks jmeadows111 for the help. Got it working now. It seems nxserver needs KDE to work. I tried on two Linux PC on one it got working with KDE, other do not have KDE installed and is showing error

Quote:
Cannot run '/usr/bin/dbus-launch --exit-with-session startkde'.
 
Old 07-04-2006, 06:39 PM   #11
dasy2k1
Member
 
Registered: Oct 2005
Location: 127.0.0.1
Distribution: Manjaro
Posts: 963

Rep: Reputation: 36
try just installing all the standard KDE libs, then try again, many KDE progs will work with Gnome if you have the KDE libs installed
 
Old 07-04-2006, 07:20 PM   #12
jmeadows111
LQ Newbie
 
Registered: Oct 2004
Posts: 18

Rep: Reputation: 0
Hi again:

I have it working with Gnome (running Ubuntu dapper drake), and as dasy2k1 said, you can run KDE app's in Gnome with libs installed, for example I'm a big fan of the CD burning app K3B, and it works fine.
 
  


Reply



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
Remote Desktop - Connecting to Linux from Windows XP JamboUK Ubuntu 2 05-17-2006 02:36 PM
connecting desktop using verizon and linux michael carlson Linux - General 1 04-09-2006 06:08 PM
Connecting to windows netmeeting remote desktop sharing from linux jacobselvin Linux - Software 5 12-12-2005 03:32 PM
connecting windows 98 to linux wildeboer Linux - Networking 2 04-18-2005 11:40 AM
Connecting Windows XP to linux shibdas Linux - Networking 1 07-05-2003 01:49 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:30 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