See contents of .tar.gz while it is being created
I am making a very large tar.gz file and I want to see how much is already in the file while it currently being created. To measure its progress. Just want to know the amount of files and maybe also the names.
Is that possible and most important safely by doing one of the various methods described in How can I view the contents of tar.gz file without extracting from the command-line? ?
I am also creating this archive by a complex command that lists all the file locations and pipe this to tar. Like so
complex command | tar czf archive.tag.gz -C /root/folder/ . -T -
tar
New contributor
add a comment |
I am making a very large tar.gz file and I want to see how much is already in the file while it currently being created. To measure its progress. Just want to know the amount of files and maybe also the names.
Is that possible and most important safely by doing one of the various methods described in How can I view the contents of tar.gz file without extracting from the command-line? ?
I am also creating this archive by a complex command that lists all the file locations and pipe this to tar. Like so
complex command | tar czf archive.tag.gz -C /root/folder/ . -T -
tar
New contributor
1
Replace tar czf by tar czvf? (Not sure of order. I always use zcvf)
– Rusi
yesterday
Tar process is already running, but that would have been a better idea.
– Hielke Walinga
yesterday
O you can do tar ztvf ‹file› to an incomplete tar file. It will show whatever it can and then error out
– Rusi
yesterday
Okay thanks, it worked.
– Hielke Walinga
yesterday
add a comment |
I am making a very large tar.gz file and I want to see how much is already in the file while it currently being created. To measure its progress. Just want to know the amount of files and maybe also the names.
Is that possible and most important safely by doing one of the various methods described in How can I view the contents of tar.gz file without extracting from the command-line? ?
I am also creating this archive by a complex command that lists all the file locations and pipe this to tar. Like so
complex command | tar czf archive.tag.gz -C /root/folder/ . -T -
tar
New contributor
I am making a very large tar.gz file and I want to see how much is already in the file while it currently being created. To measure its progress. Just want to know the amount of files and maybe also the names.
Is that possible and most important safely by doing one of the various methods described in How can I view the contents of tar.gz file without extracting from the command-line? ?
I am also creating this archive by a complex command that lists all the file locations and pipe this to tar. Like so
complex command | tar czf archive.tag.gz -C /root/folder/ . -T -
tar
tar
New contributor
New contributor
New contributor
asked yesterday
Hielke WalingaHielke Walinga
1013
1013
New contributor
New contributor
1
Replace tar czf by tar czvf? (Not sure of order. I always use zcvf)
– Rusi
yesterday
Tar process is already running, but that would have been a better idea.
– Hielke Walinga
yesterday
O you can do tar ztvf ‹file› to an incomplete tar file. It will show whatever it can and then error out
– Rusi
yesterday
Okay thanks, it worked.
– Hielke Walinga
yesterday
add a comment |
1
Replace tar czf by tar czvf? (Not sure of order. I always use zcvf)
– Rusi
yesterday
Tar process is already running, but that would have been a better idea.
– Hielke Walinga
yesterday
O you can do tar ztvf ‹file› to an incomplete tar file. It will show whatever it can and then error out
– Rusi
yesterday
Okay thanks, it worked.
– Hielke Walinga
yesterday
1
1
Replace tar czf by tar czvf? (Not sure of order. I always use zcvf)
– Rusi
yesterday
Replace tar czf by tar czvf? (Not sure of order. I always use zcvf)
– Rusi
yesterday
Tar process is already running, but that would have been a better idea.
– Hielke Walinga
yesterday
Tar process is already running, but that would have been a better idea.
– Hielke Walinga
yesterday
O you can do tar ztvf ‹file› to an incomplete tar file. It will show whatever it can and then error out
– Rusi
yesterday
O you can do tar ztvf ‹file› to an incomplete tar file. It will show whatever it can and then error out
– Rusi
yesterday
Okay thanks, it worked.
– Hielke Walinga
yesterday
Okay thanks, it worked.
– Hielke Walinga
yesterday
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
Hielke Walinga is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1123533%2fsee-contents-of-tar-gz-while-it-is-being-created%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Hielke Walinga is a new contributor. Be nice, and check out our Code of Conduct.
Hielke Walinga is a new contributor. Be nice, and check out our Code of Conduct.
Hielke Walinga is a new contributor. Be nice, and check out our Code of Conduct.
Hielke Walinga is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1123533%2fsee-contents-of-tar-gz-while-it-is-being-created%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
Replace tar czf by tar czvf? (Not sure of order. I always use zcvf)
– Rusi
yesterday
Tar process is already running, but that would have been a better idea.
– Hielke Walinga
yesterday
O you can do tar ztvf ‹file› to an incomplete tar file. It will show whatever it can and then error out
– Rusi
yesterday
Okay thanks, it worked.
– Hielke Walinga
yesterday