Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide way to mount/extract AppImages without having user call them #830

Closed
3 tasks
TheAssassin opened this issue Jul 26, 2018 · 4 comments
Closed
3 tasks

Comments

@TheAssassin
Copy link
Member

In situations when AppImages are not trustworthy, mounting AppImages becomes problematic. On the one hand a user doesn't want to execute the AppImage itself to use the --appimage-[mount|extract] options, as they can't know what's going to happen then (the runtime might be infected, for example). But on the other hand, mounting as root with sudo mount has a lot of disadvantages.

We should provide some tool for users to allow them to extract any AppImage without having to use the runtime in the AppImage. We've been talking about such an option for quite a while already, and I think it's time to finally implement it.

To Do:

  • extract mounting/extraction code for type 2 AppImages into a separate module, and provide it via the libappimage API
  • implement --mount option in appimagetool
  • eventually provide option to mount/extract type 1 AppImages as well (this is long overdue)

In my opinion, this should go into appimagetool rather than providing an extra application.

@probonopd
Copy link
Member

Imho, appimagetool should get the ability to extract type 1 and 2 AppImages. But the priority is lower than the number one and two annoyances :)

@mikeweilgart
Copy link

This issue may get extra attention now since it's been linked to from comments on a question on the "Ask Ubuntu" website: https://askubuntu.com/q/1231597/457111

@probonopd
Copy link
Member

probonopd commented Apr 28, 2020

The answers in that "Ask Ubuntu" article are mixing some things up. So maybe @mikeweilgart you'd like to point to this answer:

First of all, you need to find out which type of AppImage you have.

me@host:~$ xxd ./some.AppImage | head -n 1
00000000: 7f45 4c46 0201 0100 4149 0200 0000 0000  .ELF....AI......
  • If you see 4149 02 there, then you have a type-2 AppImage
  • If you see 4149 01 there, then you have a type-1 AppImage
  • If you don't see either there, then you most likely can still follow the instructions for a type-1 AppImage

So, here is how to extract (unpack) AppImages without having to run them:

  • For type-2 AppImages, you can extract them by
wget -c "https://github.com/AppImage/AppImageKit/releases/download/continuous/runtime-x86_64"
chmod +x runtime-x86_64
TARGET_APPIMAGE=pat/to/AppImage ./runtime --appimage-extract ./runtime-x86_64
  • For type-1 AppImages, you can extract them by renaming them .iso and then using a tool like Iso7z that can handle zisofs to extract them, or loop-mounting them

This answer should also address the original question, "Provide way to mount/extract AppImages without having user call them", hence closing.

@Docteh
Copy link

Docteh commented Sep 15, 2022

I tried the included instructions at the end, ended up doing like this and it worked

TARGET_APPIMAGE=/full/path/to.AppImage ./runtime-x86_64 --appimage-extract

and it worked.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants