-
#!/bin/bash yad --width=400 --height=500 --button="Update":"bash -c update" --button="Exit:1".
"error output "sudo: /usr/local/bin/sudo must be owned by uid 0 and have the setuid bit set`"
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Hi @offternet. As written in AppImage/appimagetool#92 (comment):
You need to run your AppImage with |
Beta Was this translation helpful? Give feedback.
-
I know what I am doing is not the conventional (not recommended) method for executing parent shell script from within an AppImage FUSE filesystem that then executes a child gnome-termial sub process. However, I was able to immediately find the solutions for the next 2 issues related to my method; Had it not been for our previous conversations I would still be searching / bother others and maybe for sometime. Thank You Again ! Error 1: gnome-termial (same as curl command) = "File not found" #!/bin/bash Error 2: Unable to create proxy for gnome-terminal child process "dbus-launch" sudo no longer required on the AppImage file.
I will soon share my findings and a video (in corret topic area) of more advance use of yad GUI that is contained in and executed from an AppImage. AGAIN !! THANK YOU !!!! |
Beta Was this translation helpful? Give feedback.
Hi @offternet. As written in AppImage/appimagetool#92 (comment):
You need to run your AppImage with
sudo ./Your.AppImage
and your application inside the AppImage needs to runapt-get udpate
(no sudo).