mirror of https://github.com/CrimsonTome/tldr.git
29 lines
900 B
Markdown
29 lines
900 B
Markdown
|
# unsquashfs
|
||
|
|
||
|
> Dekompresuj, rozpakuj i wyświetl listę plików w systemach plików squashfs.
|
||
|
> Więcej informacji: <https://manned.org/unsquashfs>.
|
||
|
|
||
|
- Rozpakuj system plików squashfs do `squashfs-root` w aktualnym katalogu roboczym:
|
||
|
|
||
|
`unsquashfs {{system_plików.squashfs}}`
|
||
|
|
||
|
- Rozpakuj system plików squashfs do podanego katalogu:
|
||
|
|
||
|
`unsquashfs -dest {{ścieżka/do/katalogu}} {{system_plików.squashfs}}`
|
||
|
|
||
|
- Wyświetlaj nazwy plików podczas ich rozpakowywania:
|
||
|
|
||
|
`unsquashfs -info {{system_plików.squashfs}}`
|
||
|
|
||
|
- Wyświetlaj nazwy plików i ich atrybuty podczas ich rozpakowywania:
|
||
|
|
||
|
`unsquashfs -linfo {{system_plików.squashfs}}`
|
||
|
|
||
|
- Wyświetl listę plików w systemie plików squashfs (bez rozpakowywania):
|
||
|
|
||
|
`unsquashfs -ls {{system_plików.squashfs}}`
|
||
|
|
||
|
- Wyświetl listę plików i ich atrybuty w systemie plików squashfs (bez rozpakowywania):
|
||
|
|
||
|
`unsquashfs -lls {{system_plików.squashfs}}`
|