× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Hello,

Am 20.12.2020 um 17:22 schrieb Patrik Schindler <poc@xxxxxxxxxx>:

I wonder if one can save time and unnecessary network traffic by not writing a file full of zeros, but create a sparse file. Instead of

dd if=/dev/zero of=IMAGE01.ISO bs=1M count=10000

do a

dd if=/dev/zero of=IMAGE01.ISO bs=1M seek=10000 count=0

See https://en.wikipedia.org/wiki/Sparse_file for details.

I did not test if IBM i can cope with sparse files, but I don’t see any reason why it shouldn’t.

Today I finally managed to get image catalogs for save/restore to eventually work on a 7.3 machine.

Using sparse files works like a charm. No needless I/O on the NFS server for allocating Gigabytes of zeros. No extra space being consumed because of needless zeros.

Alternate command to create such an empty file:

truncate -s 30G backup.udf

echo "backup.udf W" > VOLUME_LIST

The "W" is important. Without it, the image catalog will be read-only.

For me, I stick to the already established ftp workflow. The backup server uses jumbo frames, while the E4A isn’t configured for them. So, UDP (NFS) answer packets will be lost in transit and NFS doesn’t work. Mount and un mount work, though.

This is what I've forgotten and rediscovered today. I hereby thank my older self for his help to solve this mystery. ;-)

I did not try if NFS can be forced over TCP in IBM i.

According to the documentation, it's not possible.

In 7.3, the service tools adapter MTU cannot be configured.

No easy way out here.

:wq! PoC




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.