Fedora :: Objdump: File Format Not Recognized?

Feb 9, 2011

This works fine for most libraries:

Code:
$ objdump -f /usr/lib64/libm.so
/usr/lib64/libm.so: file format elf64-x86-64

[code]...

View 5 Replies


ADVERTISEMENT

Software :: Makefile - File Not Recognized - File Format Not Recognized Collect2 - Ld Returned 1 Exit

Mar 27, 2010

I was installing DYMOUM from [url]. "make" command is issuing this error:

Code:

Prior to this, ns-2.34 was working fine. Patches are applied very well.

I am in under fedora 9 and:

Code:

View 9 Replies View Related

Software :: /usr/lib/libgd.so - File Not Recognized - File Format Not Recognized

Jul 22, 2009

I'm trying to cross-compile glibc 2.2.3 for PowerPC 405 using ELDK 3.0 on a x86_64 machine.

I have unzipped glibc-2.2.3 in a temp directory and configured using:

The configuration seems to run fine but when I do make I get the following error:

This is the error in the config.log file:

I have installed the libgd package using apt-get install libgd2-xpm-dev and I also tried recompiling using libgd2-noxpm-dev package but I still get the same error.

View 2 Replies View Related

General :: File Format Not Recognized?

Mar 17, 2011

How to deal with file not recognized: File format not recognized

View 2 Replies View Related

Hardware :: Format A SD Card That's Recognized As A Read-only File?

Feb 25, 2011

I've got some trouble trying to format a SD card. I tried to format it in the GUI and the terminal, but couldn't make it. I couldn't even copy or move any file to the directory in the SD card, even logged as root.
It's a SD card from a digital camera. When I insert it in the camera, it says the card is blocked, so that it's not possible to take any picture.

I tried using "fdisk" to set a new fyle system in it, and tried "mkdosfs" trying to format it under the current file system.

View 4 Replies View Related

Programming :: C++ Link Error - File Format Not Recognized - Treating As Linker

Apr 22, 2010

I am trying to compile a software using a provided sdk. I suspect that the sdk has some mismatch of the platform library, but I am not sure.

The error I got is

Code:

The libidata.so.42 is there in that folder. I guess the file might be in a big endian. Is there a way to check if the libidata.so.42 i have might be a big endian format, rather than little endian?

If my guess is incorrect, This is a c++ code on fedora x86 machine.

View 4 Replies View Related

Fedora :: Create A Pdf File In A3 Format From Two Sheets In A4 Format?

Apr 7, 2010

my school we want to print a magazine but we have problem with the format of the files. We need to create a sheet in A3 format from two sheets in A4 format. I was reading about the pdftk library but it doesn't do what i need.

View 4 Replies View Related

General :: Install Objdump On Mac OS X?

Nov 3, 2010

I want to get the source code of a small command line tool using objdump on Mac OS X.I've used arm-linux-objdump on Linux and find it a great tool.Is there any way to install objdump on OS X? I've searched Google and found information about arm-apple-dawin9-objdump, but failed to find anything to download.

View 2 Replies View Related

Ubuntu Servers :: Apache Error Log Format Percentage Not Recognized 10.04

Jun 4, 2010

I wanted to log some messages on Apache. So I added in VirtualHost definition

Code:
CustomLog /var/log/apache2/site-resp_log resp
LogFormat "%{X-Forwarded-For} %D %t %T %v %O %b %A %B" resp
and restarted apache2.
I got following error

Code:
* Restarting web server apache2
Syntax error on line 33 of /etc/apache2/sites-enabled/site.com:
Unrecognized LogFormat directive % [fail]
root@server:/var/log/apache2# vi /etc/apache2/sites-available/sites.com

Here is a page I referred to. I am not able to understand the syntax error.

View 2 Replies View Related

Programming :: Difference Between Hexdump And Objdump?

Aug 15, 2010

I am not clear with difference between hexdump and objdump and coredump. I wrote a small program

