Ubuntu :: X86 Binary File Not Work On X86_64?

Oct 25, 2010

I have a binary file which works fine on X86. But it doesn't work on X86_64.

View 3 Replies


ADVERTISEMENT

Software :: Jdk1.5.0_08 Install - Cannot Execute Binary File - X86_64 Versus Ia64

Sep 17, 2009

I have java jdk1.5.0_08 installed on linux x86_64 architecture and I can execute java -version no problem. I took the same binaries and installed on ia64 architecture and the command java -version gives and error "cannot execute binary file" The Linux OS versions are 2.6.18-128.1.10.el5 on x86_64 and 2.6.18-128.4.1.el5 on ia64 Do you know whether the jdk1.5.0_08 binaries are compatible between x86_64 and ia64 architecture. The answer may be no, but I may be wrong and there could be some other issue. Where can I get the jdk1.5.0_08 specific to ia64 architecture for Linux version 2.6.18-128.4.1.e15

View 1 Replies View Related

Programming :: Finding A Utility To Combine Two Or More Binary Files Into A Single Binary File?

May 5, 2011

Is there any Linux utility to combine two or more binary files into a single binary file ?

View 7 Replies View Related

Ubuntu :: GDM Broken - Gdm-binary[230]: WARNING: Unable To Load File '/etc/gdm/custom.conf'. No Such File Or Directory

Sep 1, 2011

I've had Ubuntu 11.04 installed on my desktop since it's release. Up until an hour ago, it was working fine. I clicked on an update from the update manager, now booting into a graphical mode is completely broken, (the start-up load hangs at 'Check Battery State ... [0k]'). I restarted my computer, and booted into safe mode, and launched the terminal. This all works fine. I then typed :

Code: sudo gdm start into the command prompt, hoping that I would be able to start things manually. Instead, it spat out this: Code:

gdm-binary[230]: WARNING: Unable to load file '/etc/gdm/custom.conf'. No such file or directory.
gdm-binary[230]: WARNING: Unable to find users : no seat-id found.
gdm-binary[230]: WARNING: Gdm Display: display lasted 0.070467 seconds

The last line was printed about 8 times, with slightly different times, before it gave up and failed. Some information which might help, I have Gnome 2, Unity and KDE (not sure which version), installed. My graphics card is the GTX 275, and I have driver the Nvidia driver 275.21. So yeah, I think the update has gone and moved custom.conf somewhere, but I have no idea on how to fix it. I have a graphics programming assignment due on Friday and I would be eternally grateful if I could get this fixed well before then.

View 2 Replies View Related

Server :: Scp Truncate Text File Busy - Copying File Is Not A Running Binary?

Jun 14, 2010

I am having problems with scp during a backup operationI added a ps -ef before and after the scp operation used during the backup.The backup is a script to backup a Zimbra ServerI am including the code segment that I am having problems

Code:
# DRCP Section. To scp newly created archives to a remote system
if [ "$DRCP" = "yes" ]

[code]...

View 3 Replies View Related

General :: Convert Binary File In To Ascii File Using Shell Script?

May 23, 2011

i am trying to convert a binary file in to ASCII using shell script. this file contains multiple types of data like string, number, bcd, etc.

View 5 Replies View Related

General :: How To Verify If The File Is Binary Or Text Without To Open The File

Sep 7, 2010

how to verify if the file is binary or text without to open the file

View 2 Replies View Related

Programming :: Convert An Arbitrary Binary File Into A Executable File?

Feb 18, 2010

In a project I'm working on with a few other people, I got the task of writing an assembler. The last thing I do is convert the commands into a binary representation, and jam it into a file. Now one of my teammates said he'd like to be able to "reference" the code within another program. He said he'd be able to do this if the file I output is a Linux object file. I'm thinking it'd also work as an executable. Anyway, he said he'd like to be able to grab the file and reference the binary by address. I'm still fuzzy on this, and if you're confused with what I said here, please tell me so I can ask him for better details.Anyway, I'm aware that gcc can compile files to ".o", but that's only for C/C++, and my file is just binary. I'm also aware of "ld", but I haven't seen any use of it to help me. I'm happy to hear suggestions as to what I can do. If anything, I think I'll implement a few functions to grab the bits and hand them to him in an array or something.

