<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: copy from linux to wondows in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461101#M37521</link>
    <description>i cannot use samba because size is big and i want to do remotedeployment, whatever the changes is there i need to do it in linux only not on windows.....&lt;BR /&gt;&lt;BR /&gt;it is something like copying from linux to windows and to execute the samething in windows......</description>
    <pubDate>Thu, 16 Jul 2009 12:34:09 GMT</pubDate>
    <dc:creator>Dilip Kumar C M</dc:creator>
    <dc:date>2009-07-16T12:34:09Z</dc:date>
    <item>
      <title>copy from linux to wondows</title>
      <link>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461099#M37519</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;winexe will execute command in a remote windows machine.&lt;BR /&gt;&lt;BR /&gt;but my requirement is i need to copy file from linux to remote windows machines and then i need to execute those things in that machine.&lt;BR /&gt;winexe will execute files and exe which is there in windows machine but i need to copy those things from 1 linux to 100 windows machine at a time, this is my job.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Anybody has any solution to this problem...???&lt;BR /&gt;thanking you.....</description>
      <pubDate>Thu, 16 Jul 2009 10:24:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461099#M37519</guid>
      <dc:creator>Dilip Kumar C M</dc:creator>
      <dc:date>2009-07-16T10:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: copy from linux to wondows</title>
      <link>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461100#M37520</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Windows has a sharing tool based on samba.&lt;BR /&gt;&lt;BR /&gt;You can use the windows gui to set shares and then cifsmount or smbmount to access the shares.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 16 Jul 2009 11:12:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461100#M37520</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-07-16T11:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: copy from linux to wondows</title>
      <link>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461101#M37521</link>
      <description>i cannot use samba because size is big and i want to do remotedeployment, whatever the changes is there i need to do it in linux only not on windows.....&lt;BR /&gt;&lt;BR /&gt;it is something like copying from linux to windows and to execute the samething in windows......</description>
      <pubDate>Thu, 16 Jul 2009 12:34:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461101#M37521</guid>
      <dc:creator>Dilip Kumar C M</dc:creator>
      <dc:date>2009-07-16T12:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: copy from linux to wondows</title>
      <link>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461102#M37522</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Samba's file size limits are pretty big.&lt;BR /&gt;&lt;BR /&gt;How big is the file.&lt;BR /&gt;&lt;BR /&gt;You can us Unix services for Windows and set up a NFS server.&lt;BR /&gt;&lt;BR /&gt;You can use openssh for windows and use secure shell(openssh) to copy the files.&lt;BR /&gt;&lt;BR /&gt;File size limitations still apply.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 16 Jul 2009 14:13:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461102#M37522</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-07-16T14:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: copy from linux to wondows</title>
      <link>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461103#M37523</link>
      <description>&lt;!--!*#--&gt;If you're doing remote deployment, I assume you have Administrator-level access to those windows machines. Right?&lt;BR /&gt;&lt;BR /&gt;In that case, use a smbclient or smbmount to connect to the hidden admin shares, e.g. \\HOSTNAME\C$. Then just copy the file(s) into the directory you want.&lt;BR /&gt;&lt;BR /&gt;If you want to script it, smbmount is probably easier. Something like:&lt;BR /&gt;&lt;BR /&gt;for HOST in win01 win02 win03 ...&lt;BR /&gt;do&lt;BR /&gt;    smbmount //$HOST/C\$ /mnt -o user=xxx,password=yyy&lt;BR /&gt;&lt;BR /&gt;    # copy file to C:\windows\temp&lt;BR /&gt;    cp /winstuff/bigfile.exe /mnt/windows/temp&lt;BR /&gt;&lt;BR /&gt;    smbumount /mnt&lt;BR /&gt;    winexe -U identity //$HOST "command"&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Thu, 16 Jul 2009 19:23:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461103#M37523</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-07-16T19:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: copy from linux to wondows</title>
      <link>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461104#M37524</link>
      <description>You might also explore using scp with authentication keys.&lt;BR /&gt;You will need an ssh service running on windozzze and add the public key to the authorized_keys file. &lt;BR /&gt;Search google there should be plenty of explanations there.&lt;BR /&gt;&lt;BR /&gt;DCJ</description>
      <pubDate>Fri, 17 Jul 2009 13:22:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/copy-from-linux-to-wondows/m-p/4461104#M37524</guid>
      <dc:creator>D. Jackson_1</dc:creator>
      <dc:date>2009-07-17T13:22:37Z</dc:date>
    </item>
  </channel>
</rss>

