using SSh problem!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sa6113

    using SSh problem!


    I want to connect form a windows machine to a Linux one using SSH (I use
    Paramiko) and simply copy a file to Linux machine.
    Would you please help me how should I start?
    Is there any useful code?

    --
    View this message in context: http://www.nabble.com/using-SSh-prob...p19775680.html
    Sent from the Python - python-list mailing list archive at Nabble.com.

  • Lawrence D'Oliveiro

    #2
    Re: using SSh problem!

    In message <mailman.1881.1 222937896.3487. python-list@python.org >, sa6113
    wrote:
    I want to connect form a windows machine to a Linux one using SSH (I use
    Paramiko) and simply copy a file to Linux machine.
    Do you want to be able to connect without having to enter a password? You'll
    need to set up a public/private key pair for that.

    Comment

    • sa6113

      #3
      Re: using SSh problem!


      No, my problem isn't entering password or not ?
      I want to know what should I do to connect between different platform and
      copy a file .



      Lawrence D'Oliveiro wrote:
      >
      In message <mailman.1881.1 222937896.3487. python-list@python.org >, sa6113
      wrote:
      >
      >I want to connect form a windows machine to a Linux one using SSH (I use
      >Paramiko) and simply copy a file to Linux machine.
      >
      Do you want to be able to connect without having to enter a password?
      You'll
      need to set up a public/private key pair for that.
      --

      >
      >
      --
      View this message in context: http://www.nabble.com/using-SSh-prob...p19776775.html
      Sent from the Python - python-list mailing list archive at Nabble.com.

      Comment

      • Tim Golden

        #4
        Re: using SSh problem!

        sa6113 wrote:
        No, my problem isn't entering password or not ?
        I want to know what should I do to connect between different platform and
        copy a file .
        Did you try searching? This looks hopeful:



        TJG

        Comment

        • Ulrich Eckhardt

          #5
          Re: using SSh problem!

          sa6113 wrote:
          I want to connect form a windows machine to a Linux one using SSH (I use
          Paramiko) and simply copy a file to Linux machine.
          Would you please help me how should I start?
          For starters, I'd take a look at 'scp'. Other than that, what does the
          question you asked have to do with Python?

          Uli

          --
          Sator Laser GmbH
          Geschäftsführ er: Thorsten Föcking, Amtsgericht Hamburg HR B62 932

          Comment

          • sa6113

            #6
            Re: using SSh problem!


            One of the Python implementations of SSH is called Paramiko.


            Ulrich Eckhardt wrote:

            sa6113 wrote:
            >I want to connect form a windows machine to a Linux one using SSH (I use
            >Paramiko) and simply copy a file to Linux machine.
            >Would you please help me how should I start?
            For starters, I'd take a look at 'scp'. Other than that, what does the
            question you asked have to do with Python?

            Uli

            --
            Sator Laser GmbH
            Geschäftsführ er: Thorsten Föcking, Amtsgericht Hamburg HR B62 932

            --
            --
            View this message in context: http://www.nabble.com/using-SSh-prob...p19777590.html
            Sent from the Python - python-list mailing list archive at Nabble.com.

            Comment

            • Sean DiZazzo

              #7
              Re: using SSh problem!

              On Oct 2, 3:27 am, sa6113 <s.payan...@gma il.comwrote:
              No, my problem isn't entering password or not ?
              I want to know what should I do to connect between different platform and
              copy a file .
              >
              Lawrence D'Oliveiro wrote:
              >
              In message <mailman.1881.1 222937896.3487. python-l...@python.org >, sa6113
              wrote:
              >
              I want to connect form a windows machine to a Linux one using SSH (I use
              Paramiko) and simply copy a file to Linux machine.
              >
              Do you want to be able to connect without having to enter a password?
              You'll
              need to set up a public/private key pair for that.
              --
              http://mail.python.org/mailman/listinfo/python-list
              >
              --
              View this message in context:http://www.nabble.com/using-SSh-prob...p19776775.html
              Sent from the Python - python-list mailing list archive at Nabble.com.
              I do it by wrapping "plink".



              I believe you can also install a version of OpenSSH on Windows.

              ~Sean

              Comment

              • Larry Bates

                #8
                Re: using SSh problem!

                sa6113 wrote:
                I want to connect form a windows machine to a Linux one using SSH (I use
                Paramiko) and simply copy a file to Linux machine.
                Would you please help me how should I start?
                Is there any useful code?
                >
                I find that one of the easiest ways of doing this is to install Cygwin on the
                windows machine, then you have all the Linux capabilities under Windows. Open
                Cygwin console and you can use ssh, scp, etc. to connect to Linux box, copy a
                file, etc. All with ssh security.

                -Larry

                Comment

                Working...