Syncing folders and files between a Windows and Linux system












1















I want to sync some folders between my Windows 7 and Ubuntu computers. However, I don't want to sync everything inside each of the folder. I want to be able to choose which subfolders and files inside each folder to keep synced. Any new file added to this folder should automatically get synced.



Basically I want to create a link between multiple pairs of folders, but have the option to exclude some contents of the folders.



I would prefer this to be over the internet, but if it's over LAN that works too, as long as it is automatic.










share|improve this question























  • Symlinks may works.

    – Biswapriyo
    Sep 1 '17 at 12:35











  • Is there a reason you can't use some third-party tool such as Dropbox?

    – Darren
    Sep 1 '17 at 12:43











  • Dropbox doesn't do any of the things I mentioned. First, it only allows for one shared folder (not multiple). Second, inside that one folder everything gets uploaded to dropbox.

    – Cerberus
    Sep 1 '17 at 12:49






  • 2





    syncthing or rsync

    – atype
    Sep 1 '17 at 13:41











  • Unison possibly if you don't care about it not being continuous.

    – Austin Hemmelgarn
    Sep 1 '17 at 19:15
















1















I want to sync some folders between my Windows 7 and Ubuntu computers. However, I don't want to sync everything inside each of the folder. I want to be able to choose which subfolders and files inside each folder to keep synced. Any new file added to this folder should automatically get synced.



Basically I want to create a link between multiple pairs of folders, but have the option to exclude some contents of the folders.



I would prefer this to be over the internet, but if it's over LAN that works too, as long as it is automatic.










share|improve this question























  • Symlinks may works.

    – Biswapriyo
    Sep 1 '17 at 12:35











  • Is there a reason you can't use some third-party tool such as Dropbox?

    – Darren
    Sep 1 '17 at 12:43











  • Dropbox doesn't do any of the things I mentioned. First, it only allows for one shared folder (not multiple). Second, inside that one folder everything gets uploaded to dropbox.

    – Cerberus
    Sep 1 '17 at 12:49






  • 2





    syncthing or rsync

    – atype
    Sep 1 '17 at 13:41











  • Unison possibly if you don't care about it not being continuous.

    – Austin Hemmelgarn
    Sep 1 '17 at 19:15














1












1








1








I want to sync some folders between my Windows 7 and Ubuntu computers. However, I don't want to sync everything inside each of the folder. I want to be able to choose which subfolders and files inside each folder to keep synced. Any new file added to this folder should automatically get synced.



Basically I want to create a link between multiple pairs of folders, but have the option to exclude some contents of the folders.



I would prefer this to be over the internet, but if it's over LAN that works too, as long as it is automatic.










share|improve this question














I want to sync some folders between my Windows 7 and Ubuntu computers. However, I don't want to sync everything inside each of the folder. I want to be able to choose which subfolders and files inside each folder to keep synced. Any new file added to this folder should automatically get synced.



Basically I want to create a link between multiple pairs of folders, but have the option to exclude some contents of the folders.



I would prefer this to be over the internet, but if it's over LAN that works too, as long as it is automatic.







windows-7 linux windows sync






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Sep 1 '17 at 12:32









CerberusCerberus

6317




6317













  • Symlinks may works.

    – Biswapriyo
    Sep 1 '17 at 12:35











  • Is there a reason you can't use some third-party tool such as Dropbox?

    – Darren
    Sep 1 '17 at 12:43











  • Dropbox doesn't do any of the things I mentioned. First, it only allows for one shared folder (not multiple). Second, inside that one folder everything gets uploaded to dropbox.

    – Cerberus
    Sep 1 '17 at 12:49






  • 2





    syncthing or rsync

    – atype
    Sep 1 '17 at 13:41











  • Unison possibly if you don't care about it not being continuous.

    – Austin Hemmelgarn
    Sep 1 '17 at 19:15



















  • Symlinks may works.

    – Biswapriyo
    Sep 1 '17 at 12:35











  • Is there a reason you can't use some third-party tool such as Dropbox?

    – Darren
    Sep 1 '17 at 12:43











  • Dropbox doesn't do any of the things I mentioned. First, it only allows for one shared folder (not multiple). Second, inside that one folder everything gets uploaded to dropbox.

    – Cerberus
    Sep 1 '17 at 12:49






  • 2





    syncthing or rsync

    – atype
    Sep 1 '17 at 13:41











  • Unison possibly if you don't care about it not being continuous.

    – Austin Hemmelgarn
    Sep 1 '17 at 19:15

















