Fedora :: Installing Maya2010 - Bad ELF Interpreter?
Jan 22, 2010
I just wanted to install Maya 2010 on Fedora 12 x86_64, but setup alway ends with the following error (right after having started that):
Code:
bash: ./setup: /lib/ld-linux.so.2: bad ELF interpreter
Autodesk recommends Fedora 9 for Maya, but I wanted to give it a try on F12. So before giving up on that one, I've got some questions:
1. What's an ELF interpreter, anyway?
2. Is there any workaround for that problem, or do you have some suggestions on what I might try?
View 3 Replies
ADVERTISEMENT
Jun 13, 2010
Would a representative from each Linux distro be kind enough to tell me what the command is for installing the Ruby interpreter in their distro? In Gentoo it is "emerge Ruby".
View 4 Replies
View Related
Nov 12, 2009
I have installed fc11 x86_64 on my machine. When I try to install .bin files, it displays 'ld-linux.so.2 bad elf interpreter no such file or directory' error. I have also installed glibc but it didn't fix the problem.
View 1 Replies
View Related
Dec 18, 2010
I am using fedora 14 and after i have installed RealPlayer11GOLD.rpm , i didnot work and it give me the following error
./realplay: /opt/real/RealPlayer/realplay.bin: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
View 14 Replies
View Related
Mar 7, 2011
I have a partially completed interpreter that has first-calss functions and can store scopes in variables. That way it is possible to implement a simple class like this:
Code:
MyClass = func () {
value = 0;
setValue = func (x) value = x;;
[code]....
But what about inheritance, and what if I want to know the type of the object?
View 6 Replies
View Related
Jul 25, 2010
I installed openjdk 6. The compiler works fine, but when I try to run the .class file, I get:
Exception in thread "main" java.lang.NoClassDefFoundError: hello/java
Caused by: java.lang.ClassNotFoundException: hello.java
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
[code]...
View 5 Replies
View Related
Apr 1, 2010
As some of you know that I am new to this forum. I have another problem that I got stuck on. I have this file called "Fib.rbb" and my instructor told us to write an interpreter program by using Fib.rbb.
"You are to write an interpreter in Perl for Rongs Basic Basic (RBB) as explained in class. The BNF description for RBB and a test file called Fib.rbb are part of the RBB.zip file which is available in the Course Documents folder on blackboard. If you call your interpreter myIntp.pl, you would execute the program via perl myIntp.pl Fib.rbb
Code: Print "A few Fibonacci numbers:"
View 3 Replies
View Related
Nov 5, 2010
I am installing Oracle 11g on Oracle Enterprise Linux 5.0 32 bit (virtual machine)i did all the mandatory steps, i am trying to run the installer but i am facing the below:bash: ./runInstaller: /bin/sh: bad interpreter: Permission deniedknowing that the run isntaller is found in an iso file, in which i linked the VMwarre CD/DVD drive to it
View 4 Replies
View Related
Oct 26, 2010
I am using ubuntu hardy and python 2.6.5 (built from sources). For a custom python packager I need to rebuild python interpreter (python executable). I am new to linux and don't have much knowledge of gcc and other stuff. Here is the process:1. Copy python.c as myapp.c. myapp.c is in the same directory (python2.6.5) in which I have all the required files. 2. Using the syntax from makefile of python sources, here is my first command to produce myapp.o
Code:
gcc -pthread -c -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I. -IInclude -I/home/zeno/installed/Python-2.6.5/Include -fPIC -DPy_BUILD_CORE -c myapp.c -o myapp.o
This produce myapp.o but throws a warning:
Code:
myapp.c:24:2: warning: no newline at end of file
Next is to produce the executable or python interpreter:
Code:
gcc -pthread -Xlinker -export-dynamic -o $@ myapp.o -L. -lpython2.6 -lpthread -ldl -lutil -lm -o myapp
This is causing an error:
Code:
/usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
[Code]...
View 1 Replies
View Related
Jul 11, 2011
Starting sshd: /etc/init.d/sshd: /usr/sbin/sshd: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
---------- Post added 07-11-11 at 01:29 AM ----------
and btw i have install al glibc.x86_64
uname -m
x86_64
View 1 Replies
View Related
Mar 25, 2011
i am working with ad hoc network but the problem is not getting any good documentation of how to compile c++ code then how to add the code into Tcl intrepreter and how to work with make file. i want to run my own algorithm using c++ and then want to incorporate it into tcl interpreter and then want to run.
View 2 Replies
View Related
Feb 9, 2011
I have it so that an Env object contains all the variables in the current scope, and the parent scope. You can also save them to variables like objects, and my idea is to use the "." operator to get values from them.
First, how do I assign to them? I currently have it that only a variable name can be assigned to, but you should be able to assign to an "obj.value" expression, too. How do I keep track of what variable to set and still be able to say it in an expression and have it evaluate to the variable?
Second, these object don't really have a "type", they're just containers that contain any values you want under any name you want. How can I, for example, define a primitive "boolean" object and have things like if statements recognize it?
View 14 Replies
View Related
Oct 31, 2010
I downloaded a Perl script from off a page on the Internet, and tried to run it. It displayed its source in the web browser. First of all, I am in the cg-bin containing my cgi file and the file permissions are set to 755. I open the Terminal in this folder and run ls, which lists my file called hello.cgi; I run hello.cgi, and get a not found error, and run ./hello.cgi and get source code less comments:
Code:
me@fast:~/Files/Website/perl-dropdown/cgi-bin$ ls
hello.cgi redir.cgi
me@fast:~/Files/Website/perl-dropdown/cgi-bin$ hello.cgi
[code]....
Next I open my Synaptic and search for perl, so I can reinstall it. I find nothing. I navigate to /usr/bin and eventually find perl and perl5.xx as well.
View 4 Replies
View Related
Aug 17, 2010
I wrote a script to use egrep to search files for '#!/usr/bin/python' so I could tell what my Python scripts were/where they were. It grabs 'ls' and separates it into an array. It uses ls -F so I can pop anything with a / in it; giving me just files. It then egrep's them. Here's the code.
Code:
#!/usr/bin/python
import commands as com
ls = com.getoutput("ls -F")
ls = ls.split("
[Code]....
When I run all that code in the interpreter, it works. If I run it from Bash (eg ./egrep) it throws me an error like this 'egrep: [Screenshot.png]: No such file or directory' for every file in the directory. Also, it doesn't filter out the directories either.
View 5 Replies
View Related
May 27, 2011
Our Matlab users met the problem in Ubuntu while using Latex interpreter in Matlab. Namely, eps and pdf files generation out of Matlab plot outputs plot legend and axes lables incorrectly. All the letters are mixed, impression that character spaces are too dense. We can't blame Matlab, since exactly the same examples with the same Matlab version work fine on CentOS. We tested Ubntu 9.10, 10.4 and 10.10 -- same problem. Matlab version R2010b.
In addition, jpg, png generated with no problems. It's eps and pdf only
Matlab example:
plot(1:1:10)
xlabel('example','Interpreter','latex')
ylabel('ExAmPlE','Interpreter','latex')
a=legend('EXAMPLE example ExAmPle')
set(a,'Interpreter','latex','Fontsize',13)
print -depsc2 figure1
I am attaching a PDF, looks same as eps, but easier to display.
View 9 Replies
View Related
Jun 30, 2010
I've been running SQL-Ledger on Centos 5.5 (x86_64) for some time. At some point in time I must have done something to either perl or CPAN and I now get the following error in SQL-Ledger.
Not an ARRAY reference at SL/Form.pm line 1047.
Attempt to free unreferenced scalar: SV 0x18034630, Perl interpreter: 0x17363010 during global destruction.
Attempt to free unreferenced scalar: SV 0x18034630, Perl interpreter: 0x17363010 during global destruction
View 6 Replies
View Related
Mar 30, 2010
I'm studying Information Technology and doing Linux as part of it. One of the questions in my text book is: Describe three different ways to start a command line interpreter when using the Gnome desktop of openSUSE Linux. I can't for the life of me make sense out of it.
View 8 Replies
View Related
Sep 2, 2010
If say, I want to read the input given by user at the command prompt and write a code to execute the cmd given then which commands do i use to implement this ( Im writing the code in C )?
View 8 Replies
View Related
Feb 2, 2011
I have a Python script that I run which needs to execute under a special environment, so I would run the program like so from my working directory (~/project/src):
python manage.py shell
This opens up an interactive shell for me to start typing my own commands.I have another set of administrative activities that I would like to house in another directory (~/project/admin). The manage.py is really finicky about running from the working directory. So, to make this whole thing work, I made a script which starts off like so:
#!/usr/bin/python ../src/manage.py shell
There are a couple problems with this. The first is that it doesn't work:
/usr/bin/python: can't open file '"/../src/manage.py" shell': [Errno 2] No such file or directory
How do you specify multiple parameters to the interpreter?How do I change the working directory?
View 2 Replies
View Related
Jul 20, 2010
I have C: and D: on my computer. the D drive has 250 GB of free space. I would like to install it on the D drive without harming my existing windows. I have booted through an USB and it has an icon that says "install fedora on your hard disk". How do I make sure that it will be installed only my D drive without harming my windows?
View 1 Replies
View Related
Dec 23, 2010
I recently upgraded from Fedora 13 to Fedora 14 and noticed something strange when I used Yum to install GNote and Inkscape. Yum installed the Fedora 14 version of the programs, but installed some dependencies that were actually from Fedora 12 and 13. The output below shows what packages were installed.
Yum output:
==================================================================================================== ===================================================================
Package Arch Version Repository Size
[code].....
When I ran the yum command to list all of the packages for the dependencies in question, it only listed the version for Fedora 12 or 13. Is there something wrong with one of my repositories or do these Fedora 14 programs actually use packages from previous versions of Fedora?
View 2 Replies
View Related
Nov 20, 2009
After searching online and in these forums I found two different ways of installing the Nvidia drivers in fedora 12. If you haven't yet installed the the repos then:
Code:
su
rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
First way:
as su
(1)
yum --enablerepo=rp*g install kmod-nvidia.$(uname -m) xorg-x11-drv-nvidia-libs.i686 xorg-x11-drv-nvidia-libs.x86_64
[Code]...
I used the first way and everything seems to work fine. Compiz-fusion works good but i did have to add vga=795 to /boot/grub/grub.conf to get the graphical boot loader to work again. Should I have used the second method? What is the difference in these two ways? Most notably the second steps. Is one way better or preferred over the other? From my understanding you must do this because of the nouveau driver.
View 10 Replies
View Related
Nov 17, 2009
I am installing Fedora 10 on my system.After the package installation, a post install screen appears.And the installations halts for a long time and does not proceed further.
View 1 Replies
View Related
Jun 2, 2011
I installed Fedora 15 with gnome3 on my netbook and after some slight trouble I got it installed Now heres the the bad news: grub doesn't show my Ubuntu installations(s), only Fedora 15 and windowz 7
View 5 Replies
View Related
Jun 22, 2011
I am compiling and installing the custom kernel based on the instructions provided in Building_a_custom_kernel on fedoraproject.org/wiki site.
However, according to the instructions, anytime I change anything in the kernel source files(e.g /driver/ata/libata-core.c), I have to create a patch a rebuild the whole kernel and install this new kernel which takes 2 hours. Is there a simpler way of recompiling what has changed(without creating patch) and try that changed kernel? Since my changes are not in the drivers which can be dynamically loaded but is in the static code of the kernel, it is making life cumbersome.Are there any instructions for this? How does other kernel developers manage this?
View 2 Replies
View Related
Jul 2, 2009
Im trying to install fedora 11 on my MacBook (Aluminum Series) but its not working.I turn on my mac...boot from the DVD...follow the instructions to install the fedora on my mac ( 3 partitions = [1-swap, 2-boot, 3-main]) and it installs normally, installs all the packages. When the installing is finished...it says click on reboot..When i do that, it seems like its rebooting...but the screen turns black for a long long long time that after a while im forced to manually turn off my mac. And when i turn it on...and see if the fedora is installed, There is nothing but my mac OS
View 3 Replies
View Related
Jul 28, 2009
I installed Fedora 11 last night and found that it installs a lot of applications and utilities that i dont need and will never use. I tried to customise the installation before installing but there is too many of them that i just gave up.
All i need is the Apache Webserver and the mysql database. is there an easier way to installl a quick Fedora installation with just the webserver and the database and nothing else?
View 4 Replies
View Related
Aug 19, 2009
I have fedora 11. I installed debian on my computer and I have only the debian menu. I entered to debian menu.lst to add Fedora, i restart my computer and Fedora appears in the grub menu, but when I try to boot, it tells me that is there un notexisting system. So, I cannot boot Fedora. i have debian on sda6 and Fedora on sda8. My debian menu.lst is:
[code]...
View 14 Replies
View Related
Jun 24, 2010
I am completely new to linux and I want to install Fedora on my older PC. The PC is running 2.3 GHZ pentium 4 processor, 512mb Ram, and about 80GB free on the harddrive.
The PC is a Dell 8300 series and is already running Windows XP. I want to be able to dual boot Fedora and XP. I was following a tutorial but I cannot find the link anymore otherwise you would be able to view it and see if its a bad tutorial.
The tutorial had it so that I was downloading and creating and ISO Disk from here [url]. The next step was that I boot from the newly created disc by changing the setting in the BIOS. Then the tutorial instructed that I change the partition size for windows inside fedora after it boots. however I never got that far
When I booted off of the Fedora disk that I created the machine would get a message that said "Missing operating system"
I also tried booting from a flash drive but it did the same thing
It would be great if anyone could help me out, or point me to a better tutorial. Please take note that I am very green. I am not a programmer and I have limited skills on the computer. I just wanted to get my hands dirty by playing around in Fedora. So I may not understand all the Linux lingo yet.
View 3 Replies
View Related
Nov 27, 2010
To install mysql follow this process. Go to your Terminal and Enter the command given below:
Code:
After installation you need to start mysql server by
Code:
After this you need to enter this command
Code:
1.First you system will ask you old mysql root password if you have installed mysql just now and not set password yet then you can enter anything or just press enter.
2. After that system will ask you twice for new password you can set a new password or you can keep it blank for no root password. I will suggest you to enter a password.
3.remove anonymous user? make it yes when you install mysql an automatic mysql user has created so remove it.
4. Disallow root login remotely. Hope you want to disallow mysql root login from remote for security of your mysql sever. If you want to use you can select no.
5. Remove test database. As anonymous user system generate and automatic database for testing.select yes to delete it.
6.Reload privileges: do yes to flush privileges.
Now you can login in your mysql server as root by this command
Code:
One more thing make sure that when you are entering this command you login your terminal as general user not as root.
Now you can create a new user by following commands.
To create databases
Code:
To see database list
Code:
Code:
Code:
Code:
Code:
Code:
If you want to work with mysql in gui mode Then you can install phpMyAdmin to install phpmy admin go to terminal and eter
Code:
And after completing installation you can login in to phpmyadmin. To login go to your browser enter [url] or Click here or you can download mysql gui client Mysql Work Bench from mysql website or Click here after installation it will be appear in programming menu. It's also cool client with mysql server activity watcher.
View 4 Replies
View Related