How to use Lantronix Spider KVM with latest Java 8What would you recommend for a low-cost KVM for home use?Need recommendations for KVM with mixed PS/2 and USB portsKVM / Extender needed… with no lagHow can I “IP-enable” a KVM?Looking for Recommendations on a Mid-Range IP KVMRemote Access KVM RecommendationWhy are USB/DVI KVM switches so much more expensive than USB/DSUB models?KVM switch with VNC serverVGA monitor blinks with KVMWhat cables, mount kits and accessories to use with APC LCD KVM rack consoles?

bmatrix: how to align elements' subscripts?

Why 1,2 printed by a command in $() is not interpolated?

Overlapping String-Blocks

How to decline a wedding invitation from a friend I haven't seen in years?

Can I utilise a baking stone to make crepes?

Meaning of 'lose their grip on the groins of their followers'

How to hide an urban landmark?

Wooden cooking layout

Why can I traceroute to this IP address, but not ping?

Should I ask for an extra raise?

Why not invest in precious metals?

What is the maximum number of net attacks that one can make in a round?

Has there been a multiethnic Star Trek character?

Non-aqueous eyes?

Warning about needing "authorization" when booking ticket

How to safely destroy (a large quantity of) valid checks?

What is the color of artificial intelligence?

A strange trigonometric identity

You have (3^2 + 2^3 + 2^2) Guesses Left. Figure out the Last one

Can the concepts of abstract algebra be visualized as in analysis?

Check if three arrays contains the same element

Russian word for a male zebra

Thread Pool C++ Implementation

Is it legal for a bar bouncer to confiscate a fake ID



How to use Lantronix Spider KVM with latest Java 8


What would you recommend for a low-cost KVM for home use?Need recommendations for KVM with mixed PS/2 and USB portsKVM / Extender needed… with no lagHow can I “IP-enable” a KVM?Looking for Recommendations on a Mid-Range IP KVMRemote Access KVM RecommendationWhy are USB/DVI KVM switches so much more expensive than USB/DSUB models?KVM switch with VNC serverVGA monitor blinks with KVMWhat cables, mount kits and accessories to use with APC LCD KVM rack consoles?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








2















I have a Lantronix Spider KVM (Keyboard-Video-Mouse) to remote control a machine over VGA and USB.



It worked well in the past, but recently I got RFB: Unable to connect in the status bar of the Java Web Start application with which I can view the display.



I'm using the Spider firmware v3.0.22 and Java 8, on Ubuntu 16.04. I tried both openjdk and the proprietary Oracle Java distribution, but the result is the same.



How can I debug and fix the problem?










