Re: problem while moving HOME from FreeBSD to MacOS with bsdtar

From: Olivier <Olivier.Nicole_at_cs.ait.ac.th>
Date: Thu, 09 Mar 2023 09:51:11 UTC
> $  touch Homework HOMEWORK
> $ ls -li | grep -i homework
> 33069549 -rw-r--r--  1 pho  wheel         0  9 Mar 10:30 Homework
> $ ls -l homework HOMEWORK
> -rw-r--r--  1 pho  wheel  0  9 Mar 10:30 HOMEWORK
> -rw-r--r--  1 pho  wheel  0  9 Mar 10:30 homework
> $ ls -li homework HOMEWORK
> 33069549 -rw-r--r--  1 pho  wheel  0  9 Mar 10:30 HOMEWORK
> 33069549 -rw-r--r--  1 pho  wheel  0  9 Mar 10:30 homework

If I read that correctly, 33069549 is the inode, both files have the
same inode? Is that on a Mac? On FreeBSD, both files would be created
with a different inode unless maybe one has some file deduplication
enabled at the filesystem level:

$ touch Homework HOMEWORK
$ ls -li | grep -i homework
344941451 -rw-r--r--   1 on    csimstaff            0 Mar  9 16:50 HOMEWORK
344941448 -rw-r--r--   1 on    csimstaff            0 Mar  9 16:50 Homework
$ 

Bests,

Olivier