P7Zip For Pandora


trevormacro

Member
Joined
Aug 12, 2003
Messages
115
Hello,

I have pandora.
I install upx ( upx-3.05-Os-upx-pandora.tar.gz) and p7zip ( p7zip_9.13-Os-upx-pandora.tar.bz2 ).
I want to extract my files in sd directory " 7z files".
What is the command line to extract my files please ? on pandora in terminal.
help me...

thanks
 
trevormacro said:
Hello,

I have pandora.
I install upx ( upx-3.05-Os-upx-pandora.tar.gz) and p7zip ( p7zip_9.13-Os-upx-pandora.tar.bz2 ).
I want to extract my files in sd directory " 7z files".
What is the command line to extract my files please ? on pandora in terminal.
help me...

thanks
Generic 7z usage, x = extract with full paths:
Code:
7z x "/media/SDCARDLABEL/7z files/FILE.7z"
or
Code:
7za x "/media/SDCARDLABEL/7z files/FILE.7z"

Here's the p7zip manual:
http://hosting.1command.com/fbsd/doc/p7zip/MANUAL/index.htm
(that was the first one i found with google...)

EDIT:
The archive will be extracted to the current directory, that is by default the NAND home dir. Change to the directory to which you want to extract the archive first, eg.:
Code:
cd /media/MYSDCARD/directory_in_sdcard
 
Last edited by a moderator:
Also to be mentioned: "7z --help" gives you a short summary of the options.
 
Back
Top