Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How can I get cdbkup to archive more than one filesystem?

archive filesystem
0
Posted

How can I get cdbkup to archive more than one filesystem?

0

This is a common request since many people have /home and /usr on separate partitions from the root partition, or other similar setups. By default, cdbkup skips over directories that reside on other filesystems. The –cross-mp (-m) option tells cdbkup to include these mount points as though they were plain subdirectories. See cdbkup (1) for more details. How do I restore individual files from a backup? This is easy to do, but not very efficient, since the archives are in tar format, and usually compressed. To restore /etc/file1 and /root/file2 into the directory /tmp/restore, use the following: mkdir -p /tmp/restore cd /tmp/restore cdcat | tar xvfz – ./etc/file1 ./root/file2 This assumes that gzip compression was used. Otherwise, change the tar options to xvfj (for bzip2 compression) or xvf (for no compression). How does cdbkup keep track of dump levels cdbkup uses GNU tar’s incremental backup facility in order to implement backup levels. It does this by storing .snar files for each ba

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123