Questions tagged [ubuntu-11.10]

Ubuntu release that was released on 13 October 2011.

For questions on the Ubuntu release that is colloquially known as Oneiric Ocelot that was released on 13 October 2011.

255 questions
2
votes
1 answer

Acessing Physical Memory In Ubuntu 11.10

From my research so far, Linux is moving away from allowing access to physical memory via the /dev/mem file. Unfortunately this is the case on Ubuntu 11.10, as /dev/mem does not exist. Further research turned up the shm file as a way to pass memory…
Literati Insolitus
  • 508
  • 2
  • 6
  • 13
2
votes
3 answers

How to install Django in Ubuntu 11.10

I am very new to Ubuntu OS and Python as well. I want to install Django. But i dont have easy_install and I tried below command to install pip sudo apt-get install python-pip I got an error as below Unable to locate package python-pip I tried…
n92
  • 7,424
  • 27
  • 93
  • 129
2
votes
2 answers

Issue on installing iperf on ubuntu

I am trying to install iperf on ubuntu 11.10. I refer this site to install. After I gave ./configure, the error would be "bash: ./configure: No such file or directory" Then, i found out where is configure, and I have given command as…
Dhasneem
  • 4,037
  • 4
  • 33
  • 47
2
votes
1 answer

setGraphicsEventEnv() not supported under Linux?

I'd like to run a script containing an interactive part on a Ubuntu 64 bit machine. Unfortunately it fails throwing the following error: Error in setGraphicsEventEnv(which, as.environment(list(...))) : this graphics device does not support event…
Durin
  • 687
  • 1
  • 8
  • 18
2
votes
0 answers

Maven not recognizing javac in my Ubuntu installation

I have gotten this error: Compilation failure Unable to locate the Javac Compiler in: /usr/lib/jvm/java-7-openjdk-amd64/jre/../lib/tools.jar Please ensure you are using JDK 1.4 or above and not a JRE (the com.sun.tools.javac.Main class is…
Andy
  • 10,553
  • 21
  • 75
  • 125
2
votes
1 answer

Git push origin master having publickey issues

I'm having some trouble committing a default rails app to git, and I've hit a wall in troubleshooting the problem. I am currently running Ubuntu 11.10. I am running git version 1.7.5.4. I ran through the series of git init git add . git commit -m…
Slater Victoroff
  • 21,376
  • 21
  • 85
  • 144
2
votes
0 answers

Basic buffer overflow practice

I've been practicing some basic stack-based buffer overflow task recently and I wrote an vulnerable program like this: #include #include #include int main(int argc,char **argv) { if (argc<2) { …
shockwave
  • 145
  • 1
  • 11
2
votes
3 answers

ps2pdf Unrecoverable error

I have an unrecoverable error, exit code 1 showing up when I try to convert my .ps files to pdf. It worked just about a half hour ago and now it wont. The file is there! Error: /undefinedfilename in (10132012a.ps) Operand stack: Execution stack: …
dearN
  • 1,256
  • 4
  • 19
  • 40
2
votes
1 answer

undefined reference to mbind

I did upgrade my Ubuntu from 11.04 to 11.10. In 11.04 all this worked fine: gcc -fopenmp -g -c -o test.o test.c -I../include gcc -fopenmp -g -o test test.o -lnuma -lm -L../myLib -lmyL but now, in 11.10, it gives the following errors: …
2
votes
2 answers

Running ffmpeg commands from android ffmpeg syntax error in logcat

I have successfully compiled ffmpeg for android and have ported it. I placed libffmpeg.so in /system/lib directory ffmpeg executable in /system/bin and /system/xbin directory (i was not sure where to place it). i directly copied ffmpeg executable…
Chaitanya Chandurkar
  • 2,142
  • 3
  • 24
  • 43
2
votes
3 answers

Android- Error during executing Runtime.getRuntime().exec() - Environment Null -ffmpeg

I have compiled ffmpeg library on ubuntu 11.10 and ported compiled files on android. After compiling i got libffmpeg.so successfully. It gets loaded on android successfully. I am doing it on ubuntu 11.10 eclipse android emulator. I have created a…
Chaitanya Chandurkar
  • 2,142
  • 3
  • 24
  • 43
2
votes
0 answers

Error when install Matterhorn

I'm using BigBlueButton (BBB). I want to record and playback the video files as showed-off here by BBB but the feature is not ready until next version of BBB as its owner Fred Dixon stated here. As advised, I start using Matterhorn for processing…
dakiquang
  • 684
  • 1
  • 8
  • 24
2
votes
1 answer

libc.so.6() (64-bit) is needed by .... ubuntu 11.10

I am trying to install an odbc driver for vPostgres (Vmware's version for postgres) on Ubuntu 11.10 (64-bit). I have downloaded the rpm file of the installer (64-bit) and when I try to install the rpm using: rpm -ivh Vmware-vPostgres-client.rpm, …
Deepti Jain
  • 1,901
  • 4
  • 21
  • 29
2
votes
1 answer

Ubuntu 11.10/12.04 segfault when accessing webcam via pygame.camera

I have a fresh install of Ubuntu 12.04, ran all the updates, then ran sudo apt-get install build-essential python-dev libsdl1.2-dev python-pygame. However, when I run the following in the python interpreter: import pygame import…
Mike Lawrence
  • 1,641
  • 5
  • 20
  • 40
2
votes
2 answers

unexpected termination of program running in a loop

This is a cleaned code that I'm using in order to execute shell commands. Though isExit is always 0 and loop should run as long as it is !isExit, my program terminates after one loop with the command ls as argument to execute. Does anyone have any…
choppy
  • 739
  • 1
  • 12
  • 22