Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Remote Desktop for Linux???

Remote Desktop for Linux???

Scheduled Pinned Locked Moved The Lounge
linuxquestionannouncement
14 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C code frog 0

    Hey all, I am back in school and I am wondering if there is a FREE version of a Remote Desktop that will allow a Windows XP box to log on and Remote Control a linux box? I have a tower already loaded with Linux. But I really don't want to give up a bunch of valuable desk space to a monitor, keyboard and mouse hooked to a _ _ _ _ _ _ _ (insert compliment or insult, your choice):omg: linux box. Any ideas for a guy who knows NOTHING about Linux? Yes, I know I can google. But I thought, better to get the advice of people I "trust" (I use that carefully because I know Roger Wright is lurking somewhere :laugh:) instead of the advice of total strangers that I am 'googling' at. :) Thanks!!! Rex


    "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

    Z Offline
    Z Offline
    ZoogieZork
    wrote on last edited by
    #4

    As an alternative to VNC, if you have a Win32 X server (such as StarNet X-Win32, WRQ Reflection/X, or Hummingbird Exceed), then you can run X applications (including Gnome or KDE apps or the complete desktop) remotely. The X applications run on the Linux box but are displayed on your Windows desktop, without having to export the entire X desktop. Your school may have a site license for one of the above tools. I mention this because this is a feature of X Windows that I abuse pretty heavily in the office :) - Mike

    S A 2 Replies Last reply
    0
    • Z ZoogieZork

      As an alternative to VNC, if you have a Win32 X server (such as StarNet X-Win32, WRQ Reflection/X, or Hummingbird Exceed), then you can run X applications (including Gnome or KDE apps or the complete desktop) remotely. The X applications run on the Linux box but are displayed on your Windows desktop, without having to export the entire X desktop. Your school may have a site license for one of the above tools. I mention this because this is a feature of X Windows that I abuse pretty heavily in the office :) - Mike

      S Offline
      S Offline
      Shock The Dark Mage
      wrote on last edited by
      #5

      You could use Cygwin(Linux-like environment) with a port of Xfree86. Cost free! It's located at http://www.cygwin.com


      Shock The Dark Mage (くらまどうし ショック ) shock@shockdev.ca.tc Main Project: Aeru IRC - http://www.sf.net/projects/aeruirc

      Z 1 Reply Last reply
      0
      • Z ZoogieZork

        As an alternative to VNC, if you have a Win32 X server (such as StarNet X-Win32, WRQ Reflection/X, or Hummingbird Exceed), then you can run X applications (including Gnome or KDE apps or the complete desktop) remotely. The X applications run on the Linux box but are displayed on your Windows desktop, without having to export the entire X desktop. Your school may have a site license for one of the above tools. I mention this because this is a feature of X Windows that I abuse pretty heavily in the office :) - Mike

        A Offline
        A Offline
        Andrew Allen
        wrote on last edited by
        #6

        Michael Imamura wrote: if you have a Win32 X server (such as StarNet X-Win32, WRQ Reflection/X, or Hummingbird Exceed), These apps would be X clients, not servers. The X server is on the Linux box. Code Frog: I agree with Shock, CygWin is a nice X client for Win32 and it's free. The standard Xvnc server under Linux will open a new X windows display for each VNC client. If you want to access the same desktop every time (a la Windows), you'll need a package called x0rfbserver. That opens DISPLAY:0 at startup, keeps it open all the time and accepts VNC client connections.

        Z 1 Reply Last reply
        0
        • A Andrew Allen

          Michael Imamura wrote: if you have a Win32 X server (such as StarNet X-Win32, WRQ Reflection/X, or Hummingbird Exceed), These apps would be X clients, not servers. The X server is on the Linux box. Code Frog: I agree with Shock, CygWin is a nice X client for Win32 and it's free. The standard Xvnc server under Linux will open a new X windows display for each VNC client. If you want to access the same desktop every time (a la Windows), you'll need a package called x0rfbserver. That opens DISPLAY:0 at startup, keeps it open all the time and accepts VNC client connections.

          Z Offline
          Z Offline
          ZoogieZork
          wrote on last edited by
          #7

          Andrew Allen wrote: These apps would be X clients, not servers. The X server is on the Linux box. Actually, the terminology for the X Window System is a little bizarre. The X "server" is the host that handles drawing to the screen, translates input into events, and tracks windows. The X "client" is the application itself. So the X "client" runs on the remote machine, the X "server" runs on the local machine (as backwards as it sounds!) More info about the X11 protocol's client/server design: http://www.x.org/X11_clientdesign.html[^] - Mike

          A J 2 Replies Last reply
          0
          • S Shock The Dark Mage

            You could use Cygwin(Linux-like environment) with a port of Xfree86. Cost free! It's located at http://www.cygwin.com


            Shock The Dark Mage (くらまどうし ショック ) shock@shockdev.ca.tc Main Project: Aeru IRC - http://www.sf.net/projects/aeruirc

            Z Offline
            Z Offline
            ZoogieZork
            wrote on last edited by
            #8

            I had a lot of trouble with the XFree86 port when I tried it a few years ago... I see that they've made significant progress since then, particularly adding rootless mode (which was a feature that got me using StarNet's X server)! :) - Mike

            J 1 Reply Last reply
            0
            • Z ZoogieZork

              Andrew Allen wrote: These apps would be X clients, not servers. The X server is on the Linux box. Actually, the terminology for the X Window System is a little bizarre. The X "server" is the host that handles drawing to the screen, translates input into events, and tracks windows. The X "client" is the application itself. So the X "client" runs on the remote machine, the X "server" runs on the local machine (as backwards as it sounds!) More info about the X11 protocol's client/server design: http://www.x.org/X11_clientdesign.html[^] - Mike

              A Offline
              A Offline
              Andrew Allen
              wrote on last edited by
              #9

              Michael Imamura wrote: Actually, the terminology for the X Window System is a little bizarre....So the X "client" runs on the remote machine, the X "server" runs on the local machine (as backwards as it sounds!) :omg: I defer to you. You're right! So, the user interface is displayed by the X-server, which communicates with the X-client running on The Server. All the processing work is done on The Server and presented back to The Client :confused: Time for a Guinness.

              1 Reply Last reply
              0
              • C code frog 0

                Hey all, I am back in school and I am wondering if there is a FREE version of a Remote Desktop that will allow a Windows XP box to log on and Remote Control a linux box? I have a tower already loaded with Linux. But I really don't want to give up a bunch of valuable desk space to a monitor, keyboard and mouse hooked to a _ _ _ _ _ _ _ (insert compliment or insult, your choice):omg: linux box. Any ideas for a guy who knows NOTHING about Linux? Yes, I know I can google. But I thought, better to get the advice of people I "trust" (I use that carefully because I know Roger Wright is lurking somewhere :laugh:) instead of the advice of total strangers that I am 'googling' at. :) Thanks!!! Rex


                "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

                J Offline
                J Offline
                Jon Sagara
                wrote on last edited by
                #10

                telnet :-D

                Jon Sagara
                A bottle a night isn't alcoholism - it's persistence! -- A coworker, jokingly

                Latest Article: Breadcrumbs in ASP.NET

                J 1 Reply Last reply
                0
                • C code frog 0

                  Hey all, I am back in school and I am wondering if there is a FREE version of a Remote Desktop that will allow a Windows XP box to log on and Remote Control a linux box? I have a tower already loaded with Linux. But I really don't want to give up a bunch of valuable desk space to a monitor, keyboard and mouse hooked to a _ _ _ _ _ _ _ (insert compliment or insult, your choice):omg: linux box. Any ideas for a guy who knows NOTHING about Linux? Yes, I know I can google. But I thought, better to get the advice of people I "trust" (I use that carefully because I know Roger Wright is lurking somewhere :laugh:) instead of the advice of total strangers that I am 'googling' at. :) Thanks!!! Rex


                  "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

                  R Offline
                  R Offline
                  roel_
                  wrote on last edited by
                  #11

                  Depends on what you want to do with the Linux machine. I use putty when I'm confined to a Windows machine.

                  1 Reply Last reply
                  0
                  • Z ZoogieZork

                    I had a lot of trouble with the XFree86 port when I tried it a few years ago... I see that they've made significant progress since then, particularly adding rootless mode (which was a feature that got me using StarNet's X server)! :) - Mike

                    J Offline
                    J Offline
                    Jorgen Sigvardsson
                    wrote on last edited by
                    #12

                    It's still a bit shaky though, at least it was a couple of months ago. --

                    1 Reply Last reply
                    0
                    • Z ZoogieZork

                      Andrew Allen wrote: These apps would be X clients, not servers. The X server is on the Linux box. Actually, the terminology for the X Window System is a little bizarre. The X "server" is the host that handles drawing to the screen, translates input into events, and tracks windows. The X "client" is the application itself. So the X "client" runs on the remote machine, the X "server" runs on the local machine (as backwards as it sounds!) More info about the X11 protocol's client/server design: http://www.x.org/X11_clientdesign.html[^] - Mike

                      J Offline
                      J Offline
                      Jorgen Sigvardsson
                      wrote on last edited by
                      #13

                      It's not all that backwards if you take look at what is being served - the ability to let the clients show themselves. -- Huh?

                      1 Reply Last reply
                      0
                      • J Jon Sagara

                        telnet :-D

                        Jon Sagara
                        A bottle a night isn't alcoholism - it's persistence! -- A coworker, jokingly

                        Latest Article: Breadcrumbs in ASP.NET

                        J Offline
                        J Offline
                        Jorgen Sigvardsson
                        wrote on last edited by
                        #14

                        I am now crossing my fingers in a crucifix style, shielding myself from your evil advice. :-D What's wrong with righteous SSH? -- Huh?

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • World
                        • Users
                        • Groups