View 8 Replies View Related

Ubuntu :: How To Run A Binary File In GUI

Dec 22, 2010

I am trying out an open source software According to its installation instruction, "Linux users with an x86 compatible platform can use the frozen package for a quick installation (Just unpack the tar file in directory an start the faces binary). "So I just did it and unpacked it. However, when I click on the application file, which is named "faces", nothing happens. I'm new to Ubuntu so I'm not sure if there is anything that I should do before I can click and run an application like this?

View 4 Replies View Related

Programming :: Version Info Coded Into ELF Binary / Author And Company Name Into ELF Binary?

Nov 30, 2010

How to coded version info and other information likes author and company name into the ELF binary?

I prefer the put the version info during build step.

View 5 Replies View Related

Slackware :: Sc Doesn't Really Work In X86_64?

Dec 2, 2010

The sc spreadsheet app doesn't really work in 64bits. It launches but you're unable to do anything with it, it's not possible to enter any values in the cells or do anything else. It works fine in 32bit though.

To make it work properly in 64bits, you can use this patch, borrowed from debian: http://salix.enialis.net/x86_64/13.1...changes-7.16-3

And there is also this patch to make DESTDIR work properly with the Makefile: http://salix.enialis.net/x86_64/13.1...-destdir.patch

View 3 Replies View Related

Ubuntu :: Cannot Execute The Binary File

Jul 14, 2010

I have a strange issue on one of my machines. The same thing works fine on all the others. When I execute:

Code:

sudo -u myuser -i ls

I get:

Code:

/bin/ls: /bin/ls: cannot execute binary file

On the other hand if I just run

Code:

sudo -u myuser -i

and then run ls, it executes successfully, but I don't want to stay logged in as myuser I just want to run a single command.

View 2 Replies View Related

Ubuntu :: Cannot Execute Binary File

Jun 7, 2011

