pause during copying files with rclone on linux

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0















I am copying some files from google drive to my remote using rclone in Linux. It has been an hour or so it looks like this on the terminal;



enter image description here



In average the copy time is much less than an hour for similar folders in the drive. I understand that it found duplicates but I don`t know why it just stays like this? Is it still copying? or is this mean something different?










share|improve this question


























    0















    I am copying some files from google drive to my remote using rclone in Linux. It has been an hour or so it looks like this on the terminal;



    enter image description here



    In average the copy time is much less than an hour for similar folders in the drive. I understand that it found duplicates but I don`t know why it just stays like this? Is it still copying? or is this mean something different?










    share|improve this question
























      0












      0








      0








      I am copying some files from google drive to my remote using rclone in Linux. It has been an hour or so it looks like this on the terminal;



      enter image description here



      In average the copy time is much less than an hour for similar folders in the drive. I understand that it found duplicates but I don`t know why it just stays like this? Is it still copying? or is this mean something different?










      share|improve this question














      I am copying some files from google drive to my remote using rclone in Linux. It has been an hour or so it looks like this on the terminal;



      enter image description here



      In average the copy time is much less than an hour for similar folders in the drive. I understand that it found duplicates but I don`t know why it just stays like this? Is it still copying? or is this mean something different?







      linux






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 29 at 20:51









      kutluskutlus

      686




      686




















          1 Answer
          1






          active

          oldest

          votes


















          1














          If you haven't told it to output progress information or verbosely report what files have been copied, between the duplicates that it feels the need to report, it doesn't have anything to say.



          It's copying things over a network, so there will be some tiny pauses now and then, but they shouldn't be for very long - just like sometimes when you're loading a web page, it'll take a little longer than others.



          If you want to make sure it's still doing stuff and you don't want to stop it to restart it with a -v option, you can open another terminal window and run top. That should show how much CPU and memory it's taking up, and as time passes, you should be seeing that the total amount of CPU time it's used is going up.



          Another way to see that it's doing stuff is to install and run iotop. It does much the same thing as top, except that it's looking at how much activity is going on with your storage devices and network devices. Unlike top, iotop requires root or NET_ADMIN privileges to run because the network input and output operations of processes are only measurable by root, and most if not all storage I/O is only viewable by the process owner and root. The current code does not even bother to show the subset it can without the needed privilege.



          That should be enough. I hope that was enough.






          share|improve this answer

























          • This was very helpful, thank you!

            – kutlus
            Jan 30 at 4:04











          • Your question was helpful to me, too. 1. It reminded me I'd forgotten to install a key system monitoring tool that is really hard to install when it's most needed. Admittedly, I haven't had much need since moving to a SSD system, but it still feels better to have on hand. 2. I find it amazing how much I learn while double-checking answers that I thought I knew well enough, but just wanted to be sure before I said anything in a public, online place... In this case, that was all about stuff to not recommend, but still...

            – Ed Grimm
            Jan 30 at 4:50










          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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%2funix.stackexchange.com%2fquestions%2f497550%2fpause-during-copying-files-with-rclone-on-linux%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














          If you haven't told it to output progress information or verbosely report what files have been copied, between the duplicates that it feels the need to report, it doesn't have anything to say.



          It's copying things over a network, so there will be some tiny pauses now and then, but they shouldn't be for very long - just like sometimes when you're loading a web page, it'll take a little longer than others.



          If you want to make sure it's still doing stuff and you don't want to stop it to restart it with a -v option, you can open another terminal window and run top. That should show how much CPU and memory it's taking up, and as time passes, you should be seeing that the total amount of CPU time it's used is going up.



          Another way to see that it's doing stuff is to install and run iotop. It does much the same thing as top, except that it's looking at how much activity is going on with your storage devices and network devices. Unlike top, iotop requires root or NET_ADMIN privileges to run because the network input and output operations of processes are only measurable by root, and most if not all storage I/O is only viewable by the process owner and root. The current code does not even bother to show the subset it can without the needed privilege.



          That should be enough. I hope that was enough.






          share|improve this answer

























          • This was very helpful, thank you!

            – kutlus
            Jan 30 at 4:04











          • Your question was helpful to me, too. 1. It reminded me I'd forgotten to install a key system monitoring tool that is really hard to install when it's most needed. Admittedly, I haven't had much need since moving to a SSD system, but it still feels better to have on hand. 2. I find it amazing how much I learn while double-checking answers that I thought I knew well enough, but just wanted to be sure before I said anything in a public, online place... In this case, that was all about stuff to not recommend, but still...

            – Ed Grimm
            Jan 30 at 4:50















          1














          If you haven't told it to output progress information or verbosely report what files have been copied, between the duplicates that it feels the need to report, it doesn't have anything to say.



          It's copying things over a network, so there will be some tiny pauses now and then, but they shouldn't be for very long - just like sometimes when you're loading a web page, it'll take a little longer than others.



          If you want to make sure it's still doing stuff and you don't want to stop it to restart it with a -v option, you can open another terminal window and run top. That should show how much CPU and memory it's taking up, and as time passes, you should be seeing that the total amount of CPU time it's used is going up.



          Another way to see that it's doing stuff is to install and run iotop. It does much the same thing as top, except that it's looking at how much activity is going on with your storage devices and network devices. Unlike top, iotop requires root or NET_ADMIN privileges to run because the network input and output operations of processes are only measurable by root, and most if not all storage I/O is only viewable by the process owner and root. The current code does not even bother to show the subset it can without the needed privilege.



          That should be enough. I hope that was enough.






          share|improve this answer

























          • This was very helpful, thank you!

            – kutlus
            Jan 30 at 4:04











          • Your question was helpful to me, too. 1. It reminded me I'd forgotten to install a key system monitoring tool that is really hard to install when it's most needed. Admittedly, I haven't had much need since moving to a SSD system, but it still feels better to have on hand. 2. I find it amazing how much I learn while double-checking answers that I thought I knew well enough, but just wanted to be sure before I said anything in a public, online place... In this case, that was all about stuff to not recommend, but still...

            – Ed Grimm
            Jan 30 at 4:50













          1












          1








          1







          If you haven't told it to output progress information or verbosely report what files have been copied, between the duplicates that it feels the need to report, it doesn't have anything to say.



          It's copying things over a network, so there will be some tiny pauses now and then, but they shouldn't be for very long - just like sometimes when you're loading a web page, it'll take a little longer than others.



          If you want to make sure it's still doing stuff and you don't want to stop it to restart it with a -v option, you can open another terminal window and run top. That should show how much CPU and memory it's taking up, and as time passes, you should be seeing that the total amount of CPU time it's used is going up.



          Another way to see that it's doing stuff is to install and run iotop. It does much the same thing as top, except that it's looking at how much activity is going on with your storage devices and network devices. Unlike top, iotop requires root or NET_ADMIN privileges to run because the network input and output operations of processes are only measurable by root, and most if not all storage I/O is only viewable by the process owner and root. The current code does not even bother to show the subset it can without the needed privilege.



          That should be enough. I hope that was enough.






          share|improve this answer















          If you haven't told it to output progress information or verbosely report what files have been copied, between the duplicates that it feels the need to report, it doesn't have anything to say.



          It's copying things over a network, so there will be some tiny pauses now and then, but they shouldn't be for very long - just like sometimes when you're loading a web page, it'll take a little longer than others.



          If you want to make sure it's still doing stuff and you don't want to stop it to restart it with a -v option, you can open another terminal window and run top. That should show how much CPU and memory it's taking up, and as time passes, you should be seeing that the total amount of CPU time it's used is going up.



          Another way to see that it's doing stuff is to install and run iotop. It does much the same thing as top, except that it's looking at how much activity is going on with your storage devices and network devices. Unlike top, iotop requires root or NET_ADMIN privileges to run because the network input and output operations of processes are only measurable by root, and most if not all storage I/O is only viewable by the process owner and root. The current code does not even bother to show the subset it can without the needed privilege.



          That should be enough. I hope that was enough.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 30 at 3:56

























          answered Jan 30 at 3:04









          Ed GrimmEd Grimm

          3486




          3486












          • This was very helpful, thank you!

            – kutlus
            Jan 30 at 4:04











          • Your question was helpful to me, too. 1. It reminded me I'd forgotten to install a key system monitoring tool that is really hard to install when it's most needed. Admittedly, I haven't had much need since moving to a SSD system, but it still feels better to have on hand. 2. I find it amazing how much I learn while double-checking answers that I thought I knew well enough, but just wanted to be sure before I said anything in a public, online place... In this case, that was all about stuff to not recommend, but still...

            – Ed Grimm
            Jan 30 at 4:50

















          • This was very helpful, thank you!

            – kutlus
            Jan 30 at 4:04











          • Your question was helpful to me, too. 1. It reminded me I'd forgotten to install a key system monitoring tool that is really hard to install when it's most needed. Admittedly, I haven't had much need since moving to a SSD system, but it still feels better to have on hand. 2. I find it amazing how much I learn while double-checking answers that I thought I knew well enough, but just wanted to be sure before I said anything in a public, online place... In this case, that was all about stuff to not recommend, but still...

            – Ed Grimm
            Jan 30 at 4:50
















          This was very helpful, thank you!

          – kutlus
          Jan 30 at 4:04





          This was very helpful, thank you!

          – kutlus
          Jan 30 at 4:04













          Your question was helpful to me, too. 1. It reminded me I'd forgotten to install a key system monitoring tool that is really hard to install when it's most needed. Admittedly, I haven't had much need since moving to a SSD system, but it still feels better to have on hand. 2. I find it amazing how much I learn while double-checking answers that I thought I knew well enough, but just wanted to be sure before I said anything in a public, online place... In this case, that was all about stuff to not recommend, but still...

          – Ed Grimm
          Jan 30 at 4:50





          Your question was helpful to me, too. 1. It reminded me I'd forgotten to install a key system monitoring tool that is really hard to install when it's most needed. Admittedly, I haven't had much need since moving to a SSD system, but it still feels better to have on hand. 2. I find it amazing how much I learn while double-checking answers that I thought I knew well enough, but just wanted to be sure before I said anything in a public, online place... In this case, that was all about stuff to not recommend, but still...

          – Ed Grimm
          Jan 30 at 4:50

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • 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%2funix.stackexchange.com%2fquestions%2f497550%2fpause-during-copying-files-with-rclone-on-linux%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 check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay