WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: how to extract tcz file  (Read 24565 times)

Offline si_hussain1

  • Newbie
  • *
  • Posts: 44
how to extract tcz file
« on: August 28, 2010, 08:04:30 AM »
Anybody knows  how to extract tcz file ?

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: how to extract tcz file
« Reply #1 on: August 28, 2010, 08:12:07 AM »
Install squashfs-tools-*.tcz
then use 'unsquashfs'  ;)
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14819
Re: how to extract tcz file
« Reply #2 on: August 28, 2010, 08:19:22 AM »
..or:
Code: [Select]
$ mkdir /tmp/image
$ sudo mount -o loop extension.tcz /tmp/image
..and then copy the files under /tmp/image somewhere else

Offline si_hussain1

  • Newbie
  • *
  • Posts: 44
Re: how to extract tcz file
« Reply #3 on: August 28, 2010, 08:26:47 AM »
thank you very much  :)

Offline si_hussain1

  • Newbie
  • *
  • Posts: 44
Re: how to extract tcz file
« Reply #4 on: August 28, 2010, 08:27:58 AM »
..or:
Code: [Select]
$ mkdir /tmp/image
$ sudo mount -o loop extension.tcz /tmp/image
..and then copy the files under /tmp/image somewhere else


Thanks. This worked