FORMAT DE FICHIER
Liste des formats
 
Formats par type : archive
 
7Z 7Z Archive
ACE ACE compressed archive
ARJ Archiver Robert Jung
BEL BEL compressed archive
BH BH compressed archive
BZ2 BZ2 compressed archive
BZA BZA compressed archive
CAB Microsoft CABinet
DEB DEB compressed archive
DZ DZ compressed archive
GCA GCA compressed archive
GZ GZip compressed archive
HA HA compressed archive
HKI HKI compressed archive
JAR JAVA archive
LHA LHA Archive
LZH LHA Archive
NOA NOA32 compressed archive
PAQ PAQ compressed archive
RAR RAR Archive
RPM RPM package
SFX SFX self-extracting compressed archive
SQZ SQZ archive file format
TAR TAR Tape archive
TBZ2 BZ2 compressed TAR archive
TGZ TAR GZip compressed archive
UHA UHA compressed archive
YZ1 Deepfreezer YZ1 archive
YZ2 YZ2 compressed archive
Z LZW compressed archive
ZIP Data compression

Comment compresser des fichiers et répertoires ?
Comment décompresser des archives ?
 
Les logiciels les plus performants sont aussi gratuits.
En voici quelques-uns :
 
7 Zip
IZArc
TUGZip
PowerArchiver 2009

  • Sur MAC les utilitaires courants et gratuits sont 7Z et StuffitExpander.
     
  • Sous Linux les utilitaires de compression et d'archivage en ligne de commande les plus courament employées sont 7z, tar, bzip2 et gzip.
     

    Créer une archive compressée avec tar:
    tar -cvzf mon_archive.tgz [repertoire ou fichier à compresser]
    Par exemple : tar -cvzf home_jean.tgz /home/jean
     
    Pour lister le contenu d'une archive tgz :
    tar -tvzf [fichier archive]
     
    Pour extraire les fichiers d'une archive tgz :
    tar -xvzf [fichier archive]
    Pour extraire les fichiers d'une archive tbz2 dans le répertoire /home/jean/tmp :
    tar -xvjf [fichier archive] -C /home/jean/tmp
     
    Note : Pour utiliser la compression BZ2 plus efficace il faut remplacer le "z" par un "j" dans les options de la commande tar. Dans ce cas l'extension employée est généralement .bz2 ou .tbz2
    Pour une archive tar non compressée (fichier .tar) il faut enlever l'option de compression (z ou j).
     

    Pour changer le format d'une archive compressée sans installer de logiciel vous pouvez aller sur Media-Convert
  •  
     Recherche