Symlinks may works.

– Biswapriyo
Sep 1 '17 at 12:35





Symlinks may works.

– Biswapriyo
Sep 1 '17 at 12:35













Is there a reason you can't use some third-party tool such as Dropbox?

– Darren
Sep 1 '17 at 12:43





Is there a reason you can't use some third-party tool such as Dropbox?

– Darren
Sep 1 '17 at 12:43













Dropbox doesn't do any of the things I mentioned. First, it only allows for one shared folder (not multiple). Second, inside that one folder everything gets uploaded to dropbox.

– Cerberus
Sep 1 '17 at 12:49





Dropbox doesn't do any of the things I mentioned. First, it only allows for one shared folder (not multiple). Second, inside that one folder everything gets uploaded to dropbox.

– Cerberus
Sep 1 '17 at 12:49




2




2





syncthing or rsync

– atype
Sep 1 '17 at 13:41





syncthing or rsync

– atype
Sep 1 '17 at 13:41













Unison possibly if you don't care about it not being continuous.

– Austin Hemmelgarn
Sep 1 '17 at 19:15





Unison possibly if you don't care about it not being continuous.

– Austin Hemmelgarn
Sep 1 '17 at 19:15










3 Answers
3






active

oldest

votes


















0














I do this at home and at my in-laws. The basic setup is to do a mount on the Linux system that points to the Windows system. Then, do a scheduled CRON job that runs an RSYNC job to copy the latest files. The initial job takes the longest.



One thing that is of interest is the credentials needed from the Linux system. I created a maintenance account on the Windows system. Also, if I recall, I had to share the folders I needed to access in one or more of the setups. Accessing the c$ hidden share stopped working at some point during Windows updates and upgrades, and a real share was needed.



And, after the Windows 7 to 10 upgrade, I remember that I had to search Google like hell for the syntax needed to access the remote system. Ended up finding some fancy NTLM command line switches that you will never guess on your own.



Have had to tweak several times over the past 5 years for Linux and Windows changes - so don't expect the first settings to last forever.



W.






share|improve this answer
























  • Can you please show us an example rsync statement that you use? I use it a lot and this answer sounds technically correct yet does not contain all the information required to duplicate what you are doing. Also, please show the fancy NTLM stuff, etc. Just mentioning them is great but not all that helpful.

    – SDsolar
    Sep 4 '17 at 2:15











  • Sorry, haven't been here in a while. Alas, he setup died over the summer due to 4 days of bad power during a heatwave. Even with a UPS, the system got fired. Hoping to get a replacement system and also hoping the Harddisks are reuseable.

    – user2045271
    Dec 10 '17 at 15:58











  • Opps - got cut off. As for the fancy NTLM stuff - yes it was a pain. Plus, the Win8.1 to Win10 upgrade broke it. If I recall correctly, my last tweak was to create a new local Windows user with admin privs and use that account. Additionally, I think I had to create a share on the Windows system pointed to their my docs folder, and the permissions were given to only the user I mentioned above. There was one other catch I recall in that the password on the account could not use special chars. So I made it extra long, but with only numbs and letters.

    – user2045271
    Dec 10 '17 at 16:07











  • *** Had to truncate at 350 chars Perhaps my next kick at this will do it in reverse in that I will setup an SMB share on the linux server and then run a scheduled job on the windows system that uses a program I have used in the past. It's called Cobian backup. It's free and has worked for me beautifully. Gets installed as a service and has good compression, scheduling, logging, alerts, and differential options.

    – user2045271
    Dec 10 '17 at 16:08



















0














Doe you want continuous integration or do you want to control when the sync-ing is done?




  1. In the first case, you can use Syncthing.


  2. In the second case, you can use Unison.



