ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Windows 10

    IT Discussion
    8
    66
    13.8k
    Loading More Posts
    • 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.
    • scottalanmillerS
      scottalanmiller
      last edited by

      This post is deleted!
      1 Reply Last reply Reply Quote 0
      • DashrenderD
        Dashrender
        last edited by Dashrender

        Do you think there was a reason for this?

        Perhaps the Windows dev team at the time never considered windows to be used like nix was? The user interacting directly with the server machine like a remote session.

        Or was it for performance or some other reason?

        scottalanmillerS 2 Replies Last reply Reply Quote 0
        • scottalanmillerS
          scottalanmiller @Dashrender
          last edited by

          @Dashrender said:

          I have to ask - what do you sacrifice doing it this way? Performance? anything?

          Sure, single user performance has to suffer some. But pretty little. And on modern systems you basically cannot measure it. Using Linux locally feels just like Windows.

          DashrenderD 1 Reply Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller @Dashrender
            last edited by

            @Dashrender said:

            Do you think there was a reason for this?

            Perhaps the Windows dev team at the time never considered windows to be used like nix was? The user interacting directly with the server machine like a remote session.

            Or was it for performance or some other reason?

            I could only guess. Probably it was quicker and cheaper to develop and required less effort.

            1 Reply Last reply Reply Quote 0
            • DashrenderD
              Dashrender @scottalanmiller
              last edited by

              @scottalanmiller said:

              @Dashrender said:

              I have to ask - what do you sacrifice doing it this way? Performance? anything?

              Sure, single user performance has to suffer some. But pretty little. And on modern systems you basically cannot measure it. Using Linux locally feels just like Windows.

              Is the X protocol tantamount to RDP? i.e. does all the real processing still happen on the linux box?

              scottalanmillerS 1 Reply Last reply Reply Quote 0
              • DashrenderD
                Dashrender
                last edited by

                From the server side, I can see it being extremely beneficial to pull the GUI off the machine and present it a la linux/Unix

                While it's not the same, MS has sorta recognized this by creating Windows Server Core.

                scottalanmillerS 2 Replies Last reply Reply Quote 0
                • scottalanmillerS
                  scottalanmiller @Dashrender
                  last edited by

                  @Dashrender said:

                  But Unix, and later linux (based on unix, right?) Those guys grew up in the datacenter, away from the users, the need for multiuser remote access was there from the start. It naturally makes sense they would do that for their xServer (is this the right name?) environment too.

                  Yes, Linux is a UNIX. UNIX is the family, Linux is a specific kernel within the UNIX family, CentOS or Ubuntu are specific implementations of an OS built from the Linux kernel.

                  X Window System is the name of the standard UNIX desktop (used by Linux, FreeBSD, Solaris, AIX, HP-UX, etc.) system. The X client is what runs on the "server" side and the X server runs on the "desktop" side. The naming is ridiculously confusing for no good reason as far as I know. So on a normal Linux desktop you would see both the client and the server running on the same box. If you connect remotely, the X client runs on the headless machine and the X server is the one that actually shows the graphics.

                  (This of the X client as Apache and the X server as Chrome.)

                  1 Reply Last reply Reply Quote 0
                  • scottalanmillerS
                    scottalanmiller @Dashrender
                    last edited by

                    @Dashrender said:

                    Is the X protocol tantamount to RDP? i.e. does all the real processing still happen on the linux box?

                    Yes and no. X is more "raw." If you were really going to access Linux remotely you will normally use VNC, RDP, NX, etc. to encapsulate X to make it more robust for network usage (RDP is leaner and more compressed.) X is pretty raw so that you can do with it what you want. Commonly people would just encapsulate in SSH to make it easy to access over a WAN.

                    1 Reply Last reply Reply Quote 0
                    • DashrenderD
                      Dashrender
                      last edited by

                      I was going to ask why you would want to run X over a network/WAN, but the answer is for the same reason you might want to run a Terminal Server/App Server, etc.

                      scottalanmillerS 1 Reply Last reply Reply Quote 0
                      • scottalanmillerS
                        scottalanmiller @Dashrender
                        last edited by

                        @Dashrender said:

                        While it's not the same, MS has sorta recognized this by creating Windows Server Core.

                        Core addresses something different. In the UNIX world, you have always had the ability to remove the desktop completely. In fact for the first decade or more, there was no desktop at all (there were no monitors back then!) Windows Server Core allows Windows to be stripped of its desktop to make it a pure server as every OS except for Windows has always worked.

                        Microsoft is not doing anything that takes it towards the native networked interface model. That's just not something they are looking to do.

                        1 Reply Last reply Reply Quote 0
                        • scottalanmillerS
                          scottalanmiller @Dashrender
                          last edited by

                          @Dashrender said:

                          From the server side, I can see it being extremely beneficial to pull the GUI off the machine and present it a la linux/Unix

                          For a server you would still never want a GUI. This is really about desktop / terminal server usage, not normal server usage.

                          DashrenderD 1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @Dashrender
                            last edited by

                            @Dashrender said:

                            I was going to ask why you would want to run X over a network/WAN, but the answer is for the same reason you might want to run a Terminal Server/App Server, etc.

                            Correct. And using X has always given the ability to share a full desktop or to send only a single application / window over the network. It is pretty slick. What works great is that local windows and remote windows are completely the same, you can't tell where things are coming from. So a user can have a local desktop and have some apps running on a remote server somewhere, perfect for an application that needs heft computation or needs to run from a secured location or you need to balance network load. It's very nice. You can do the same thing with XenApp but it isn't cheap or simple. Every UNIX desktop can do this.

                            1 Reply Last reply Reply Quote 0
                            • scottalanmillerS
                              scottalanmiller @Dashrender
                              last edited by

                              @Dashrender said:

                              Perhaps the Windows dev team at the time never considered windows to be used like nix was? The user interacting directly with the server machine like a remote session.

                              The Terminal Server product is quite old. They were definitely thinking in this direction a very long time ago, but maybe not as early as when they started down the OS/2 path with IBM which created the foundation of NT.

                              DashrenderD 1 Reply Last reply Reply Quote 0
                              • DashrenderD
                                Dashrender @scottalanmiller
                                last edited by

                                @scottalanmiller said:

                                @Dashrender said:

                                Perhaps the Windows dev team at the time never considered windows to be used like nix was? The user interacting directly with the server machine like a remote session.

                                The Terminal Server product is quite old. They were definitely thinking in this direction a very long time ago, but maybe not as early as when they started down the OS/2 path with IBM which created the foundation of NT.

                                True, they were thinking about it a long time ago.. but instead of solving it like Unix did, they bought technology from Citrix and applied it - that seems like a mistake in hindsight.

                                scottalanmillerS 1 Reply Last reply Reply Quote 0
                                • DashrenderD
                                  Dashrender @scottalanmiller
                                  last edited by

                                  @scottalanmiller said:

                                  @Dashrender said:

                                  From the server side, I can see it being extremely beneficial to pull the GUI off the machine and present it a la linux/Unix

                                  For a server you would still never want a GUI. This is really about desktop / terminal server usage, not normal server usage.

                                  I'm trying to think why you would want this for general desktops? In an office environment, ok - maybe for support reasons, but for standard home users? would this really be that useful?

                                  scottalanmillerS 1 Reply Last reply Reply Quote 0
                                  • DominicaD
                                    Dominica
                                    last edited by

                                    I'm feeling like the Linux 101 session has been just about covered in this thread...

                                    1 Reply Last reply Reply Quote 0
                                    • scottalanmillerS
                                      scottalanmiller @Dashrender
                                      last edited by

                                      @Dashrender said:

                                      @scottalanmiller said:

                                      @Dashrender said:

                                      From the server side, I can see it being extremely beneficial to pull the GUI off the machine and present it a la linux/Unix

                                      For a server you would still never want a GUI. This is really about desktop / terminal server usage, not normal server usage.

                                      I'm trying to think why you would want this for general desktops? In an office environment, ok - maybe for support reasons, but for standard home users? would this really be that useful?

                                      You can say that about any feature. It's about the system being more robust and flexible. Think about the ENTIRE RDS, VDI and XenApp infrastructures just as a starting point that UNIX has had covered with every desktop since the beginning.

                                      1 Reply Last reply Reply Quote 0
                                      • scottalanmillerS
                                        scottalanmiller @Dashrender
                                        last edited by

                                        @Dashrender said:

                                        True, they were thinking about it a long time ago.. but instead of solving it like Unix did, they bought technology from Citrix and applied it - that seems like a mistake in hindsight.

                                        Yes, it does. It was the wrong architecture from the beginning. It was always a bit of "making due" with what they had rather than designing for the right solution.

                                        1 Reply Last reply Reply Quote 0
                                        • garak0410G
                                          garak0410 @Dashrender
                                          last edited by

                                          @Dashrender said:

                                          Thanks IRJ for posting the link - I would have missed it until tomorrow.

                                          I think I'm going to buy this same tablet Garak has and use that as a platform for win10

                                          I've held off putting Windows 10 on my WinBook...it is not optimized for tablets yet...more so for Desktop...

                                          garak0410G 1 Reply Last reply Reply Quote 0
                                          • garak0410G
                                            garak0410 @garak0410
                                            last edited by

                                            @garak0410 said:

                                            @Dashrender said:

                                            Thanks IRJ for posting the link - I would have missed it until tomorrow.

                                            I think I'm going to buy this same tablet Garak has and use that as a platform for win10

                                            I've held off putting Windows 10 on my WinBook...it is not optimized for tablets yet...more so for Desktop...

                                            Might have spoke too soon...I do see the pictures IRJ posted... never could get the start screen going in my virtual Windows 10's...

                                            IRJI 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 3 / 4
                                            • First post
                                              Last post