How to create tar archive file in linux
The below command will create a tar archive file whatevername_yougive.tar for a directory /path/of/directory/to/archive in current working directory. See the example below. tar cvf whatevername_yougive.tar /path/of/directory/to/archive The options detail are…