Software :: File Not Recognized - Is A Directory

May 5, 2009

When compiled gimp, I met the follow problem:

View 3 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 :: Cannot Log In, Home Directory Not Recognized?

Aug 10, 2010

I have tried googling many times for answers, but haven't yet found a solution to my problem (maybe its my selection of search terms).I screwed up my debian system by trying to setup an ftp server with vsftpd very quickly withouteading much documentation (very stupid) as root. I must have screwed up the something to do with the home directory for my user because now cannot even log in with my usual username and password when the computer starts up. All the computer says when I try to log in is:

Unable to cd to 'homemyusername'I can log in as root with Debian single user mode, so I am hoping I can reset my home directory so it works again. Also, I cannot seem to ever get the gnome login screen just a terminal login screen.

View 7 Replies View Related

Software :: Get First File Of Directory Then Copy To Other Directory Andd Rename The File?

Jan 30, 2011

I want to do the following.

1. have a directory full of subdirectory

2. Pick the first file from every sub and copy that to the main directory and also rename that file to the same name as the subdirectory's name

3. need to work in commandline best is a simple script.

View 4 Replies View Related

Ubuntu :: Hidden Directory 'RECYCLER' Creates .exe File In Directory Called 0x2D9FA278

May 30, 2011

I've done a low level format on them so they're completely empty. When I use them with my windows machines, they're absolutely fine. When I plug them into my Ubuntu machine, there is a hidden directory created called 'RECYCLER' which I'm assuming is for deleted files?However, it also creates a .exe file in this directory called 0x2D9FA278 which has an Icon with an H in it and a comment of 'Facebook Photo' This has the effect of making all the directories on the stick into shortcuts! I googled the file name and it seems to be some sort of Trojan, but I don't understand how it's go into my Ubuntu machine, I've scanned with ClamAV and it finds nothing.

View 5 Replies View Related

Ubuntu :: When Drag The File To Install It Again It Says Something Along The Lines Of It Cannot Copy A Directory Over A Directory?

Feb 19, 2010

I downloaded a mouse theme form gnome look and installed it in the themes. But it has not appeared in the pointer themes section in custimation even though it said that it is installed correctly.When I drag the file to install it again it says something along the lines of it cannot copy a directory over a directory.Where can I find where the mouse/pointer theme is located and delete it. I have searched filesystem, google and these forums and not had any luck yet.

View 1 Replies View Related

Software :: Error - Mkdir: Cannot Create Directory `/dev/cgroup/cpu/user/5900': No Such File Or Directory

Jun 21, 2011

I get the following error whenever I launch bash:

Code:
mkdir: cannot create directory `/dev/cgroup/cpu/user/5900': No such file or directory
bash: /dev/cgroup/cpu/user/5900/tasks: No such file or directory
bash: /dev/cgroup/cpu/user/5900/notify_on_release: No such file or directory
It seems like it's probably from this part of .bashrc:

[Code]...

What does this code do, why, and what's causing it to go wrong?

View 7 Replies View Related

Ubuntu :: Directory Exists But Bash Says It Doesn't - No Such File Or Directory

Aug 19, 2011

I've run into a problem with my bash program.

Code:a mkdir -p /home/chris/Downloads/ARCHIVE/`date -I` find /home/chris/Downloads* -mtime +14 -exec "cp {} /home/chris/Downloads/ARCHIVE/`date -I` ;

It's meant to move old files from my Downloads folder into an archive file (later tar them). The directory exists, I've used $PWD and nautilus and ls to make sure it's there, yet for every file it gives

