You archived your users’ directories into a file called backup.tar.gz. You then view the archive and see the filenames follow this convention:
home/username/somefile
How will you extract just the files for the user called fred?
- tar –tzf /home/fred < backup.tar.gz
- tar –tjf backup.tar.gz /home/fred
- tar –xjf backup.tar.gz home/fred/
- tar –xzf backup.tar.gz home/fred/
- tar –xzf backup.tar.gz fred
Please login or Register to submit your answer