Re: bash: ./WINPM-32.EXE: cannot execute binary file: Exec format error

2022-07-27 Thread stan via users
On Tue, 26 Jul 2022 18:00:11 -0700 Samuel Sieb wrote: > On 7/26/22 17:48, Michael D. Setzer II wrote: > > Use to be able to run command without added wine to > > front?? > > With Fedora 35 up to 7.10 worked fine, but 7.12 verion > > would cuase a spinning icon when opening email > > message. No

Re: bash: ./WINPM-32.EXE: cannot execute binary file: Exec format error

2022-07-26 Thread Barry
> On 27 Jul 2022, at 02:51, Michael D. Setzer II wrote: > > On 26 Jul 2022 at 18:00, Samuel Sieb wrote: > > Date sent: Tue, 26 Jul 2022 18:00:11 -0700 > Subject:Re: bash: ./WINPM-32.EXE: cannot execute > binary file: Exec format >error >

Re: bash: ./WINPM-32.EXE: cannot execute binary file: Exec format error

2022-07-26 Thread Michael D. Setzer II
On 26 Jul 2022 at 18:00, Samuel Sieb wrote: Date sent: Tue, 26 Jul 2022 18:00:11 -0700 Subject:Re: bash: ./WINPM-32.EXE: cannot execute binary file: Exec format error To: users@lists.fedoraproject.org From: Samuel Sieb

Re: bash: ./WINPM-32.EXE: cannot execute binary file: Exec format error

2022-07-26 Thread Samuel Sieb
On 7/26/22 17:48, Michael D. Setzer II wrote: Use to be able to run command without added wine to front?? With Fedora 35 up to 7.10 worked fine, but 7.12 verion would cuase a spinning icon when opening email message. No error or anything showing in top or ps -ef. Did a dnf downgrade wine, and it

bash: ./WINPM-32.EXE: cannot execute binary file: Exec format error

2022-07-26 Thread Michael D. Setzer II
Use to be able to run command without added wine to front?? With Fedora 35 up to 7.10 worked fine, but 7.12 verion would cuase a spinning icon when opening email message. No error or anything showing in top or ps -ef. Did a dnf downgrade wine, and it downgraded to 6.16 version and problem went

Re: binary file editor

2019-05-30 Thread Robert Moskowitz
On 5/30/19 2:38 PM, Ted Roche wrote: Paste into vim, position the cursor under the character in question and hit :ga for ASCII and :g8 for UTF-8 SPOILER: It's a space. And I see it in FireFox, but not in Chrome. So 'all' I have to do is figure out how to add the trim() function to my scri

Re: binary file editor

2019-05-30 Thread Ted Roche
Paste into vim, position the cursor under the character in question and hit :ga for ASCII and :g8 for UTF-8 SPOILER: It's a space. And I see it in FireFox, but not in Chrome. On Thu, May 30, 2019 at 2:24 PM Robert Moskowitz wrote: > For F28, I am looking for a file editor that when I paste fr

binary file editor

2019-05-30 Thread Robert Moskowitz
For F28, I am looking for a file editor that when I paste from the clipboard, I can see any special characters. I am having problems with a web form copy to clipboard.  You can see at test page at: http://www.htt-consult.com/button2.html In Firefox on my F28 system, there is a character copi

Re: Binary file

2015-10-05 Thread Patrick O'Callaghan
On Mon, 2015-10-05 at 13:44 +0200, Patrick Dupre wrote: > Hello, > > When I make a grep on files, I can get: > Binary file foo matches. > > How can I recognize a binary file (without using grep)? > Actually it seems to be a file with characters above the standard > asc

Binary file

2015-10-05 Thread Patrick Dupre
Hello, When I make a grep on files, I can get: Binary file foo matches. How can I recognize a binary file (without using grep)? Actually it seems to be a file with characters above the standard ascii character. I did not find any option of ls for example. Thank

Re: binary file not running

2011-08-11 Thread Jatin K
On Thursday 11 August 2011 08:38 PM, Patrick O'Callaghan wrote: > On Thu, 2011-08-11 at 18:06 +0530, Jatin K wrote: >> On Thursday 11 August 2011 05:56 PM, Patrick O'Callaghan wrote: >>> On Thu, 2011-08-11 at 10:21 +0530, Jatin K wrote: you should do chmod +x a.out or run it like sh a.out

Re: binary file not running

2011-08-11 Thread Patrick O'Callaghan
On Thu, 2011-08-11 at 11:05 -0700, Joe Zeff wrote: > On 08/11/2011 10:39 AM, Frank Cox wrote: > > On Thu, 11 Aug 2011 10:38:07 -0430 > > Patrick O'Callaghan wrote: > > > >> Besides which, a shell script named "a.out" would arouse my suspicions. > >> Although not illegal, I would regard it as an att

