What does it mean 'exit 1' for a job status after rclone sync The Next CEO of Stack OverflowWhat does a “[1]+ Exit 1” response mean?What does “kernel-resident” mean?What does a dot after the file permission bits mean?What does ^Z mean?What does LTR kernel mean?What does “4m[terminated]” mean after restarting CentOS?What does :source % mean?ORTE_ERROR_LOG, what does it mean?What is Linux exit status and list of all statusWhat does the '.' (dot) mean?Job status after ssh session stopped on MobaXterm

Car headlights in a world without electricity

Why did the Drakh emissary look so blurred in S04:E11 "Lines of Communication"?

Read/write a pipe-delimited file line by line with some simple text manipulation

How to show a landlord what we have in savings?

How dangerous is XSS

My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?

Free fall ellipse or parabola?

Physiological effects of huge anime eyes

What day is it again?

Is it possible to make a 9x9 table fit within the default margins?

Traveling with my 5 year old daughter (as the father) without the mother from Germany to Mexico

Can I cast Thunderwave and be at the center of its bottom face, but not be affected by it?

What did the word "leisure" mean in late 18th Century usage?

Compensation for working overtime on Saturdays

Ising model simulation

Is a linearly independent set whose span is dense a Schauder basis?

How do I keep Mac Emacs from trapping M-`?

Upgrading From a 9 Speed Sora Derailleur?

Small nick on power cord from an electric alarm clock, and copper wiring exposed but intact

Why did early computer designers eschew integers?

How exploitable/balanced is this homebrew spell: Spell Permanency?

Find the majority element, which appears more than half the time

Compilation of a 2d array and a 1d array

Horror film about a man brought out of cryogenic suspension without a soul, around 1990



What does it mean 'exit 1' for a job status after rclone sync



The Next CEO of Stack OverflowWhat does a “[1]+ Exit 1” response mean?What does “kernel-resident” mean?What does a dot after the file permission bits mean?What does ^Z mean?What does LTR kernel mean?What does “4m[terminated]” mean after restarting CentOS?What does :source % mean?ORTE_ERROR_LOG, what does it mean?What is Linux exit status and list of all statusWhat does the '.' (dot) mean?Job status after ssh session stopped on MobaXterm










2















I am copying some large datasets to google drive using rclone in Linux on MobaXterm. First, I copy the dataset using;



-cpu:~$ nohup rclone copy /path_to_source/. /path_to_destination &


once copying is completed, I use sync to make sure everything is copied using;



-cpu:~$ nohup rclone sync /path_to_source/. /path_to_destination &


Now when check the job status using;



ps -ef | grep rclone


For one of the jobs, it gives;



[3]+ Exit 1 nohup rclone sync /path_to_source/. /path_to_destination &


I was expecting to see 'Done' instead of 'Exit 1'. What does this mean? Does it mean sync is unsuccessful? If so what would be the reason? There is a similar question here What does a "[1]+ Exit 1" response mean? but it didn't help. thanks










share|improve this question






















  • Possible duplicate of What does a "[1]+ Exit 1" response mean?

    – DopeGhoti
    3 hours ago















2















I am copying some large datasets to google drive using rclone in Linux on MobaXterm. First, I copy the dataset using;



-cpu:~$ nohup rclone copy /path_to_source/. /path_to_destination &


once copying is completed, I use sync to make sure everything is copied using;



-cpu:~$ nohup rclone sync /path_to_source/. /path_to_destination &


Now when check the job status using;



ps -ef | grep rclone


For one of the jobs, it gives;



[3]+ Exit 1 nohup rclone sync /path_to_source/. /path_to_destination &


I was expecting to see 'Done' instead of 'Exit 1'. What does this mean? Does it mean sync is unsuccessful? If so what would be the reason? There is a similar question here What does a "[1]+ Exit 1" response mean? but it didn't help. thanks










share|improve this question






















  • Possible duplicate of What does a "[1]+ Exit 1" response mean?

    – DopeGhoti
    3 hours ago













2












2








2








I am copying some large datasets to google drive using rclone in Linux on MobaXterm. First, I copy the dataset using;



-cpu:~$ nohup rclone copy /path_to_source/. /path_to_destination &


once copying is completed, I use sync to make sure everything is copied using;



-cpu:~$ nohup rclone sync /path_to_source/. /path_to_destination &


Now when check the job status using;



ps -ef | grep rclone


For one of the jobs, it gives;



[3]+ Exit 1 nohup rclone sync /path_to_source/. /path_to_destination &


I was expecting to see 'Done' instead of 'Exit 1'. What does this mean? Does it mean sync is unsuccessful? If so what would be the reason? There is a similar question here What does a "[1]+ Exit 1" response mean? but it didn't help. thanks










share|improve this question














I am copying some large datasets to google drive using rclone in Linux on MobaXterm. First, I copy the dataset using;



-cpu:~$ nohup rclone copy /path_to_source/. /path_to_destination &


once copying is completed, I use sync to make sure everything is copied using;



-cpu:~$ nohup rclone sync /path_to_source/. /path_to_destination &


Now when check the job status using;



ps -ef | grep rclone


For one of the jobs, it gives;



[3]+ Exit 1 nohup rclone sync /path_to_source/. /path_to_destination &


I was expecting to see 'Done' instead of 'Exit 1'. What does this mean? Does it mean sync is unsuccessful? If so what would be the reason? There is a similar question here What does a "[1]+ Exit 1" response mean? but it didn't help. thanks







linux






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 3 hours ago









kutluskutlus

967




967












  • Possible duplicate of What does a "[1]+ Exit 1" response mean?

    – DopeGhoti
    3 hours ago

















  • Possible duplicate of What does a "[1]+ Exit 1" response mean?

    – DopeGhoti
    3 hours ago
















Possible duplicate of What does a "[1]+ Exit 1" response mean?

– DopeGhoti
3 hours ago





Possible duplicate of What does a "[1]+ Exit 1" response mean?

– DopeGhoti
3 hours ago










2 Answers
2






active

oldest

votes


















3














The Exit 1 means your command resulted in exit code 1.



The exit code comes from either the nohup command, or the rclone sync command.
The former will usually create exit codes with very high values on any errors, so it's probably from the latter.



If the nohup command worked, it will probably have created a nohup.out file in the directory you ran the command in. It contains any output the rclone sync command may have created, so if that file exists, reading it will probably solve the mystery.



The documentation page of rclone has a paragraph titled List of exit codes almost at the end of the page:



List of exit codes

0 - success
1 - Syntax or usage error
2 - Error not otherwise categorised
3 - Directory not found
4 - File not found
5 - Temporary error (one that more retries might fix) (Retry errors)
6 - Less serious errors (like 461 errors from dropbox) (NoRetry errors)
7 - Fatal error (one that more retries won’t fix, like account suspended) (Fatal errors)
8 - Transfer exceeded - limit set by --max-transfer reached





share|improve this answer























  • thank you, it helped!

    – kutlus
    2 hours ago


















3














The answer to which you linked does answer your question exactly. Exit 1 means that your backgrounded job completed, but threw a nonzero exit code (in this case, 1) which usually indicates some sort of error condition. You will see Done when the job's exit code is zero:



$ sleep 4 &
[1] 98565
$ # Wait a few seconds, and press Enter..
[1]+ Done sleep 4
$ ( sleep 4; exit 44 ) &
[1] 98613
$ # Wait a few seconds, and press Enter..
[1]+ Exit 44 ( sleep 4; exit 44 )





share|improve this answer























  • Thank you, this answer was also helpful and I have voted for you.

    – kutlus
    2 hours ago











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%2f509942%2fwhat-does-it-mean-exit-1-for-a-job-status-after-rclone-sync%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














The Exit 1 means your command resulted in exit code 1.



The exit code comes from either the nohup command, or the rclone sync command.
The former will usually create exit codes with very high values on any errors, so it's probably from the latter.



If the nohup command worked, it will probably have created a nohup.out file in the directory you ran the command in. It contains any output the rclone sync command may have created, so if that file exists, reading it will probably solve the mystery.



The documentation page of rclone has a paragraph titled List of exit codes almost at the end of the page:



List of exit codes

0 - success
1 - Syntax or usage error
2 - Error not otherwise categorised
3 - Directory not found
4 - File not found
5 - Temporary error (one that more retries might fix) (Retry errors)
6 - Less serious errors (like 461 errors from dropbox) (NoRetry errors)
7 - Fatal error (one that more retries won’t fix, like account suspended) (Fatal errors)
8 - Transfer exceeded - limit set by --max-transfer reached





share|improve this answer























  • thank you, it helped!

    – kutlus
    2 hours ago















3














The Exit 1 means your command resulted in exit code 1.



The exit code comes from either the nohup command, or the rclone sync command.
The former will usually create exit codes with very high values on any errors, so it's probably from the latter.



If the nohup command worked, it will probably have created a nohup.out file in the directory you ran the command in. It contains any output the rclone sync command may have created, so if that file exists, reading it will probably solve the mystery.



The documentation page of rclone has a paragraph titled List of exit codes almost at the end of the page:



List of exit codes

0 - success
1 - Syntax or usage error
2 - Error not otherwise categorised
3 - Directory not found
4 - File not found
5 - Temporary error (one that more retries might fix) (Retry errors)
6 - Less serious errors (like 461 errors from dropbox) (NoRetry errors)
7 - Fatal error (one that more retries won’t fix, like account suspended) (Fatal errors)
8 - Transfer exceeded - limit set by --max-transfer reached





share|improve this answer























  • thank you, it helped!

    – kutlus
    2 hours ago













3












3








3







The Exit 1 means your command resulted in exit code 1.



The exit code comes from either the nohup command, or the rclone sync command.
The former will usually create exit codes with very high values on any errors, so it's probably from the latter.



If the nohup command worked, it will probably have created a nohup.out file in the directory you ran the command in. It contains any output the rclone sync command may have created, so if that file exists, reading it will probably solve the mystery.



The documentation page of rclone has a paragraph titled List of exit codes almost at the end of the page:



List of exit codes

0 - success
1 - Syntax or usage error
2 - Error not otherwise categorised
3 - Directory not found
4 - File not found
5 - Temporary error (one that more retries might fix) (Retry errors)
6 - Less serious errors (like 461 errors from dropbox) (NoRetry errors)
7 - Fatal error (one that more retries won’t fix, like account suspended) (Fatal errors)
8 - Transfer exceeded - limit set by --max-transfer reached





share|improve this answer













The Exit 1 means your command resulted in exit code 1.



The exit code comes from either the nohup command, or the rclone sync command.
The former will usually create exit codes with very high values on any errors, so it's probably from the latter.



If the nohup command worked, it will probably have created a nohup.out file in the directory you ran the command in. It contains any output the rclone sync command may have created, so if that file exists, reading it will probably solve the mystery.



The documentation page of rclone has a paragraph titled List of exit codes almost at the end of the page:



List of exit codes

0 - success
1 - Syntax or usage error
2 - Error not otherwise categorised
3 - Directory not found
4 - File not found
5 - Temporary error (one that more retries might fix) (Retry errors)
6 - Less serious errors (like 461 errors from dropbox) (NoRetry errors)
7 - Fatal error (one that more retries won’t fix, like account suspended) (Fatal errors)
8 - Transfer exceeded - limit set by --max-transfer reached






share|improve this answer












share|improve this answer



share|improve this answer










answered 2 hours ago









telcoMtelcoM

20.3k12451




20.3k12451












  • thank you, it helped!

    – kutlus
    2 hours ago

















  • thank you, it helped!

    – kutlus
    2 hours ago
















thank you, it helped!

– kutlus
2 hours ago





thank you, it helped!

– kutlus
2 hours ago













3














The answer to which you linked does answer your question exactly. Exit 1 means that your backgrounded job completed, but threw a nonzero exit code (in this case, 1) which usually indicates some sort of error condition. You will see Done when the job's exit code is zero:



$ sleep 4 &
[1] 98565
$ # Wait a few seconds, and press Enter..
[1]+ Done sleep 4
$ ( sleep 4; exit 44 ) &
[1] 98613
$ # Wait a few seconds, and press Enter..
[1]+ Exit 44 ( sleep 4; exit 44 )





share|improve this answer























  • Thank you, this answer was also helpful and I have voted for you.

    – kutlus
    2 hours ago















3














The answer to which you linked does answer your question exactly. Exit 1 means that your backgrounded job completed, but threw a nonzero exit code (in this case, 1) which usually indicates some sort of error condition. You will see Done when the job's exit code is zero:



$ sleep 4 &
[1] 98565
$ # Wait a few seconds, and press Enter..
[1]+ Done sleep 4
$ ( sleep 4; exit 44 ) &
[1] 98613
$ # Wait a few seconds, and press Enter..
[1]+ Exit 44 ( sleep 4; exit 44 )





share|improve this answer























  • Thank you, this answer was also helpful and I have voted for you.

    – kutlus
    2 hours ago













3












3








3







The answer to which you linked does answer your question exactly. Exit 1 means that your backgrounded job completed, but threw a nonzero exit code (in this case, 1) which usually indicates some sort of error condition. You will see Done when the job's exit code is zero:



$ sleep 4 &
[1] 98565
$ # Wait a few seconds, and press Enter..
[1]+ Done sleep 4
$ ( sleep 4; exit 44 ) &
[1] 98613
$ # Wait a few seconds, and press Enter..
[1]+ Exit 44 ( sleep 4; exit 44 )





share|improve this answer













The answer to which you linked does answer your question exactly. Exit 1 means that your backgrounded job completed, but threw a nonzero exit code (in this case, 1) which usually indicates some sort of error condition. You will see Done when the job's exit code is zero:



$ sleep 4 &
[1] 98565
$ # Wait a few seconds, and press Enter..
[1]+ Done sleep 4
$ ( sleep 4; exit 44 ) &
[1] 98613
$ # Wait a few seconds, and press Enter..
[1]+ Exit 44 ( sleep 4; exit 44 )






share|improve this answer












share|improve this answer



share|improve this answer










answered 3 hours ago









DopeGhotiDopeGhoti

46.8k56190




46.8k56190












  • Thank you, this answer was also helpful and I have voted for you.

    – kutlus
    2 hours ago

















  • Thank you, this answer was also helpful and I have voted for you.

    – kutlus
    2 hours ago
















Thank you, this answer was also helpful and I have voted for you.

– kutlus
2 hours ago





Thank you, this answer was also helpful and I have voted for you.

– kutlus
2 hours ago

















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%2f509942%2fwhat-does-it-mean-exit-1-for-a-job-status-after-rclone-sync%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

Oświęcim Innehåll Historia | Källor | Externa länkar | Navigeringsmeny50°2′18″N 19°13′17″Ö / 50.03833°N 19.22139°Ö / 50.03833; 19.2213950°2′18″N 19°13′17″Ö / 50.03833°N 19.22139°Ö / 50.03833; 19.221393089658Nordisk familjebok, AuschwitzInsidan tro och existensJewish Community i OświęcimAuschwitz Jewish Center: MuseumAuschwitz Jewish Center

Valle di Casies Indice Geografia fisica | Origini del nome | Storia | Società | Amministrazione | Sport | Note | Bibliografia | Voci correlate | Altri progetti | Collegamenti esterni | Menu di navigazione46°46′N 12°11′E / 46.766667°N 12.183333°E46.766667; 12.183333 (Valle di Casies)46°46′N 12°11′E / 46.766667°N 12.183333°E46.766667; 12.183333 (Valle di Casies)Sito istituzionaleAstat Censimento della popolazione 2011 - Determinazione della consistenza dei tre gruppi linguistici della Provincia Autonoma di Bolzano-Alto Adige - giugno 2012Numeri e fattiValle di CasiesDato IstatTabella dei gradi/giorno dei Comuni italiani raggruppati per Regione e Provincia26 agosto 1993, n. 412Heraldry of the World: GsiesStatistiche I.StatValCasies.comWikimedia CommonsWikimedia CommonsValle di CasiesSito ufficialeValle di CasiesMM14870458910042978-6

Typsetting diagram chases (with TikZ?) Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to define the default vertical distance between nodes?Draw edge on arcNumerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to place nodes in an absolute coordinate system in tikzCommutative diagram with curve connecting between nodesTikz with standalone: pinning tikz coordinates to page cmDrawing a Decision Diagram with Tikz and layout manager