Questions tagged [ubuntu-12.10]

The October 2012 version of the Ubuntu Linux Operating System(Quantal Quetzal)

Ubuntu 12.10 is the October 2012 release of the Ubuntu Linux Operating System.

Resource

129 questions
71
votes
6 answers

I screwed up the system version of Python Pip on Ubuntu 12.10

I wanted to update pip on my main install of Python, specifically to get the list command. Which also includes the list- updates capability. So I ran: sudo pip install --upgrade pip All looked good on the install but then I went to run pip and got…
dartdog
  • 10,432
  • 21
  • 72
  • 121
67
votes
10 answers

Python Requests requests.exceptions.SSLError: [Errno 8] _ssl.c:504: EOF occurred in violation of protocol

I'm on Ubuntu 12.10 with OpenSSL 1.0.1c, python 2.7.3, Requests 1.0.3 and 1.0.4 (tried both), and when attempting to connect to the website in the url variable with the following code. def SendInitialRequest(xmlmessage, redirecturl): url =…
jasonamyers
  • 1,281
  • 1
  • 9
  • 11
38
votes
1 answer

How to get CMake to recognize pthread on Ubuntu?

If I compile on the command-line with g++ directly, I can see everything I need is there: $ g++ -pthread test.cpp $ ldd a.out linux-vdso.so.1 => (0x00007fffd05b3000) libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6…
Stéphane
  • 19,459
  • 24
  • 95
  • 136
25
votes
3 answers

Why do distribute and pip install to my virtualenv's ./local/bin?

I create and activate a virtualenv (venv) using Python 3.3's built-in way of doing it: $ python3.3 -m venv env $ source env/bin/activate At this point python is the python in my virtualenv, which I expect: (env) $ which…
Frank T
  • 8,268
  • 8
  • 50
  • 67
23
votes
6 answers

Unable to install curb gem

It gives me the error of gem install curb Building native extensions. This could take a while... ERROR: Error installing curb: ERROR: Failed to build gem native extension. /usr/bin/ruby1.9.1…
Alan Coromano
  • 24,958
  • 53
  • 135
  • 205
23
votes
4 answers

C++ / mysql Connector - undefined reference to get_driver_instance - already tried the easy stuff

Yes this question has been asked before ... I've tried everything mentioned in the previous answers. My setup is really straightforward so this shouldn't be so hard. I just want to program against mysql using C++. My source code is taken…
Ray in NY
  • 351
  • 1
  • 2
  • 10
18
votes
4 answers

PHP warning : Module 'mcrypt' already loaded

When I run a command with PHP, it shows me an error. E.g when I run php -v to see my PHP-version it shows me an error then the informations about PHP: Module 'mcrypt' already loaded in Unknown on line 0 zied@ubuntu:~$ php -v PHP Warning: Module…
Zied R.
  • 4,964
  • 2
  • 36
  • 67
17
votes
1 answer

Python MySQLdb not inserting data

ubuntu version: 12.10 mysql server version: 5.5.29-0 python version: 2.7 I am trying to use MySQLdb to insert data into my localhost mysql server. I don't get any errors when I run the script but the data isn't enter into my table. I view tables…
BubbleGuppies
  • 5,750
  • 7
  • 20
  • 15
15
votes
3 answers

Debugging native code in android under eclipse fails

I'm trying to debug the native code in the "csipsimple" android app using the Debug As->Android Native Application option. I used this tutorial to do it. I keep getting these errors: [2013-06-09 17:24:24 - SipHome] Unknown Application ABI:…
david-hoze
  • 1,045
  • 15
  • 31
13
votes
4 answers

strange permissions problems for virtualenv python executable (lubuntu-12.10)

In brief, my problem is that when I try to create a virtualenv using mkvirtualenv from virtualenvwrapper, I get the following error: $ mkvirtualenv test New python executable in test/bin/python ERROR: The executable test/bin/python could not be run:…
12
votes
2 answers

Node.js source code build giving segmentation fault on ARM

tl;dr: I tried to install node.js on my ARMv7-based Cubox running Ubuntu 12.10 (quantal). When compiling node.js from source (see "Second attempt" below), node produces a segmentation fault. What can I do here? First attempt First of all, I tried to…
cyroxx
  • 3,809
  • 3
  • 23
  • 35
12
votes
4 answers

adb error on Android SDK. Using Linux Ubuntu 64 bit 12.10

I looked on this site for this error I'm encountering: Stopping ADB server failed (code -1). Unable to run 'adb': Cannot run program "/home/ariel/Downloads/adt-bundle-linux-x86_64/sdk/platform-tools/adb": error=2, No such file or directory. Starting…
cyberspace009
  • 183
  • 2
  • 2
  • 14
9
votes
2 answers

Connecting to host by SSH client in Linux by proxy

I am really struggling with this. My host (A) is behind a proxy/firewall (PF) and needs to connect to host H. The proxy has HTTP/FTP/SOCK proxy configured and I have no issue to configure in web browser, wget etc. But when I use... ssh H //to…
Agus
  • 1,604
  • 2
  • 23
  • 48
9
votes
2 answers

Java - file.length() returns even if the file is not readable

I have a file from which I have suppressed every permission. No one should be able to read the file, right? In fact, if I run File f = new File("not_readable.pdf"); System.out.println(f.canRead()) I get false However, if I call File f = new…
una_dinosauria
  • 1,881
  • 2
  • 18
  • 19
8
votes
8 answers

Set mysql skip-networking to off

I'm trying to setup my Ubuntu 12.10 server to accept remote mysql connections, however I am having difficulties setting skip-networking to off. Note I have already set the bind-address to the internet facing IP, instead of 127.0.0.1. When I look in…
Dimitri Shukuroglou
  • 363
  • 1
  • 5
  • 13
1
2 3
8 9