Search found 33 matches

by Skyblue
Mon Mar 03, 2025 11:02 am
Forum: wimlib discussion
Topic: Not honoring directory hard link message
Replies: 10
Views: 285052

Re: Not honoring directory hard link message

Hello synchronicity,

All the files in /mnt/backup are hard-linked. The snapshot technique :

https://digitalis.io/blog/linux/incremental-backups-with-rsync-and-hard-links/

Output of the find command :

[root@testpc26 ~]# find /mnt/backup -inum 263330
/mnt/backup/archive0/etc/ssl/certs
/mnt ...
by Skyblue
Fri Feb 28, 2025 2:15 pm
Forum: wimlib discussion
Topic: Not honoring directory hard link message
Replies: 10
Views: 285052

Re: Not honoring directory hard link message

Attached is the complete log file.
by Skyblue
Fri Feb 28, 2025 2:11 pm
Forum: wimlib discussion
Topic: Not honoring directory hard link message
Replies: 10
Views: 285052

Re: Not honoring directory hard link message

Hello synchronicity,

A quick correction, the operating system is Oracle Linux 8.10

Here are the results.

Creating the test environment :

[root@testpc26 ~]# rsync -aAXHv / --delete --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} /mnt/backup/archive0 ...
by Skyblue
Thu Feb 27, 2025 6:35 pm
Forum: wimlib discussion
Topic: Not honoring directory hard link message
Replies: 10
Views: 285052

Re: Not honoring directory hard link message

Hi synchronicity,

No any bind mounts. The well known configuration :

Code: Select all

mount /dev/nvme0n1p6 /mnt/backup
by Skyblue
Thu Feb 27, 2025 6:33 am
Forum: wimlib discussion
Topic: Not honoring directory hard link message
Replies: 10
Views: 285052

Re: Not honoring directory hard link message

Hi synchronicity,

The file system is the traditional ext4 :

[root@testpc26 ~]# mount | grep nvme0n1
/dev/nvme0n1p3 on / type ext4 (rw,relatime)
/dev/nvme0n1p2 on /boot type ext4 (rw,relatime)
/dev/nvme0n1p4 on /home type ext4 (rw,relatime)
/dev/nvme0n1p1 on /boot/efi type vfat (rw,relatime,fmask ...
by Skyblue
Wed Feb 26, 2025 1:36 pm
Forum: wimlib discussion
Topic: wimlib incorrectly working with Windows 11 24H2
Replies: 4
Views: 99588

Re: wimlib incorrectly working with Windows 11 24H2

Hi Zed45,

At work, I am imaging Windows 11 2024 H2 systems with wimlib 1.14. All of them are passing the stage Sysprep. No any issues. Do you use any unattend.XML file? Is that file correct?
by Skyblue
Wed Feb 26, 2025 1:31 pm
Forum: wimlib discussion
Topic: Not honoring directory hard link message
Replies: 10
Views: 285052

Not honoring directory hard link message

Hello,

Archiving a directory holding the rsync snapshot of the operating system with wimlib 1.14 is reporting a lot of "Not honoring directory hard link" messages. Is there a way to fix this issue?

[root@testpc26 ~]# wimcapture --unix-data /mnt/backup temp4.wim --compress=fast --threads=1024 ...
by Skyblue
Sat Apr 20, 2024 7:31 pm
Forum: wimlib discussion
Topic: 'RENAME_NOREPLACE' undeclared
Replies: 3
Views: 106584

Re: 'RENAME_NOREPLACE' undeclared

Hi synchronicity,

Thanks for your suggestions, I managed to build the RPM packages.

The problem with the gcc compiler suit is that the standart installation of the development tools is offering an old version :

[root@localhost ~]# gcc --version | grep gcc
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5 ...
by Skyblue
Fri Apr 19, 2024 8:15 am
Forum: wimlib discussion
Topic: 'RENAME_NOREPLACE' undeclared
Replies: 3
Views: 106584

Re: 'RENAME_NOREPLACE' undeclared

Hello,

Here, I found some equates :

https://kernel.googlesource.com/pub/scm/linux/kernel/git/zwisler/xfstests-dev/+/refs/heads/master/src/renameat2.c

#ifndef RENAME_NOREPLACE
#define RENAME_NOREPLACE (1 << 0) /* Don't overwrite target */
#endif
#ifndef RENAME_EXCHANGE
#define RENAME_EXCHANGE (1 ...
by Skyblue
Fri Apr 19, 2024 6:31 am
Forum: wimlib discussion
Topic: 'RENAME_NOREPLACE' undeclared
Replies: 3
Views: 106584

'RENAME_NOREPLACE' undeclared

Hello,

Trying to compile the source code of wimlib v1.14.4 on CentOS 7.9, I receive the following error messages :

src/mount_image.c: In function 'wimfs_rename':
src/mount_image.c:1872:14: error: 'RENAME_EXCHANGE' undeclared (first use in this function)
if (flags & RENAME_EXCHANGE)
^
src/mount ...