Mkisofs - crée iso avec les paths des fichier
Résolu/Fermé
blade
-
6 mai 2008 à 11:51
jipicy Messages postés 40842 Date d'inscription jeudi 28 août 2003 Statut Modérateur Dernière intervention 10 août 2020 - 8 mai 2008 à 17:52
jipicy Messages postés 40842 Date d'inscription jeudi 28 août 2003 Statut Modérateur Dernière intervention 10 août 2020 - 8 mai 2008 à 17:52
1 réponse
jipicy
Messages postés
40842
Date d'inscription
jeudi 28 août 2003
Statut
Modérateur
Dernière intervention
10 août 2020
4 897
6 mai 2008 à 12:06
6 mai 2008 à 12:06
Salut,
Extrait du "man mkisofs" :
Extrait du "man mkisofs" :
pathspec is the path of the directory tree to be copied into the iso9660 filesystem. Multiple paths can be specified, and mkisofs will merge the files found in all of the specified path components to form the cdrom image. If the option -graft-points has been specified, it is possible to graft the paths at points other than the root directory, and it is possible to graft files or directories onto the cdrom image with names different than what they have in the source filesystem. This is easiest to illustrate with a couple of examples. Let's start by assuming that a local file ../old.lis exists, and you wish to include it in the cdrom image.;-))
8 mai 2008 à 17:51
Merci ca marche nikel. Donc pour utiliser l'option -graft-point de mkisofs (donc pour crée l'arborescence souhaiter dans une image iso) mon fichier /tmp/filelist.txt ce présente comme ceci.
#cat /tmp/filelist.txt
/Files/client1/=/Files/client1/test.txt
/Files/client2/project1/=/Files/client2/project1/test.txt
...
=> donc la partie avant le = détermine le repertoire a crée sur l'iso, et la partie après determine le fichier a mettre dans ce repertoire...
La commande ce présente donc comme ceci:
#mkisofs -J -R -v -o /tmp/dvd_archives.iso -path-list /tmp/filelist.txt -graft-points
Enjoy.
Regards, blade
8 mai 2008 à 17:52