Opening AppImage does nothing. What can I do?

瘦欲@ 提交于 2021-01-28 05:30:24

问题


I am a complete newbie to Linux and trying to open an AppImage called Magick which is an Imagemagick application.

I tried right clicking on the AppImage and checked "run file as an executable" option but that didn't work. Another thing that I tried is running this command,

chmod a+x magick.AppImage

This gives me an error,

chmod: cannot access 'magick.AppImage': No such file or directory

I have also tried running the file by navigating into the folder that contains the file and opening up the terminal there but still no luck.

I am running Ubuntu on Oracle VM VirtualBox.


回答1:


ImageMagick is a command-line tool, you don't run it by clicking on it.

To run it in a terminal you need to

  1. Set the executable flag on the .AppImage (once for all): chmod +x TheApp.AppImage
  2. Then to run it just invoke the AppImage: ./TheApp.AppImage <arg1> <arg2> ....

If the directory with your .AppImage is in your PATH, you can remove the ./ (or whatever directory the AppImage is in).

ImageMagick is also available as a regular application from your Ubuntu repository: sudo apt install imagemagick



来源:https://stackoverflow.com/questions/62270948/opening-appimage-does-nothing-what-can-i-do

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!