I'm trying to install this app called genBlast. It's a bioinformatics tool that does some cool stuff (I guess the actual use doesn't matter that much). Anyway, it comes as a .tar.gz folder with about a dozen executables in it; no compiling necessary. I extracted it to the desktop so I didn't have to worry about permissions, and then just tried to run it from inside the directory (it's a command line app).

All of the executables work with a ./ except one, and it's the most important one for that matter. When I go to run it, I get the error message Code: bash: ./genblast: cannot execute binary file I've checked permissions with ls -l, run a chmod 'u+x' just to make sure, and everything else I can think of. But it just won't work. Also, I just installed it on another computer and it works fine, so I'm pretty sure it's on my end.

View 2 Replies View Related

Ubuntu :: Get Details Of A Binary File?

Nov 30, 2010

I have a binary file which display a lot of message when I run that binary. This binary file is statically linked with many files which are unknown to me. Is there any way to know from which file (obj or static lib) does these printf come from?

There is a way to get to know about the source of a symbol, but I am interested about the source of a string.

View 6 Replies View Related

Fedora :: Getting OSS4.2 And Flash To Work On X86_64

Oct 23, 2009

I had quite a bit of trouble getting OSS4.2 and flash to have sound on x86_64 fedora 11. I had been using the Adobe repository which is 32bit. Adobe labs distributes a 64 bit version, and I notice now that Leigh has packaged it for fedora. Switching to the 64bit flash plugin brought back sound in flash for me. Just wanted anyone else wanting to try OSS4.2, to know how to get sound in flash.

View 1 Replies View Related

OpenSUSE :: Ocfs2console Doesn't Work Under 11.4 X86_64?

Mar 15, 2011

It looks like the ocfs2console is broken on openSuse 11.4 64bit. I tested on several servers and my laptop. It works under 11.3 x86_64 but that uses Python 2.6. OpenSuse 11.4 uses Python 2.7.

I tried to submit a bug but I can't seem to get my email address verified so I can use the bug tracker.

Server1:~/python-gtk/pygtk-2.12.1 # ocfs2console
ERROR: Unable to initialize the windowing
system: The CObject type is marked Pending Deprecation in Python 2.7. Please use capsule objects instead.

Server1:~/python-gtk/pygtk-2.12.1 # uname -a
Linux Server1 2.6.37.1-1.2-xen #1 SMP 2011-02-21 10:34:10 +0100 x86_64 x86_64 x86_64 GNU/Linux

Server1:~/python-gtk/pygtk-2.12.1 # python
Python 2.7 (r27:82500, Aug 07 2010, 16:54:59) [GCC] on linux2

View 2 Replies View Related

Ubuntu :: Why Can't Execute Binary File (cinelerra)

Jan 3, 2010

I am using Karmic. I just downloaded Cinelerra from sourceforge. Apparently there is no installation, you just run the binary (according to the Readme). The binary is set to be executable (-rwxr-xr-x), but when I double click it in nautilus nothing happens. When I go to the app directory in the terminal and do:

[Code]...

View 3 Replies View Related

Ubuntu :: Lynx Web Browser - What Does It Consider A Binary File

Sep 27, 2010

I want to retrieve a file--it's a compressed tar file, and I can get to it via a certain URL (with a query, so it's of the form <URL>?<search options>). If I go there via Firefox, I get a prompt to download the file. Lynx documentation says that if a file is binary, rather than displaying it it will give me the option of downloading it. (Which of course I will pick; I will use the option to save the commands I type, and then when I want to run it from a script give lynx the option telling it to retrieve and use those saved commands.)

The problem: this compressed tar file, which you'd think would be recognizable as a binary file, isn't; lynx displays a page of garbage and asks me whether I'd like another.

So, my question is: how does lynx decide what it thinks is a binary file? I have grabbed the sources, and will search them.

View 1 Replies View Related

Ubuntu Servers :: 10.04 Cannot Execute Binary File

Dec 22, 2010

Trying to install Parallels Plesk Panel 10 x86_64 onto a completely new installation of Ubuntu 10.04.1 LTS

root@server:~# chmod +x parallels_installer_v3.7.1_build101014.17_os_Ubunt u_10.04_x86_64
root@server:~# ./parallels_installer_v3.7.1_build101014.17_os_Ubunt u_10.04_x86_64
-bash: ./p.arallels_installer_v3.7.1_build101014.17_os_Ubun tu_10.04_x86_64: cannot execute binary file

View 5 Replies View Related

Ubuntu :: Make With Make File Yields Error - /usr/bin/javac: Cannot Execute Binary File

Nov 17, 2010

When I try to compile some Java code on Ubuntu 10.10 (kernel 2.6+) using make and a Makefile.

I get an error indicating that the make utility cannot execute the java compile command (javac).

The error reads: /bin/bash: line 6: .: /usr/local/jdk1.5.0_18/bin/javac: cannot execute binary file

I am executing make as root. I have enabled permissions on all directories in the path /usr/local/jdk1.5.0_18/bin/javac and on javac itself.

I get this error whether using a jdk installed via ubuntu apt-get, or whether I install the jdk myself. And I get it using either Java 1.5 or 1.6

My machine has an 80386 processor. I notice the make utility is built for i686-pc-linux-gnu

However, I can manually compile using javac.

I can compile calling javac from within a bash script.

I can compile using the java compiler gcj from the command line: gcj --main=HelloWorld HelloWorld.java -o HelloWorld.exe

But I cannot compile java code from the makefile. Any reasons why I might be getting this error?

View 4 Replies View Related

Fedora Hardware :: PRO/Wireless 3945ABG Won't Work On 13 X86_64

Jul 27, 2010

I hava a sony vaio vgn-cr11gh/b laptop, with Intel PRO/Wireless 3945ABG, and it's not work correctly on fedora 13 x86_64.

lshw -C network returns:

Quote:

And, tail -f /var/log/messages says:

So when i wanna connect to a wireless it's returns:

Quote:

View 4 Replies View Related

OpenSUSE Hardware :: ATI Driver Doesn't Work On 11.3 X86_64?

Jul 27, 2010

I've got a ATI graphic card, which is not a Radeon bla bla, and it is a Fire Pro MV 2260. I download the official driver from ATI(AMD) website, and it gives me:

'firepro_8.723-linux_98794.zip'and unzip will produce 'fglrx-8.723'

I change the things according to this thread:

openSUSE Lizards ATI HD57xxx fglrx drivers under 11.3

However, after installation I can't start X. The log shows the kernal doesn't match.

Then I try to install the ATI Catalyst 10.7. It won't start X as well. I think maybe ATI Catalyst 10.7 is particular designed for Radeon, isn't it?

BTW, why there is no entry for 11.3 at:

Additional package repositories - openSUSE

NVIDIA drivers is updated, but ATI seems very lazy...

View 9 Replies View Related

Ubuntu Networking :: FTP - Incomplete File When Not Binary Mode

Oct 16, 2010

I have setup FTP Server on my Windows machine with Filezilla server. Now, if I try to copy files from it using Ubuntu 10.04, Lucid, it downloads incomplete files if I don't switch to binary mode.

Is there some config issue from Ubuntu client or something needs to be changed from Windows Client.

View 4 Replies View Related

Fedora :: Install A S/w With A Binary File?

Apr 29, 2010

[b] i got downloaded qt-sdk-linux-x86_64-opensource-2010.02.bin binary file then how to install that one[]

View 5 Replies View Related

Fedora :: Cannot Execute Binary File?

Sep 20, 2010

I'm new to Fedora, and haven't used any flavor of Linux in years. I'm attempting to run a few benchmarks that were given to me by my instructor, but every one I try to run gives an error "Cannot execute binary file". For instance,.inp.inThis command gives an error:bash: ./Mcf: cannot execute binary fileIt is not a permission problem, I have confirmed the file has execute permissions (one of the things I still remembered after all these years). I suspect all the benchmarks I have been given were compiled on Ubuntu. Would this be causing the problem? I do not have access to the source code, so I cannot recompile. If that is the problem, is there a way around it that doesn't involve throwing away a weekend and starting fresh on Ubuntu?

View 1 Replies View Related

Fedora :: Execute The .x86 Binary File?

Sep 24, 2010

I found a Linux .x86 binary file that I've been looking for, but not sure what to do with it. Does this (*.x86) binary file format seem like something that could simply be run by command, or something that would need to be compiled first? There is not much information that I could find regarding the particularly file.

View 11 Replies View Related

Fedora :: Can't Launch Binary File

Nov 13, 2010

I've been trying to launch a binary file, but I keep getting this error.

Code:
[csegale@localhost pSX]$ ./pSX
[src/linux/sound.cpp, line 215]: 'snd_pcm_hw_params_set_access(pcm_handle,hwparams,SND_PCM_ACCESS_MMAP_INTERLEAVED)' returned 'Invalid argument'

[Code]....

View 2 Replies View Related

Red Hat / Fedora :: Unable To Run Any Binary File / Why Is This?

Oct 27, 2010

I want run binary files but shoot my errors that "Cannot Execute Binary file" I try with ./file, bash file etc i'm using fedora12 with KDE Desktop this happends with all binary files

do you know which extension is?

somebody knows why i cant run?

View 5 Replies View Related

Red Hat / Fedora :: Cannot Execute Binary File

Nov 3, 2010

I tried to restart my httpd service.cannot execute binary file seems like the HTTPD wasnt stopped while it should be stopped. it skipped the 'stop' and just right away jump into 'start' command. my case is i just changed some php.ini configuration, and to have it changed i need to restart after changes.am i correct if i say my '/bin/rm' and '/bin/touch' files are corrupted?

View 3 Replies View Related

General :: Parsing A Binary File?

Mar 17, 2011

Is it possible to parse through a binary file using a script using either Korn shell or Bash

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved