On Tue, 31 Mar 2020 at 10:14, nus1998 <[email protected]> wrote: > Well, Ubuntu doesn't tell any difference between a normal file and a hard > link file on gui file explore, verified by "ls -i". > thanks<br/><br/>B.R.<br/>Nus
Right. You'll need to use 'ls -l': $ touch foo $ ls -l foo -rw-r--r-- 1 ross staff 0 Mar 31 11:46 foo $ ln foo bar $ ls -l foo bar -rw-r--r-- 2 ross staff 0 Mar 31 11:46 bar -rw-r--r-- 2 ross staff 0 Mar 31 11:46 foo The second column is 'link count'. If you've never encountered hard links before, look them up. Ross
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#48996): https://lists.yoctoproject.org/g/yocto/message/48996 Mute This Topic: https://lists.yoctoproject.org/mt/72672772/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
