Create a tar archive of backup_dir named backup.tar. (Verify using ls and tar -tf)
Step 1: Create a Tar Archive of backup_dir
bashCopyEdittar -cvf backup.tar backup_dir
c → Create a new archive
v → Verbose mode (shows files being archived)
f → Specifies the filename (backup.tar)
Step 2: Verify the Archive Using ls
bashCopyEd...
cloudcomutingandnetworking.hashnode.dev1 min read