Re: binary file not running

2011-08-11 Thread Joe Zeff
On 08/11/2011 10:39 AM, Frank Cox wrote: > On Thu, 11 Aug 2011 10:38:07 -0430 > Patrick O'Callaghan wrote: > >> Besides which, a shell script named "a.out" would arouse my suspicions. >> Although not illegal, I would regard it as an attempted Trojan. > > a.out is the default name of the executable

Re: binary file not running

2011-08-11 Thread Frank Cox
On Thu, 11 Aug 2011 10:38:07 -0430 Patrick O'Callaghan wrote: > Besides which, a shell script named "a.out" would arouse my suspicions. > Although not illegal, I would regard it as an attempted Trojan. a.out is the default name of the executable file that's created by C compilers on Unix systems

Re: binary file not running

2011-08-11 Thread Patrick O'Callaghan
On Thu, 2011-08-11 at 18:06 +0530, Jatin K wrote: > On Thursday 11 August 2011 05:56 PM, Patrick O'Callaghan wrote: > > On Thu, 2011-08-11 at 10:21 +0530, Jatin K wrote: > >> you should do chmod +x a.out or run it like sh a.out > > "sh a.out" isn't going to do anything unless a.out is a Shell s

Re: binary file not running

2011-08-11 Thread Jatin K
On Thursday 11 August 2011 05:56 PM, Patrick O'Callaghan wrote: > On Thu, 2011-08-11 at 10:21 +0530, Jatin K wrote: >> you should do chmod +x a.out or run it like sh a.out > "sh a.out" isn't going to do anything unless a.out is a Shell script. > > poc > I assumed it is shell script. so --

Re: binary file not running

2011-08-11 Thread Patrick O'Callaghan
On Thu, 2011-08-11 at 10:21 +0530, Jatin K wrote: > you should do chmod +x a.out or run it like sh a.out "sh a.out" isn't going to do anything unless a.out is a Shell script. poc -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin

Re: binary file not running

2011-08-11 Thread Ian Malone
On 11 August 2011 10:13, Markku Kolkka wrote: > shailesh kirjoitti viestissään (lähetysaika torstai, 11. elokuuta > 2011): >> [tommy@tommy cprog]$ gcc hello.c >> [tommy@tommy cprog]$ ./a.out >> bash:  ./a.out : Permission denied > > Is your "cprog" directory on an USB stick, external hard drive, >

Re: binary file not running

2011-08-11 Thread Markku Kolkka
shailesh kirjoitti viestissään (lähetysaika torstai, 11. elokuuta 2011): > [tommy@tommy cprog]$ gcc hello.c > [tommy@tommy cprog]$ ./a.out > bash:  ./a.out : Permission denied Is your "cprog" directory on an USB stick, external hard drive, or some other media other than regular Linux filesystem

Re: binary file not running

2011-08-10 Thread Paul Allen Newell
On 8/10/2011 10:06 PM, Joe Zeff wrote: > On 08/10/2011 08:57 PM, shailesh wrote: >> #include >> int main() >> { >> printf("hello"); >> return 0; >> } >> >> >> [tommy@tommy cprog]$ gcc hello.c > chmod o+x a.out >> [tommy@tommy cprog]$ ./a.out >> bash:./a.out : Permission denied On F14 x86-64 (more i

Re: binary file not running

2011-08-10 Thread Joe Zeff
On 08/10/2011 08:57 PM, shailesh wrote: > #include > int main() > { > printf("hello"); > return 0; > } > > > [tommy@tommy cprog]$ gcc hello.c chmod o+x a.out > [tommy@tommy cprog]$ ./a.out > bash:./a.out : Permission denied -- users mailing list users@lists.fedoraproject.org To unsubscribe or cha

Re: binary file not running

2011-08-10 Thread Jatin K
On Thursday 11 August 2011 09:27 AM, shailesh wrote: #include int main() { printf("hello"); return 0; } [tommy@tommy cprog]$ gcc hello.c [tommy@tommy cprog]$ ./a.out bash: ./a.out : Permission denied

Re: binary file not running

2011-08-10 Thread Andras Simon
2011/8/11, shailesh : [...] > [tommy@tommy cprog]$ gcc hello.c > [tommy@tommy cprog]$ ./a.out > bash:  ./a.out : Permission denied chmod u+x a.out before trying to run it. Andras -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fe

binary file not running

2011-08-10 Thread shailesh
#include int main() { printf("hello");  return 0; } [tommy@tommy cprog]$ gcc hello.c [tommy@tommy cprog]$ ./a.out bash:  ./a.out : Permission denied-- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/