Open/unpack the file on Linux #94
-
Good day. Thank you for amazing extension. This one, unlike SingleFile, appears to be precisely what I am looking for. The application I am using is Ark which itself depends upon: p7zip library (for 7Z format), unrar library (for RAR decompression support), unarchiver (for RAR format support) and some other libraries, however I have also tired the program xarchiver, which has support of some additional libraries. Yes, I have no knowledge upon archives structure, most likely the issue is not a concern of the SingleFIleZ itself, and I will undoubtedly proceed searching for the way to make it work, still, if I discover the way to open the file, I name it here, and this would certainly help others in future, otherwise, supposing someone is already learned the way, they may help me at present. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
You should be able to unzip self-extracting archives with the |
Beta Was this translation helpful? Give feedback.
-
Well, spending some more time on search, now, I found no duly GUI solution still. However, there is a One way could have been to create a One may try to come up with something similar by unp or atool (I have read nothing of them). Hence, the question is still open to solutions; though, at this point, I shall just create a bash script which will be called to by a Curious matter is that the xarchive availing itself of an |
Beta Was this translation helpful? Give feedback.
-
Here is some GUI-ish way ( [Desktop Entry]
Comment=Extract the zip-HTML file to specific location
Exec=unzip -n %f -d "$(zenity --file-selection --directory)"/%n-unzipped
Icon=archive
MimeType=text/html;
Name=Unzip HTML
Path=
StartupNotify=true
Terminal=false
Categories=Utilities; This will extract the archive into the " |
Beta Was this translation helpful? Give feedback.
-
I forgot to mention that you can also simply disable the option |
Beta Was this translation helpful? Give feedback.
You should be able to unzip self-extracting archives with the
unzip
command.