![]() |
|
|
English pages about Rahan, great french comics.
![]() |
Created by Roger Lecureux and Andre Cheret, Rahan is a comics caractere published in Pif Gadget Magazin for the first time, about 1969. Rahan is a hero of more 180 stories, short (11 pages) or great (about 40 pages) all stories is now in 24 books (only in french version for the moment) more 3500 pages in total. Adapted in cartoon for TV (26x 26 minutes) only in french to. Rahan is very popular in France,he is a classical comics. Just now Rahan have a lot of news, new stories from a new editor and any product about this hero: Toys, pictures, statuette, expose ... and some projects: films and new cartoons ... If you have a editing in a no french language, please contact me with message or an . |
![]() |
|||||
|
|||||
![]() |
|||||
|
All in lot of news : Statuette, exposition, cartoons in video ... (in french) |
![]() |
New cartoon, by Xilam at the TV in 2009, on France 3 for France see on Xilam web site |
| Extension | Compression | Flag | Example | |-----------|-------------|------|---------| | .tar | None | -cf | tar -cf archive.tar files/ | | .tar.gz / .tgz | Gzip | -czf | tar -czf backup.tgz docs/ | | .tar.bz2 | Bzip2 | -cjf | tar -cjf archive.tar.bz2 data/ | | .tar.xz | LZMA2 / XZ | -cJf | tar -cJf logs.tar.xz *.log | | .tar.zst | Zstandard | --zstd | tar -cf archive.tar.zst --zstd folder/ | Zstd support requires Windows 11 22H2 or later. 4. Basic and Advanced Command Syntax 4.1 Core Operations | Operation | Command | |-----------|---------| | Create archive | tar -cf archive.tar folder1 file2.txt | | Extract archive | tar -xf archive.tar | | List contents | tar -tf archive.tar | | Extract to specific dir | tar -xf archive.tar -C C:\target | | Add files to existing tar | tar -rf archive.tar newfile.txt | | Verbose output | tar -xvf archive.tar | 4.2 Compression Examples :: Create .tar.gz tar -czvf backup.tar.gz C:\Users\Public\Documents :: Extract .tar.xz tar -xJvf archive.tar.xz
:: Enable long paths for current session reg add HKLM\SYSTEM\CurrentControlSet\Control\FileSystem /v LongPathsEnabled /t REG_DWORD /d 1 /f :: Then run tar normally tar -xf large_archive.tar 5.1 PowerShell Usage # Invoke tar from PowerShell & tar.exe -czf backup.tgz "C:\Projects" Using pipeline (list files to archive) Get-ChildItem -Path .\src -Recurse | ForEach-Object $_.FullName | tar -czf src.tgz -T - 5.2 Task Scheduler Automation Create an XML task to run weekly backup: tar for windows
<Exec> <Command>tar</Command> <Arguments>-czf D:\backups\weekly-%date%.tgz C:\inetpub\wwwroot</Arguments> </Exec> Note: Use %date:/=-% to avoid slashes in filename. # From WSL Bash, call Windows tar tar.exe -czf /mnt/c/backup.tar.gz /mnt/c/Users/MyUser Windows tar can read Linux symlinks (preserved if run as admin) 6. Performance Benchmarks Test environment: Windows 11 Pro, 32 GB RAM, NVMe SSD, 10,000 mixed files (2.3 GB total). | Extension | Compression | Flag | Example
| Tool / Method | Archive Format | Time (sec) | Compressed Size | |---------------|----------------|------------|------------------| | Windows tar | tar.gz (level 6) | 8.4 | 890 MB | | 7-Zip (GUI) | 7z (ultra) | 12.7 | 812 MB | | PowerShell Compress-Archive | zip | 23.1 | 1.05 GB | | WinRAR (CLI) | rar5 (normal) | 9.2 | 878 MB | | Windows tar | tar.xz | 18.6 | 745 MB | | Windows tar | tar.zst (level 3) | 6.1 | 915 MB | # From WSL Bash, call Windows tar tar
|
Last
update : November 2008
|
About this web site in french |
|