Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Question
In Linux, you have bunch of images under /path/to/images/*.jpg, how do you create a tarball from them called jpegarchive.tar.gz?
Answer
tar -czvf jpegarchive.tar.gz /path/to/images/*.jpg
^^ -c is --create, -z is --gzip, -v is --verbose, -f is --file

Question
In Linux, you have bunch of images under /path/to/images/*.jpg, how do you create a tarball from them called jpegarchive.tar.gz?
Answer
?

Question
In Linux, you have bunch of images under /path/to/images/*.jpg, how do you create a tarball from them called jpegarchive.tar.gz?
Answer
tar -czvf jpegarchive.tar.gz /path/to/images/*.jpg
^^ -c is --create, -z is --gzip, -v is --verbose, -f is --file
If you want to change selection, open document below and click on "Move attachment"

4. Basic Commands
ked together into one, this packed file is called an archive. Usually archives have the extension .tar , which stands for tape archive. To create an archive of a directory, use the tar command: <span>tar -c -f <filename> <directory> Create a directory with a few files in it, and run the tar command to back it up. A file of <filename> will be created. Take careful note of any error messages that tar reports. L

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.