MESSAGE
DATE | 2022-07-05 |
FROM | Paul Robert Marino
|
SUBJECT | Re: [Hangout - NYLXS] Linux question: how to make .gz file
|
I think I know what you are asking for. You want to make a single file installer. they aren't normally done but there are a few ways to do it primarily they are actually shell scripts with a tar file encoded within them there are 2 methods the first is to base 64 encode the file and make it a variable within the shell script the other is to include it at the tail of the script this article describes the tail of the file method https://www.linuxquestions.org/questions/linux-newbie-8/creating-a-bin-installer-for-a-application-499080/
On Tue, Jul 5, 2022 at 2:13 AM shulie wrote: > > On 7/4/22 20:00, sderrick wrote: > > How do I make a .gz file executable/runnable? I extract the files > > into a directory. Now how did I put all this together to make the > > application? (Maybe one of the extracted files?) > > > > If one knows of web site(s) please do tell. I'll give you my phone > > number if needed. Thank for any help. > > > > _______________________________________________ > > Hangout mailing list > > Hangout-at-nylxs.com > > http://lists.mrbrklyn.com/mailman/listinfo/hangout > > > > the gz file is never executable. gz files don't execute usualy unless > it is malware? Does it extract into a directory of source code? If so, > see if there is a a README file. > > > If it is autoconf ./configure make and sudo make install is a normal > procedure. > > > chmod is the permisions tool > > > man chmod > > https://www.linode.com/docs/guides/modify-file-permissions-with-chmod/ > > > chmod 100 ./myexecutable'sh > > > see the linux1 notes on nylxs > > > > > _______________________________________________ > Hangout mailing list > Hangout-at-nylxs.com > http://lists.mrbrklyn.com/mailman/listinfo/hangout _______________________________________________ Hangout mailing list Hangout-at-nylxs.com http://lists.mrbrklyn.com/mailman/listinfo/hangout
|
|