Code: find: `cp /home/chris/Download/foo.bar /home/chris/Downloads/ARCHIVE/2011-08-19': No such file or directory I tried to test it on a different destination, specifically my home folder. IT still gave me the error.IS it a bad syntax within find or something else? I'm running a 32-bit system with 11.04

View 4 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

General :: File Format Not Recognized?

Mar 17, 2011

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

View 2 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 :: 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 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 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

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 :: 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

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

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

Ubuntu Installation :: Libotcl.so: Cannot Open Shared Object File: No Such File Or Directory

Feb 15, 2010

there are number of threads floating on installation of ns2..however i am unable to get it on my 64 bit system ns: error while loading shared libraries: libotcl.so: cannot open shared object file: No such file or directory

View 1 Replies View Related

Ubuntu Multimedia :: Libpython2.5.so.1.0 - Cannot Open Share And Object File: No Such File Or Directory

Jul 27, 2010

When running the beta of blender 2.5, I get the following error. blender: error while loading shared libraries: libpython2.5.so.1.0: cannot open shared object file: No such file or directory In previous versions of ubuntu you could 'apt-get install python2.5' to resolve the issue, but it doesn't appear in any/all of the repositories. where I can get python2.5 for lucid-lynx?

View 1 Replies View Related

Ubuntu Installation :: Libgtk-1.2.so.0: Cannot Open Shared Object File: No Such File Or Directory

Aug 8, 2010

I was looking to download "America's Army" and was doing alright until I hit a slight snag, It had an error while loading libgtk1.2, so I scoured the Internet for a way to fix this and the find command I found just told me it couldn't find the package, this is the first error I got when I tried to uncompress the "America's Army" version I downloaded:

/home/zac/.setup3597: error while loading shared libraries: libgtk-1.2.so.0: can not open shared object file: No such file or directory.

View 1 Replies View Related

Ubuntu :: ImportError: Libtiff.so.3: Cannot Open Shared Object File: No Such File Or Directory

Dec 22, 2010

I followed [URL] that thread for installing BitPim on 10.04, but am getting this error:

Quote:

Traceback (most recent call last):
File "/opt/cx_Freeze-3.0.3/initscripts/ConsoleSetLibPath.py", line 35, in <module>
File "src/bp.py", line 20, in <module>
File "src/bp_cli.py", line 21, in <module>

[code]....

View 1 Replies View Related

General :: Unable To Access File /home/username/.iceauthority: No Such File Or Directory

Apr 21, 2011

Can't log into my XFCE desktop like I normaly do. all the sudden I get notified that my xsession lasted less then 10 secondsLooking at the error I can see this:

Unable to access file /home/username/.iceauthority: No such file or directory

Using failsafe I can start a terminal. From terminal I tried to start X

Code: sudo startx Result: Running on desplay:0

So I tried to run this;

Code: sudo startxfce4 And I get up a graphical desktop.

So this is not a critical situation as I easily can use this method to log on, but as there has been something causing this I would like to be able to resolve this nonetheless. Btw it is not the old chmod trick in play here, cause my .iceauthority file is gone alltogheter.

View 6 Replies View Related

General :: 6.13 GMP-5.0.0 LFS Make Error - Cannot Open Shared Object File: No Such File Or Directory

Jun 10, 2010

I'm currently stuck at 6.13 GMP-5.0.0 of the LFS installation. After running make, I receive the following:

error while loading shared libraries: libbfd-2.20.so: cannot open shared object file: No such file or directory
make[2]: *** [libmpn.la] Error 127
make[2]: Leaving directory `/sources/gmp-5.0.0/mpn'

[code]....

View 5 Replies View Related

Slackware :: Slapt-get Error On First Run - Cannot Open Shared Object File: No Such File Or Directory

May 22, 2011

I get an error when running slapt-get. The error is: "slapt-get: error while loading shared libraries: libsas.so.2: cannot open shared object file: No such file or directory".

I've booted the Slackware disk # 1 and unchecked everything except the libraries category and installed them. I rebooted and it still says this. I get this same error before I put the disk in and rebooted to install ALL libraries. I really need help. BTW, I can't load KDE.I found a pkg manager already installed called "slackpkg". But I really need help on this library issue!! I uninstalled it (slapt-get) anyway, so forget that!

View 3 Replies View Related

Fedora :: VBoxVMM.so: Cannot Open Shared Object File: No Such File Or Directory

Oct 26, 2010

after updating my system I can't start VirtualBox-OSE anymore. I get the error:

VirtualBox: supR3HardenedMainGetTrustedMain: dlopen("/usr/lib/virtualbox/VirtualBox.so",) failed: VBoxVMM.so: cannot open shared object file: No such file or directory

I try to remove and to re-install VirtualBox-OSE again, still the same error. VirtualBox works as root but not from a user account. The installed version is VirtualBox-OSE.i686 3.2.6-2.fc13 @rpmfusion-free-updates

View 12 Replies View Related

Fedora :: Cannot Open Shared Object File: No Such File Or Directory"?

Mar 28, 2011

I am trying to run Ansys on Fedora (64bit), but every time I do it gives me this error. "error while loading shared libraries: libXm.so.3: cannot open shared object file: No such file or directory"Please help as I am stuck with this issue for long.

View 6 Replies View Related

OpenSUSE :: Libjpeg.so.62 - Cannot Open Shared Object File No Such File Or Directory?

Jul 10, 2011

I'm trying to use a software on OpenSuSE 11.3 (64) and am getting an error message similar to the one in the title. I did a bit of background reading on libjpeg.so.62 that the program was asking for. I noticed that I had a file called libjpeg.so.8 in my /usr/lib/ folder. I found a libjpeg.so.62 file online, downloaded it and copied to to my /usr/lib folder, but its not making any difference.

View 1 Replies View Related

Ubuntu :: Is There Any Program / Script That Can Create Torrent File For Each File In Directory?

Apr 14, 2010

Is there any program/script that can create a torrent file for each file in a directory? I have been looking all over but can't seem to find anything of the sort. I have 700+ files I REALLY don't want to make my self.

View 1 Replies View Related







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