[EMAIL PROTECTED] wrote: > hi, > I have file system in file "disk.dat" with installed all libraries I need. > I mounted it to /mnt/obraz using command: > "mount -o loop disk.dat /mnt/obraz" > > I'm trying to make a rootstrap from /mnt/obraz using "tar". I tried to write > something like this: > "tar cfz my_rootstrap.tar.gz -C /mnt/obraz" >
The "-C" option just changes to that dir. You still have to tell tar _what_ files it should add after changing into that directory. You most likely wanted to do this: tar cfz my_rootstrap.tar.gz -C /mnt/obraz . _______________________________________________ Scratchbox-users mailing list [email protected] http://lists.scratchbox.org/cgi-bin/mailman/listinfo/scratchbox-users