share|improve this question




























    2















    I have a Lantronix Spider KVM (Keyboard-Video-Mouse) to remote control a machine over VGA and USB.



    It worked well in the past, but recently I got RFB: Unable to connect in the status bar of the Java Web Start application with which I can view the display.



    I'm using the Spider firmware v3.0.22 and Java 8, on Ubuntu 16.04. I tried both openjdk and the proprietary Oracle Java distribution, but the result is the same.



    How can I debug and fix the problem?










    share|improve this question
























      2












      2








      2


      1






      I have a Lantronix Spider KVM (Keyboard-Video-Mouse) to remote control a machine over VGA and USB.



      It worked well in the past, but recently I got RFB: Unable to connect in the status bar of the Java Web Start application with which I can view the display.



      I'm using the Spider firmware v3.0.22 and Java 8, on Ubuntu 16.04. I tried both openjdk and the proprietary Oracle Java distribution, but the result is the same.



      How can I debug and fix the problem?










      share|improve this question














      I have a Lantronix Spider KVM (Keyboard-Video-Mouse) to remote control a machine over VGA and USB.



      It worked well in the past, but recently I got RFB: Unable to connect in the status bar of the Java Web Start application with which I can view the display.



      I'm using the Spider firmware v3.0.22 and Java 8, on Ubuntu 16.04. I tried both openjdk and the proprietary Oracle Java distribution, but the result is the same.



      How can I debug and fix the problem?







      keyboard-video-mouse






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Sep 8 '17 at 16:11









      nh2nh2

      4481616




      4481616




















          1 Answer
          1






          active

          oldest

          votes


















          1














          Enabling the Java console for debugging output



          In general, it is advisable to show the Java debug console so that you can see all error messages. You can do it this way:



          • Run javaws to open a settings menu, tab Advanced, under Java Console choose Show console.

          Java security settings



          The problem is increased security restrictions in newer versions of Java.



          The Spider by default uses a self-signed certificate.



          You need to relax the security settings to permit it, in 2 steps (as described here and in a few other places, but I'll give the details for Linux):




          1. In the GUI settings:



            • Run javaws to open a settings menu.

            • tab Security

            • in the section Exceptions Site List click Edit Site List and


            • add the HTTPS location or IP and port to which the viewer shall connect.



              In my case, that is https://example.com:5555 (beacause I port-forwarded port 5555 through my NAT to the viewer port 443 of the Spider).





          2. In the system-wide Java settings:



            • Edit $JAVA_HOME/security/java.policy (so typically /etc/java-8-openjdk/security/java.policy or /etc/java-8-oracle/security/java.policy depending on your installation) and


            • in the grant { section (under // default permissions granted to all domains, add the line:



              permission java.net.SocketPermission "example.com:5555", "connect, resolve";




          Editing the spider.jnlp file to support port forwardings



          There is a setting in the Spider UI called Remote Console & HTTPS port (default 443) that determines on which port the the javaws viewer connects to the Spider.



          Note that this port is indepentent from the port on which you access the Spider web UI!



          If you Spider is behind a NAT with port forward, e.g. 5555 -> 443, you need to either change the setting to 5555 (probably you don't want this if inside the NAT you want to continue using 443), or change the spider.jnlp file that the web UI offers you for download.



          In spider.jnlp you need to change:



          ...
          <argument>-PORT</argument>
          <argument>443</argument>
          <argument>-SSLPORT</argument>
          <argument>443</argument>
          ...


          to



          ...
          <argument>-PORT</argument>
          <argument>5555</argument>
          <argument>-SSLPORT</argument>
          <argument>5555</argument>
          ...


          (You can easily find this by searching for 443 in the file.)



          Troubleshooting of specific error messages



          I encountered thes error messages in the console:




          • Read timed out



            I was trying to connect the Java Web Start application via HTTP, but while the Spider configuration UI supports both HTTP and HTTPS, the Java Web Start application supports only HTTPS. (Got the idea from here (in German).)




          • Java NullPointerException at sun.awt.X11.XPopupMenuPeer.getCaptionSize(XPopupMenuPeer.java:251) when clicking the Options button



            I haven't figured out yet what to do against this, any help would be appreciated.



          Further tips



          Defining keyboard shortcuts



          The options button not working (see problem above) means you cannot access the virtual keyboard or enter keyboard shortcuts. As a workaround, you can add keyboard shortcuts from the Web UI, in the tab Interfaces -> KVM Console Settings, for example:




          • confirm Alt+PRINTSCREEN+B for the SysRq to the Linux kernel reboot the machine

          The hotkeys are not actually a setting of the Spider, but a setting of the javaws application; the web UI just generates the .jnlp file accordingly. That means you can also add keyboard shortcuts directly in the JNLP file if you know the key codes.



          For example, the shortcut above generates in the .jnlp file (next to the default Ctrl+Alt+Delete button):



          <argument>-HOTKEY_0</argument><argument>confirm Ctrl+Alt+Delete</argument>
          <argument>-HOTKEYCODE_0</argument><argument>36 f0 37 f0 4e </argument>
          <argument>-HOTKEYNAME_0</argument><argument>confirm Ctrl+Alt+Delete</argument>

          <argument>-HOTKEY_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>
          <argument>-HOTKEYCODE_1</argument><argument>37 f0 48 f0 2f </argument>
          <argument>-HOTKEYNAME_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>





          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "2"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f872723%2fhow-to-use-lantronix-spider-kvm-with-latest-java-8%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Enabling the Java console for debugging output



            In general, it is advisable to show the Java debug console so that you can see all error messages. You can do it this way:



            • Run javaws to open a settings menu, tab Advanced, under Java Console choose Show console.

            Java security settings



            The problem is increased security restrictions in newer versions of Java.



            The Spider by default uses a self-signed certificate.



            You need to relax the security settings to permit it, in 2 steps (as described here and in a few other places, but I'll give the details for Linux):




            1. In the GUI settings:



              • Run javaws to open a settings menu.

              • tab Security

              • in the section Exceptions Site List click Edit Site List and


              • add the HTTPS location or IP and port to which the viewer shall connect.



                In my case, that is https://example.com:5555 (beacause I port-forwarded port 5555 through my NAT to the viewer port 443 of the Spider).





            2. In the system-wide Java settings:



              • Edit $JAVA_HOME/security/java.policy (so typically /etc/java-8-openjdk/security/java.policy or /etc/java-8-oracle/security/java.policy depending on your installation) and


              • in the grant { section (under // default permissions granted to all domains, add the line:



                permission java.net.SocketPermission "example.com:5555", "connect, resolve";




            Editing the spider.jnlp file to support port forwardings



            There is a setting in the Spider UI called Remote Console & HTTPS port (default 443) that determines on which port the the javaws viewer connects to the Spider.



            Note that this port is indepentent from the port on which you access the Spider web UI!



            If you Spider is behind a NAT with port forward, e.g. 5555 -> 443, you need to either change the setting to 5555 (probably you don't want this if inside the NAT you want to continue using 443), or change the spider.jnlp file that the web UI offers you for download.



            In spider.jnlp you need to change:



            ...
            <argument>-PORT</argument>
            <argument>443</argument>
            <argument>-SSLPORT</argument>
            <argument>443</argument>
            ...


            to



            ...
            <argument>-PORT</argument>
            <argument>5555</argument>
            <argument>-SSLPORT</argument>
            <argument>5555</argument>
            ...


            (You can easily find this by searching for 443 in the file.)



            Troubleshooting of specific error messages



            I encountered thes error messages in the console:




            • Read timed out



              I was trying to connect the Java Web Start application via HTTP, but while the Spider configuration UI supports both HTTP and HTTPS, the Java Web Start application supports only HTTPS. (Got the idea from here (in German).)




            • Java NullPointerException at sun.awt.X11.XPopupMenuPeer.getCaptionSize(XPopupMenuPeer.java:251) when clicking the Options button



              I haven't figured out yet what to do against this, any help would be appreciated.



            Further tips



            Defining keyboard shortcuts



            The options button not working (see problem above) means you cannot access the virtual keyboard or enter keyboard shortcuts. As a workaround, you can add keyboard shortcuts from the Web UI, in the tab Interfaces -> KVM Console Settings, for example:




            • confirm Alt+PRINTSCREEN+B for the SysRq to the Linux kernel reboot the machine

            The hotkeys are not actually a setting of the Spider, but a setting of the javaws application; the web UI just generates the .jnlp file accordingly. That means you can also add keyboard shortcuts directly in the JNLP file if you know the key codes.



            For example, the shortcut above generates in the .jnlp file (next to the default Ctrl+Alt+Delete button):



            <argument>-HOTKEY_0</argument><argument>confirm Ctrl+Alt+Delete</argument>
            <argument>-HOTKEYCODE_0</argument><argument>36 f0 37 f0 4e </argument>
            <argument>-HOTKEYNAME_0</argument><argument>confirm Ctrl+Alt+Delete</argument>

            <argument>-HOTKEY_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>
            <argument>-HOTKEYCODE_1</argument><argument>37 f0 48 f0 2f </argument>
            <argument>-HOTKEYNAME_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>





            share|improve this answer



























              1














              Enabling the Java console for debugging output



              In general, it is advisable to show the Java debug console so that you can see all error messages. You can do it this way:



              • Run javaws to open a settings menu, tab Advanced, under Java Console choose Show console.

              Java security settings



              The problem is increased security restrictions in newer versions of Java.



              The Spider by default uses a self-signed certificate.



              You need to relax the security settings to permit it, in 2 steps (as described here and in a few other places, but I'll give the details for Linux):




              1. In the GUI settings:



                • Run javaws to open a settings menu.

                • tab Security

                • in the section Exceptions Site List click Edit Site List and


                • add the HTTPS location or IP and port to which the viewer shall connect.



                  In my case, that is https://example.com:5555 (beacause I port-forwarded port 5555 through my NAT to the viewer port 443 of the Spider).





              2. In the system-wide Java settings:



                • Edit $JAVA_HOME/security/java.policy (so typically /etc/java-8-openjdk/security/java.policy or /etc/java-8-oracle/security/java.policy depending on your installation) and


                • in the grant { section (under // default permissions granted to all domains, add the line:



                  permission java.net.SocketPermission "example.com:5555", "connect, resolve";




              Editing the spider.jnlp file to support port forwardings



              There is a setting in the Spider UI called Remote Console & HTTPS port (default 443) that determines on which port the the javaws viewer connects to the Spider.



              Note that this port is indepentent from the port on which you access the Spider web UI!



              If you Spider is behind a NAT with port forward, e.g. 5555 -> 443, you need to either change the setting to 5555 (probably you don't want this if inside the NAT you want to continue using 443), or change the spider.jnlp file that the web UI offers you for download.



              In spider.jnlp you need to change:



              ...
              <argument>-PORT</argument>
              <argument>443</argument>
              <argument>-SSLPORT</argument>
              <argument>443</argument>
              ...


              to



              ...
              <argument>-PORT</argument>
              <argument>5555</argument>
              <argument>-SSLPORT</argument>
              <argument>5555</argument>
              ...


              (You can easily find this by searching for 443 in the file.)



              Troubleshooting of specific error messages



              I encountered thes error messages in the console:




              • Read timed out



                I was trying to connect the Java Web Start application via HTTP, but while the Spider configuration UI supports both HTTP and HTTPS, the Java Web Start application supports only HTTPS. (Got the idea from here (in German).)




              • Java NullPointerException at sun.awt.X11.XPopupMenuPeer.getCaptionSize(XPopupMenuPeer.java:251) when clicking the Options button



                I haven't figured out yet what to do against this, any help would be appreciated.



              Further tips



              Defining keyboard shortcuts



              The options button not working (see problem above) means you cannot access the virtual keyboard or enter keyboard shortcuts. As a workaround, you can add keyboard shortcuts from the Web UI, in the tab Interfaces -> KVM Console Settings, for example:




              • confirm Alt+PRINTSCREEN+B for the SysRq to the Linux kernel reboot the machine

              The hotkeys are not actually a setting of the Spider, but a setting of the javaws application; the web UI just generates the .jnlp file accordingly. That means you can also add keyboard shortcuts directly in the JNLP file if you know the key codes.



              For example, the shortcut above generates in the .jnlp file (next to the default Ctrl+Alt+Delete button):



              <argument>-HOTKEY_0</argument><argument>confirm Ctrl+Alt+Delete</argument>
              <argument>-HOTKEYCODE_0</argument><argument>36 f0 37 f0 4e </argument>
              <argument>-HOTKEYNAME_0</argument><argument>confirm Ctrl+Alt+Delete</argument>

              <argument>-HOTKEY_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>
              <argument>-HOTKEYCODE_1</argument><argument>37 f0 48 f0 2f </argument>
              <argument>-HOTKEYNAME_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>





              share|improve this answer

























                1












                1








                1







                Enabling the Java console for debugging output



                In general, it is advisable to show the Java debug console so that you can see all error messages. You can do it this way:



                • Run javaws to open a settings menu, tab Advanced, under Java Console choose Show console.

                Java security settings



                The problem is increased security restrictions in newer versions of Java.



                The Spider by default uses a self-signed certificate.



                You need to relax the security settings to permit it, in 2 steps (as described here and in a few other places, but I'll give the details for Linux):




                1. In the GUI settings:



                  • Run javaws to open a settings menu.

                  • tab Security

                  • in the section Exceptions Site List click Edit Site List and


                  • add the HTTPS location or IP and port to which the viewer shall connect.



                    In my case, that is https://example.com:5555 (beacause I port-forwarded port 5555 through my NAT to the viewer port 443 of the Spider).





                2. In the system-wide Java settings:



                  • Edit $JAVA_HOME/security/java.policy (so typically /etc/java-8-openjdk/security/java.policy or /etc/java-8-oracle/security/java.policy depending on your installation) and


                  • in the grant { section (under // default permissions granted to all domains, add the line:



                    permission java.net.SocketPermission "example.com:5555", "connect, resolve";




                Editing the spider.jnlp file to support port forwardings



                There is a setting in the Spider UI called Remote Console & HTTPS port (default 443) that determines on which port the the javaws viewer connects to the Spider.



                Note that this port is indepentent from the port on which you access the Spider web UI!



                If you Spider is behind a NAT with port forward, e.g. 5555 -> 443, you need to either change the setting to 5555 (probably you don't want this if inside the NAT you want to continue using 443), or change the spider.jnlp file that the web UI offers you for download.



                In spider.jnlp you need to change:



                ...
                <argument>-PORT</argument>
                <argument>443</argument>
                <argument>-SSLPORT</argument>
                <argument>443</argument>
                ...


                to



                ...
                <argument>-PORT</argument>
                <argument>5555</argument>
                <argument>-SSLPORT</argument>
                <argument>5555</argument>
                ...


                (You can easily find this by searching for 443 in the file.)



                Troubleshooting of specific error messages



                I encountered thes error messages in the console:




                • Read timed out



                  I was trying to connect the Java Web Start application via HTTP, but while the Spider configuration UI supports both HTTP and HTTPS, the Java Web Start application supports only HTTPS. (Got the idea from here (in German).)




                • Java NullPointerException at sun.awt.X11.XPopupMenuPeer.getCaptionSize(XPopupMenuPeer.java:251) when clicking the Options button



                  I haven't figured out yet what to do against this, any help would be appreciated.



                Further tips



                Defining keyboard shortcuts



                The options button not working (see problem above) means you cannot access the virtual keyboard or enter keyboard shortcuts. As a workaround, you can add keyboard shortcuts from the Web UI, in the tab Interfaces -> KVM Console Settings, for example:




                • confirm Alt+PRINTSCREEN+B for the SysRq to the Linux kernel reboot the machine

                The hotkeys are not actually a setting of the Spider, but a setting of the javaws application; the web UI just generates the .jnlp file accordingly. That means you can also add keyboard shortcuts directly in the JNLP file if you know the key codes.



                For example, the shortcut above generates in the .jnlp file (next to the default Ctrl+Alt+Delete button):



                <argument>-HOTKEY_0</argument><argument>confirm Ctrl+Alt+Delete</argument>
                <argument>-HOTKEYCODE_0</argument><argument>36 f0 37 f0 4e </argument>
                <argument>-HOTKEYNAME_0</argument><argument>confirm Ctrl+Alt+Delete</argument>

                <argument>-HOTKEY_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>
                <argument>-HOTKEYCODE_1</argument><argument>37 f0 48 f0 2f </argument>
                <argument>-HOTKEYNAME_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>





                share|improve this answer













                Enabling the Java console for debugging output



                In general, it is advisable to show the Java debug console so that you can see all error messages. You can do it this way:



                • Run javaws to open a settings menu, tab Advanced, under Java Console choose Show console.

                Java security settings



                The problem is increased security restrictions in newer versions of Java.



                The Spider by default uses a self-signed certificate.



                You need to relax the security settings to permit it, in 2 steps (as described here and in a few other places, but I'll give the details for Linux):




                1. In the GUI settings:



                  • Run javaws to open a settings menu.

                  • tab Security

                  • in the section Exceptions Site List click Edit Site List and


                  • add the HTTPS location or IP and port to which the viewer shall connect.



                    In my case, that is https://example.com:5555 (beacause I port-forwarded port 5555 through my NAT to the viewer port 443 of the Spider).





                2. In the system-wide Java settings:



                  • Edit $JAVA_HOME/security/java.policy (so typically /etc/java-8-openjdk/security/java.policy or /etc/java-8-oracle/security/java.policy depending on your installation) and


                  • in the grant { section (under // default permissions granted to all domains, add the line:



                    permission java.net.SocketPermission "example.com:5555", "connect, resolve";




                Editing the spider.jnlp file to support port forwardings



                There is a setting in the Spider UI called Remote Console & HTTPS port (default 443) that determines on which port the the javaws viewer connects to the Spider.



                Note that this port is indepentent from the port on which you access the Spider web UI!



                If you Spider is behind a NAT with port forward, e.g. 5555 -> 443, you need to either change the setting to 5555 (probably you don't want this if inside the NAT you want to continue using 443), or change the spider.jnlp file that the web UI offers you for download.



                In spider.jnlp you need to change:



                ...
                <argument>-PORT</argument>
                <argument>443</argument>
                <argument>-SSLPORT</argument>
                <argument>443</argument>
                ...


                to



                ...
                <argument>-PORT</argument>
                <argument>5555</argument>
                <argument>-SSLPORT</argument>
                <argument>5555</argument>
                ...


                (You can easily find this by searching for 443 in the file.)



                Troubleshooting of specific error messages



                I encountered thes error messages in the console:




                • Read timed out



                  I was trying to connect the Java Web Start application via HTTP, but while the Spider configuration UI supports both HTTP and HTTPS, the Java Web Start application supports only HTTPS. (Got the idea from here (in German).)




                • Java NullPointerException at sun.awt.X11.XPopupMenuPeer.getCaptionSize(XPopupMenuPeer.java:251) when clicking the Options button



                  I haven't figured out yet what to do against this, any help would be appreciated.



                Further tips



                Defining keyboard shortcuts



                The options button not working (see problem above) means you cannot access the virtual keyboard or enter keyboard shortcuts. As a workaround, you can add keyboard shortcuts from the Web UI, in the tab Interfaces -> KVM Console Settings, for example:




                • confirm Alt+PRINTSCREEN+B for the SysRq to the Linux kernel reboot the machine

                The hotkeys are not actually a setting of the Spider, but a setting of the javaws application; the web UI just generates the .jnlp file accordingly. That means you can also add keyboard shortcuts directly in the JNLP file if you know the key codes.



                For example, the shortcut above generates in the .jnlp file (next to the default Ctrl+Alt+Delete button):



                <argument>-HOTKEY_0</argument><argument>confirm Ctrl+Alt+Delete</argument>
                <argument>-HOTKEYCODE_0</argument><argument>36 f0 37 f0 4e </argument>
                <argument>-HOTKEYNAME_0</argument><argument>confirm Ctrl+Alt+Delete</argument>

                <argument>-HOTKEY_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>
                <argument>-HOTKEYCODE_1</argument><argument>37 f0 48 f0 2f </argument>
                <argument>-HOTKEYNAME_1</argument><argument>confirm Alt+PRINTSCREEN+B</argument>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Sep 8 '17 at 16:11









                nh2nh2

                4481616




                4481616



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Server Fault!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f872723%2fhow-to-use-lantronix-spider-kvm-with-latest-java-8%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                    What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

                    Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos