V
V
Vitaly Kazak2021-07-23 13:41:43
linux
Vitaly Kazak, 2021-07-23 13:41:43

How to unpack an archive (without compression) from several parts if there is no space on the HDD on Linux?

There is a VDS on Debian, you need to unzip the backup on it. Backup It weighs 100 GB, it lies on this VDS, in total 120 GB are available on the VDS, i.e. free only 20GB. The backup archive is divided into parts, i.e. backup.tgz, backup.tgz.part1 ... backup.tgz.part950. Archive without compression.
How can it be unzipped?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Adamos, 2021-07-23
@Adamos

Rent another same VDS from the same hoster for a day, put the archive there and mount it into the system, say, via sftp.

J
jcmvbkbc, 2021-07-23
@jcmvbkbc

How can it be unzipped?

I would do something like this:
for f in backup.* ; do cat $f ; rm -f $f ; done | tar -x

A
Armenian Radio, 2021-07-23
@gbg

It can be naturally mounted via archivemount

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question