In both cases, you can control which folders/files are synchronised.



The set-up for syncthing is a bit more automated. You can turn on/off syncthing to control when synchronisation takes place but it is a bit tricky as you need to control both machines to do this.



In the case of unison, you need to set up "ssh" access between the two machines which may or may not be a problem depending on firewall configurations and so on.






share|improve this answer































    0














    Apart from the good solutions provided here, you may also try using windows preinstalled onedrive. Its over the internet as you prefer plus gives you control over what folders/subfolders to sync. And on your linux you can install the onedrive app from software center. And download and sync your files with windows.






    share|improve this answer























      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "3"
      };
      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%2fsuperuser.com%2fquestions%2f1246467%2fsyncing-folders-and-files-between-a-windows-and-linux-system%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      I do this at home and at my in-laws. The basic setup is to do a mount on the Linux system that points to the Windows system. Then, do a scheduled CRON job that runs an RSYNC job to copy the latest files. The initial job takes the longest.



      One thing that is of interest is the credentials needed from the Linux system. I created a maintenance account on the Windows system. Also, if I recall, I had to share the folders I needed to access in one or more of the setups. Accessing the c$ hidden share stopped working at some point during Windows updates and upgrades, and a real share was needed.



      And, after the Windows 7 to 10 upgrade, I remember that I had to search Google like hell for the syntax needed to access the remote system. Ended up finding some fancy NTLM command line switches that you will never guess on your own.



      Have had to tweak several times over the past 5 years for Linux and Windows changes - so don't expect the first settings to last forever.



      W.






      share|improve this answer
























      • Can you please show us an example rsync statement that you use? I use it a lot and this answer sounds technically correct yet does not contain all the information required to duplicate what you are doing. Also, please show the fancy NTLM stuff, etc. Just mentioning them is great but not all that helpful.

        – SDsolar
        Sep 4 '17 at 2:15











      • Sorry, haven't been here in a while. Alas, he setup died over the summer due to 4 days of bad power during a heatwave. Even with a UPS, the system got fired. Hoping to get a replacement system and also hoping the Harddisks are reuseable.

        – user2045271
        Dec 10 '17 at 15:58











      • Opps - got cut off. As for the fancy NTLM stuff - yes it was a pain. Plus, the Win8.1 to Win10 upgrade broke it. If I recall correctly, my last tweak was to create a new local Windows user with admin privs and use that account. Additionally, I think I had to create a share on the Windows system pointed to their my docs folder, and the permissions were given to only the user I mentioned above. There was one other catch I recall in that the password on the account could not use special chars. So I made it extra long, but with only numbs and letters.

        – user2045271
        Dec 10 '17 at 16:07











      • *** Had to truncate at 350 chars Perhaps my next kick at this will do it in reverse in that I will setup an SMB share on the linux server and then run a scheduled job on the windows system that uses a program I have used in the past. It's called Cobian backup. It's free and has worked for me beautifully. Gets installed as a service and has good compression, scheduling, logging, alerts, and differential options.

        – user2045271
        Dec 10 '17 at 16:08
















      0














      I do this at home and at my in-laws. The basic setup is to do a mount on the Linux system that points to the Windows system. Then, do a scheduled CRON job that runs an RSYNC job to copy the latest files. The initial job takes the longest.



      One thing that is of interest is the credentials needed from the Linux system. I created a maintenance account on the Windows system. Also, if I recall, I had to share the folders I needed to access in one or more of the setups. Accessing the c$ hidden share stopped working at some point during Windows updates and upgrades, and a real share was needed.



      And, after the Windows 7 to 10 upgrade, I remember that I had to search Google like hell for the syntax needed to access the remote system. Ended up finding some fancy NTLM command line switches that you will never guess on your own.



      Have had to tweak several times over the past 5 years for Linux and Windows changes - so don't expect the first settings to last forever.



      W.






      share|improve this answer
























      • Can you please show us an example rsync statement that you use? I use it a lot and this answer sounds technically correct yet does not contain all the information required to duplicate what you are doing. Also, please show the fancy NTLM stuff, etc. Just mentioning them is great but not all that helpful.

        – SDsolar
        Sep 4 '17 at 2:15











      • Sorry, haven't been here in a while. Alas, he setup died over the summer due to 4 days of bad power during a heatwave. Even with a UPS, the system got fired. Hoping to get a replacement system and also hoping the Harddisks are reuseable.

        – user2045271
        Dec 10 '17 at 15:58











      • Opps - got cut off. As for the fancy NTLM stuff - yes it was a pain. Plus, the Win8.1 to Win10 upgrade broke it. If I recall correctly, my last tweak was to create a new local Windows user with admin privs and use that account. Additionally, I think I had to create a share on the Windows system pointed to their my docs folder, and the permissions were given to only the user I mentioned above. There was one other catch I recall in that the password on the account could not use special chars. So I made it extra long, but with only numbs and letters.

        – user2045271
        Dec 10 '17 at 16:07











      • *** Had to truncate at 350 chars Perhaps my next kick at this will do it in reverse in that I will setup an SMB share on the linux server and then run a scheduled job on the windows system that uses a program I have used in the past. It's called Cobian backup. It's free and has worked for me beautifully. Gets installed as a service and has good compression, scheduling, logging, alerts, and differential options.

        – user2045271
        Dec 10 '17 at 16:08














      0












      0








      0







      I do this at home and at my in-laws. The basic setup is to do a mount on the Linux system that points to the Windows system. Then, do a scheduled CRON job that runs an RSYNC job to copy the latest files. The initial job takes the longest.



      One thing that is of interest is the credentials needed from the Linux system. I created a maintenance account on the Windows system. Also, if I recall, I had to share the folders I needed to access in one or more of the setups. Accessing the c$ hidden share stopped working at some point during Windows updates and upgrades, and a real share was needed.



      And, after the Windows 7 to 10 upgrade, I remember that I had to search Google like hell for the syntax needed to access the remote system. Ended up finding some fancy NTLM command line switches that you will never guess on your own.



      Have had to tweak several times over the past 5 years for Linux and Windows changes - so don't expect the first settings to last forever.



      W.






      share|improve this answer













      I do this at home and at my in-laws. The basic setup is to do a mount on the Linux system that points to the Windows system. Then, do a scheduled CRON job that runs an RSYNC job to copy the latest files. The initial job takes the longest.



      One thing that is of interest is the credentials needed from the Linux system. I created a maintenance account on the Windows system. Also, if I recall, I had to share the folders I needed to access in one or more of the setups. Accessing the c$ hidden share stopped working at some point during Windows updates and upgrades, and a real share was needed.



      And, after the Windows 7 to 10 upgrade, I remember that I had to search Google like hell for the syntax needed to access the remote system. Ended up finding some fancy NTLM command line switches that you will never guess on your own.



      Have had to tweak several times over the past 5 years for Linux and Windows changes - so don't expect the first settings to last forever.



      W.







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Sep 4 '17 at 1:56









      user2045271user2045271

      11




      11













      • Can you please show us an example rsync statement that you use? I use it a lot and this answer sounds technically correct yet does not contain all the information required to duplicate what you are doing. Also, please show the fancy NTLM stuff, etc. Just mentioning them is great but not all that helpful.

        – SDsolar
        Sep 4 '17 at 2:15











      • Sorry, haven't been here in a while. Alas, he setup died over the summer due to 4 days of bad power during a heatwave. Even with a UPS, the system got fired. Hoping to get a replacement system and also hoping the Harddisks are reuseable.

        – user2045271
        Dec 10 '17 at 15:58











      • Opps - got cut off. As for the fancy NTLM stuff - yes it was a pain. Plus, the Win8.1 to Win10 upgrade broke it. If I recall correctly, my last tweak was to create a new local Windows user with admin privs and use that account. Additionally, I think I had to create a share on the Windows system pointed to their my docs folder, and the permissions were given to only the user I mentioned above. There was one other catch I recall in that the password on the account could not use special chars. So I made it extra long, but with only numbs and letters.

        – user2045271
        Dec 10 '17 at 16:07











      • *** Had to truncate at 350 chars Perhaps my next kick at this will do it in reverse in that I will setup an SMB share on the linux server and then run a scheduled job on the windows system that uses a program I have used in the past. It's called Cobian backup. It's free and has worked for me beautifully. Gets installed as a service and has good compression, scheduling, logging, alerts, and differential options.

        – user2045271
        Dec 10 '17 at 16:08



















      • Can you please show us an example rsync statement that you use? I use it a lot and this answer sounds technically correct yet does not contain all the information required to duplicate what you are doing. Also, please show the fancy NTLM stuff, etc. Just mentioning them is great but not all that helpful.

        – SDsolar
        Sep 4 '17 at 2:15











      • Sorry, haven't been here in a while. Alas, he setup died over the summer due to 4 days of bad power during a heatwave. Even with a UPS, the system got fired. Hoping to get a replacement system and also hoping the Harddisks are reuseable.

        – user2045271
        Dec 10 '17 at 15:58











      • Opps - got cut off. As for the fancy NTLM stuff - yes it was a pain. Plus, the Win8.1 to Win10 upgrade broke it. If I recall correctly, my last tweak was to create a new local Windows user with admin privs and use that account. Additionally, I think I had to create a share on the Windows system pointed to their my docs folder, and the permissions were given to only the user I mentioned above. There was one other catch I recall in that the password on the account could not use special chars. So I made it extra long, but with only numbs and letters.

        – user2045271
        Dec 10 '17 at 16:07











      • *** Had to truncate at 350 chars Perhaps my next kick at this will do it in reverse in that I will setup an SMB share on the linux server and then run a scheduled job on the windows system that uses a program I have used in the past. It's called Cobian backup. It's free and has worked for me beautifully. Gets installed as a service and has good compression, scheduling, logging, alerts, and differential options.

        – user2045271
        Dec 10 '17 at 16:08

















      Can you please show us an example rsync statement that you use? I use it a lot and this answer sounds technically correct yet does not contain all the information required to duplicate what you are doing. Also, please show the fancy NTLM stuff, etc. Just mentioning them is great but not all that helpful.

      – SDsolar
      Sep 4 '17 at 2:15





      Can you please show us an example rsync statement that you use? I use it a lot and this answer sounds technically correct yet does not contain all the information required to duplicate what you are doing. Also, please show the fancy NTLM stuff, etc. Just mentioning them is great but not all that helpful.

      – SDsolar
      Sep 4 '17 at 2:15













      Sorry, haven't been here in a while. Alas, he setup died over the summer due to 4 days of bad power during a heatwave. Even with a UPS, the system got fired. Hoping to get a replacement system and also hoping the Harddisks are reuseable.

      – user2045271
      Dec 10 '17 at 15:58





      Sorry, haven't been here in a while. Alas, he setup died over the summer due to 4 days of bad power during a heatwave. Even with a UPS, the system got fired. Hoping to get a replacement system and also hoping the Harddisks are reuseable.

      – user2045271
      Dec 10 '17 at 15:58













      Opps - got cut off. As for the fancy NTLM stuff - yes it was a pain. Plus, the Win8.1 to Win10 upgrade broke it. If I recall correctly, my last tweak was to create a new local Windows user with admin privs and use that account. Additionally, I think I had to create a share on the Windows system pointed to their my docs folder, and the permissions were given to only the user I mentioned above. There was one other catch I recall in that the password on the account could not use special chars. So I made it extra long, but with only numbs and letters.

      – user2045271
      Dec 10 '17 at 16:07





      Opps - got cut off. As for the fancy NTLM stuff - yes it was a pain. Plus, the Win8.1 to Win10 upgrade broke it. If I recall correctly, my last tweak was to create a new local Windows user with admin privs and use that account. Additionally, I think I had to create a share on the Windows system pointed to their my docs folder, and the permissions were given to only the user I mentioned above. There was one other catch I recall in that the password on the account could not use special chars. So I made it extra long, but with only numbs and letters.

      – user2045271
      Dec 10 '17 at 16:07













      *** Had to truncate at 350 chars Perhaps my next kick at this will do it in reverse in that I will setup an SMB share on the linux server and then run a scheduled job on the windows system that uses a program I have used in the past. It's called Cobian backup. It's free and has worked for me beautifully. Gets installed as a service and has good compression, scheduling, logging, alerts, and differential options.

      – user2045271
      Dec 10 '17 at 16:08





      *** Had to truncate at 350 chars Perhaps my next kick at this will do it in reverse in that I will setup an SMB share on the linux server and then run a scheduled job on the windows system that uses a program I have used in the past. It's called Cobian backup. It's free and has worked for me beautifully. Gets installed as a service and has good compression, scheduling, logging, alerts, and differential options.

      – user2045271
      Dec 10 '17 at 16:08













      0














      Doe you want continuous integration or do you want to control when the sync-ing is done?




      1. In the first case, you can use Syncthing.


      2. In the second case, you can use Unison.



      In both cases, you can control which folders/files are synchronised.



      The set-up for syncthing is a bit more automated. You can turn on/off syncthing to control when synchronisation takes place but it is a bit tricky as you need to control both machines to do this.



      In the case of unison, you need to set up "ssh" access between the two machines which may or may not be a problem depending on firewall configurations and so on.






      share|improve this answer




























        0














        Doe you want continuous integration or do you want to control when the sync-ing is done?




        1. In the first case, you can use Syncthing.


        2. In the second case, you can use Unison.



        In both cases, you can control which folders/files are synchronised.



        The set-up for syncthing is a bit more automated. You can turn on/off syncthing to control when synchronisation takes place but it is a bit tricky as you need to control both machines to do this.



        In the case of unison, you need to set up "ssh" access between the two machines which may or may not be a problem depending on firewall configurations and so on.






        share|improve this answer


























          0












          0








          0







          Doe you want continuous integration or do you want to control when the sync-ing is done?




          1. In the first case, you can use Syncthing.


          2. In the second case, you can use Unison.



          In both cases, you can control which folders/files are synchronised.



          The set-up for syncthing is a bit more automated. You can turn on/off syncthing to control when synchronisation takes place but it is a bit tricky as you need to control both machines to do this.



          In the case of unison, you need to set up "ssh" access between the two machines which may or may not be a problem depending on firewall configurations and so on.






          share|improve this answer













          Doe you want continuous integration or do you want to control when the sync-ing is done?




          1. In the first case, you can use Syncthing.


          2. In the second case, you can use Unison.



          In both cases, you can control which folders/files are synchronised.



          The set-up for syncthing is a bit more automated. You can turn on/off syncthing to control when synchronisation takes place but it is a bit tricky as you need to control both machines to do this.



          In the case of unison, you need to set up "ssh" access between the two machines which may or may not be a problem depending on firewall configurations and so on.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 19 at 4:32









          KapilKapil

          1261




          1261























              0














              Apart from the good solutions provided here, you may also try using windows preinstalled onedrive. Its over the internet as you prefer plus gives you control over what folders/subfolders to sync. And on your linux you can install the onedrive app from software center. And download and sync your files with windows.






              share|improve this answer




























                0














                Apart from the good solutions provided here, you may also try using windows preinstalled onedrive. Its over the internet as you prefer plus gives you control over what folders/subfolders to sync. And on your linux you can install the onedrive app from software center. And download and sync your files with windows.






                share|improve this answer


























                  0












                  0








                  0







                  Apart from the good solutions provided here, you may also try using windows preinstalled onedrive. Its over the internet as you prefer plus gives you control over what folders/subfolders to sync. And on your linux you can install the onedrive app from software center. And download and sync your files with windows.






                  share|improve this answer













                  Apart from the good solutions provided here, you may also try using windows preinstalled onedrive. Its over the internet as you prefer plus gives you control over what folders/subfolders to sync. And on your linux you can install the onedrive app from software center. And download and sync your files with windows.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 20 at 10:23









                  Srajan SoniSrajan Soni

                  2813




                  2813






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Super User!


                      • 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%2fsuperuser.com%2fquestions%2f1246467%2fsyncing-folders-and-files-between-a-windows-and-linux-system%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

                      Сан-Квентин

                      Алькесар

                      Josef Freinademetz