Skip to main content

All Questions

Tagged with
0 votes
0 answers
16 views

How create Makeself self executable archive file in LINUX? What is the steps to create Makeself self executable file in any Operating System? [duplicate]

I want to create a self-executable archive using Makeself. I referred to makeself.io but didn't understand anything from it. What are the steps for making a Makeself self-executable archive? If I run ...
Palashpannase's user avatar
0 votes
1 answer
2k views

How create Makeself self executable archive file in LINUX?

I want to create a self-executable archive using Makeself. I referred to makeself.io but didn't understand anything from it. What are the steps for making a Makeself self-executable archive?
Omkar's user avatar
  • 101
2 votes
1 answer
594 views

Unable to create a *.gz archieve

Trying to create a .gz archive - my_gz.gz - and add multiple files to it: $ gzip my_gz.gz file1.txt file12.txt gzip: can't stat: my_gz.gz: No such file or directory
Ivanari's user avatar
  • 121
1 vote
2 answers
439 views

gunzip multiple archives to specific folder

is there possibility to gunzip multiple files into one folder? I have alot of access logs which I need to exctract do folder. There placed in /var/log/nginx/ and they are named like access.log.2.gz ...
Delirium's user avatar
  • 113
0 votes
1 answer
1k views

Target directory structure for tar different than original directory structure

Is there any way to set a different target directory structure than the orignial directory structure the tar archive was created from without creating it by hand? For example, I have many files in a ...
Jeff Hall's user avatar
  • 135
3 votes
2 answers
338 views

Splitting tar archives and uploading them one at a time

I want to backup my systems to split tar archives with a script uploading them one by one. It has to create the split archive and then run a script. The script uploads the part and deletes it. This is ...
John Tate's user avatar
  • 131
1 vote
3 answers
400 views

Listing files, including archive contents

Is there some method to find, from the shell, all files matching a file pattern including those inside archives (specifically: zip archives)? The simulation package "VASP" produces files called "...
kdb's user avatar
  • 2,362
1 vote
1 answer
2k views

Find a list of files from text file in subdirectories and put into tarball?

I have a list of files I need to tar. Typically, I would use tar -cvf allfiles.tar -T mylist.txt But I discovered that the files I need are scattered into subdirectories and my list only has the ...
Steve's user avatar
  • 527
4 votes
2 answers
2k views

How to print dir tree of a 7zip archive?

Before extract archive.7z, I always check what in side: $ 7z l archive.7z ...SKIP... 2010-01-01 00:00:00 ..... 25856 7367 jsloader/resource/gre/modules/source-editor-textarea.jsm ...
kev's user avatar
  • 12.9k
2 votes
2 answers
6k views

tar: extract myfile.tar.gz archive to a directory named myfile

Can it be done with tar? Do I have to write a bash script?
luca's user avatar
  • 1,773
15 votes
5 answers
6k views

Map "untar" to tar xvfz?

How can I map 'untar' as a command to 'tar -xvfz' ? Sorry, but I almost always forget the arguments necessary to 'tar' for this operation.
meder omuraliev's user avatar