Code:
main (){
int a=2;
int b=4;
int k=b/a;
int m=9;

[Code].....

Some of the above instructions such as 89 d0 should be present in hexdump. What exactly is the hexdump ,objdump and coredump and what is their importance?

View 1 Replies View Related

Fedora :: Audio File - Not Recognized By Any Of Several Players

Feb 8, 2011

I made a backup of some mp3 and ogg files onto a a DVD. I had to re-install my OS and now need these backup files. The files show up on the file navigator and show appropriate file sizes but they are not recognized by any of several players I have tried (Rhythmbox, xmms,vlc, amarok).

View 11 Replies View Related

Fedora Installation :: File System Not Recognized - Alienware

May 28, 2011

I currently have windows 7 installed. There are two partitions. The OS is on one and the other one is used for data. Is there anyway this could be a problem?

The only readable error I have gotten is from suse. Said something about an unreadable file system. All of the others have just hung at some point during the live cd boot.

I have now tried live cds of the following and none have worked.

Its a stock alienware that I bought 3 years ago. The only change I have made is updating the ram, which I bought directly from dell to make sure it was compatible. The alienware is an intel core 2 duo, 4 gigs of ram, 160gb HD, dual sli nvidia graphics cards. not sure about the mother board, could figure it out if its necessary. Is there any reason the hardware wouldn't be supported?

View 8 Replies View Related

Fedora Hardware :: Flash Read Only Cant Transfer File Or Format?

Jan 20, 2011

i have problem my flash memory was working file then suddenly it says read only file system cant format either

View 1 Replies View Related

Ubuntu :: AVI File Not Recognized On Any Player?

Feb 5, 2010

I tried playing a .avi file using VLC player and Movie Player, but neither will read the file. There is no image or sound. I will post the error message shortly.

View 8 Replies View Related

Software :: File Not Recognized - Is A Directory

May 5, 2009

When compiled gimp, I met the follow problem:

View 3 Replies View Related

Programming :: JavaScript - File Not Recognized As XML By Firefox

Feb 4, 2010

I'm loading an XML file stored in a tiny web server (based on lwip). This web server is not very cooperative and is not marking the http content-type as "text/xml". As result, Firefox is not recognizing the file as xml (IE does) so I can't use DOM methods for parsing the xml file. overrideMimeType("text/xml") should help me avoid this problem but, even having overrided the mymetype, the content-type received is still "text/plain". This is a portion of my JavaScript code:

Code:
var xmlObj;
// loadXMLdata is called from the html file
function loadXMLdata() {
var dataFile = window.location.href.substring(0, window.location.href.lastIndexOf("/") + 1) + "config/myfile.xml";
if (window.XMLHttpRequest) {
xmlObj = new XMLHttpRequest();

// This should override the mimetype...
if (xmlObj.overrideMimeType)
xmlObj.overrideMimeType("text/xml");
xmlObj.onreadystatechange = fillXMLdata;
xmlObj.open("GET", dataFile, true);
xmlObj.send("");
} else {
alert("Your browser can not handle this script");
return; } }
// fillXMLdata is called from loadXMLdata once the xml object is ready
function fillXMLdata() {
if (xmlObj.readyState == 4) {
// Here Content-Type shows again "text/plain"
alert(xmlObj.getAllResponseHeaders());
var xmlDoc = xmlObj.responseXML.documentElement;
// And here section is null
var section = xmlDoc.getElementsByTagName("section")[0]; } }
The xml is quite simple:

Code:
<?xml version="1.0" encoding="iso-8859-1"?>
<section>
<item>1</item>
<item>2</item>
</section>

View 1 Replies View Related

Fedora X86/64bit :: 24 Hours Format To 12 Hours Format Lovelock?

Jul 27, 2011

I have a problem,I want to change the hour format from 24 hours to 12 hours, I cant find the way to do this,

View 14 Replies View Related

Fedora :: Convert .mp4 Format To .avi Format Using "ffmpeg"?

Aug 9, 2011

I have some .mp4 files. While open this file using vlc-player the resolution is fine. Then I convert this .mp4 format to .avi format using "ffmpeg". While open the .avi file using vlc-player the resolution is not fine.

View 3 Replies View Related

OpenSUSE Hardware :: HP-Photosmart C4680 Not Recognized - Pdd File Is Not There

Dec 1, 2010

I'm having some problems with my printer...i just installed suse (today) and tried to install the printer... i looked online and installed hplit, then followed the setup till the program recognizes my printer (he says is 4600, dunno why) and then ask me to associate the PDD file... only thing is that the pdd file is not there....

I runned the hp-check -t and this is the result:

Hp-check can be run in three modes:

1. Compile-time check mode (-c or --compile): Use this mode before compiling the HPLIP supplied tarball (.tar.gz or .run) to determine if the proper dependencies are installed to successfully compile HPLIP.

2. Run-time check mode (-r or --run): Use this mode to determine if a distro supplied package (.deb, .rpm, etc) or an already built HPLIP supplied tarball has the proper dependencies installedto successfully run.

3. Both compile- and run-time check mode (-b or --both) (Default): This mode will check both of the above cases (both compile- and run-time dependencies).

Saving output in log file: hp-check.log

Initializing. Please wait...

SYSTEM INFO:

To check for compile-time only dependencies, re-run hp-check with the -c parameter (ie, hp-check -c).

To check for run-time only dependencies, re-run hp-check with the -r parameter (ie, hp-check -r).

HPLIP INSTALLATION:

View 4 Replies View Related

Hardware :: Specify The File Format?

Jun 16, 2010

I am having a desktop motherboard of D31 model. In this i tried to load the RHEL4.2 but the required ahci driver is not there. So if anyone could specify me like whichfile-format file to be used while installing Linux OS, using the option boot:linux dd.

View 9 Replies View Related

Slackware :: Use UDF As The File Format?

Sep 9, 2010

I have a new external 500gb drive I want to format and put data on. I first formatted it as Fat32 as I'd like to access it with Windows at some point. I ended up having a few files over 4gb, so that didn't work.

I'd like to use UDF as the file format. Does anyone see any issues with formatting a 500GB drive with UDF? I don't see any reason why I would want to WRITE to the drive in Windows, just read...but there is software out there to allow Windows XP to write to a UDF drive if I needed to.

View 4 Replies View Related

Ubuntu :: Which File Compression Format To Use

Oct 13, 2010

I notice in Nautilus file manager, if I right click on a directory, I can 'compress' that file or directory. clicking this provides options for different compression formats, but how do I know which one to use?Most of my files are data files, ie text. Though I do have photo/image folders and a music folde

View 6 Replies View Related

Software :: Converting 3GP File To DVD Format (PAL)

May 17, 2010

I'm trying to convert a 3gp (mobile phone video) file to PAL DVD format (which is I believe MPEG2 video and one of a few audio choices, in an MPEG PS container). But while the file plays fine in mplayer and vlc, my efforts to convert it, using either VLC or devede, always seem to result in either the converted video being speed up (noticeably, we're talking twice as fast or so not 5%), or in the audio going mickey-mouse. How can I get the file converted correctly? Bearing in mind it needs to be PAL not NTSC (so a lot of stuff I might find online isn't going to work as-is)

View 1 Replies View Related

Programming :: Scan In A File Which Has The Format?

Apr 3, 2011

I am trying to scan in a file which has the format of

Quote:
username:password
hello:world
right now my program says
Code:
Scanner fin = null;
try
{
fin = new Scanner(new FileReader("proj1/passwd.txt"));

[Code]...

How do i correctly use delimiter to take in only the strings on one line?

View 1 Replies View Related

Debian Hardware :: HDD Not Recognized In BIOS But Recognized Upon Boot

Sep 18, 2014

I have a backup HDD with a different distro for my laptop and i can boot into it via external usb or if swapped into the laptop. This HDD/install in question is debian testing and was working fine, the issue arose suddenly. I was first suspecting a failure of hardware somewhere on the motherboard, but the hdd i was using with an external usb adapter also works when installed into the machine. also, the HDD is recognized once i have booted using the external HDD and distro, but it is not recognized by the bios. so i dunno, my first guess is something became corrupt within the testing install, but i guess its also possible that there is some wrong with the HDD but thats not immediately apparent as all the data is still accessible.

Should also note that the HDD with testing on it is also recognized when connected via the external usb adapter, while booted from alternative distro/HDD.

Also. just tried this, but i can get the testing HDD/disto to boot if connected externally. it was going pretty quick, but there i did catch a line about a corrupt filesystem. any commands to run to see what might be going on?? log files to look at?

View 0 Replies View Related

Ubuntu :: Convert A PDF File Page Format?

Jan 20, 2010

I have a PDF File here with upright ("portrait" format) pages, and I want to convert it so that each page gets "split" in the middle and becomes two wide ("landscape" format) pages.

Something like "print multiple pages on one page", only reversed

Is there any way to do such a thing with CUPS or something?

I have the source file ONLY in PDF Format

View 9 Replies View Related

Ubuntu Multimedia :: Converting MPG File To AVI Format?

Jun 9, 2010

I'm having some problem converting an mpg file to avi. I did it with mencoder. The result was an avi file as I wanted but the image was like stretched vertically. Like this:
(The avi is on the left)
What can I do to convert it without the stretching?

View 1 Replies View Related

Ubuntu :: Common Dat A Format - .pub File Extension

Jul 8, 2010

I have received a file in CDF V2 format (.pub file extension).

Is there any software available to read this file in Linux (Ubuntu)?

View 2 Replies View Related

General :: Convert *.cur To X11 Cursor File Format?

Mar 6, 2011

Visibly my WM is not capable to read else than the format X11 cursors, so no way to CUR or ANI
Cheers

View 4 Replies View Related

General :: Mac Driver For The Ext4 File Format?

Feb 6, 2010

Quad processor, huge RAM, and more disk space than he knows how to use. So he decided to make it a tri-boot machine. He is a Mac 'biggot' (don't we all have our preferences?) but has been developing plugins for Cinema 4-D so he wanted to be able to span the spectrum.At any rate, we were chatting and he mentioned that he would like to be able to 'see' his Linux (he is using Ubuntu) drive while booted up in his Mac system.

View 4 Replies View Related







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