Liens dures entre fichiers ds partitions diff
Fermé
mimoza
-
19 avril 2004 à 09:25
asevere Messages postés 13084 Date d'inscription lundi 28 janvier 2002 Statut Webmaster Dernière intervention 23 novembre 2024 - 19 avril 2004 à 23:43
asevere Messages postés 13084 Date d'inscription lundi 28 janvier 2002 Statut Webmaster Dernière intervention 23 novembre 2024 - 19 avril 2004 à 23:43
A voir également:
- Liens dures entre fichiers ds partitions diff
- Wetransfer gratuit fichiers lourd - Guide
- Renommer plusieurs fichiers en même temps - Guide
- Explorateur de fichiers - Guide
- Fichiers epub - Guide
- Fichiers dat - Guide
1 réponse
jisisv
Messages postés
3645
Date d'inscription
dimanche 18 mars 2001
Statut
Modérateur
Dernière intervention
15 janvier 2017
934
19 avril 2004 à 09:59
19 avril 2004 à 09:59
La deuxième colonne de ls -l fournit , pour les fichiers, le compteur de hard links vers ce fichier
[johand@zoot] ~ $touch bidon1
[johand@zoot] ~ $ls -l bidon1
-rw-r--r-- 1 johand arafox 0 Apr 19 09:53 bidon1
[johand@zoot] ~ $ln bidon1 bidon2
[johand@zoot] ~ $ls -l bidon*
-rw-r--r-- 2 johand arafox 0 Apr 19 09:53 bidon1
-rw-r--r-- 2 johand arafox 0 Apr 19 09:53 bidon2
[johand@zoot] ~ $ln bidon1 bidon3
[johand@zoot] ~ $ls -l bidon*
-rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon1
-rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon2
-rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon3
[johand@zoot] ~ $ls -il bidon*
450705 -rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon1
450705 -rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon2
450705 -rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon3
L'option -i fournit l'inode correspondant. Ils sont ici identiques.
Pour rechercher tous les hards links sur un fichier, je n'ai pas de solution immédiate(script efficace,...) . Je regarderai quand j'ai le temps.
Johan
The software said "Requires Windows98, Win2000, or better,
So I installed Unix.
[johand@zoot] ~ $touch bidon1
[johand@zoot] ~ $ls -l bidon1
-rw-r--r-- 1 johand arafox 0 Apr 19 09:53 bidon1
[johand@zoot] ~ $ln bidon1 bidon2
[johand@zoot] ~ $ls -l bidon*
-rw-r--r-- 2 johand arafox 0 Apr 19 09:53 bidon1
-rw-r--r-- 2 johand arafox 0 Apr 19 09:53 bidon2
[johand@zoot] ~ $ln bidon1 bidon3
[johand@zoot] ~ $ls -l bidon*
-rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon1
-rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon2
-rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon3
[johand@zoot] ~ $ls -il bidon*
450705 -rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon1
450705 -rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon2
450705 -rw-r--r-- 3 johand arafox 0 Apr 19 09:53 bidon3
L'option -i fournit l'inode correspondant. Ils sont ici identiques.
Pour rechercher tous les hards links sur un fichier, je n'ai pas de solution immédiate(script efficace,...) . Je regarderai quand j'ai le temps.
Johan
The software said "Requires Windows98, Win2000, or better,
So I installed Unix.
19 avril 2004 à 22:27
19 avril 2004 à 22:57
19 avril 2004 à 23:43