Questions tagged [ubuntu-8.04]

For issues relating to using Ubuntu, version 8.04.

Ubuntu is a desktop and server operating system based on Debian GNU/Linux. Note that http://askubuntu.com is specifically dedicated to Ubuntu questions.

31 questions
12
votes
7 answers

Too many open files error on Ubuntu 8.04

mysqldump: Couldn't execute 'show fields from `tablename`': Out of resources when opening file './databasename/tablename#P#p125.MYD' (Errcode: 24) (23) on checking the error 24 on the shell it says >>perror 24 OS error code 24: Too many open…
nash
9
votes
3 answers

Can't update RVM - "fatal: Unable to find remote helper for 'http'"

I'm running RVM 1.1.6 on Ubuntu 8.04 and all of a sudden I can't update to the latest version anymore. ~ rvm get head Original installed RVM version: rvm 1.1.6 by Wayne E. Seguin (wayneeseguin@gmail.com) [http://rvm.beginrescueend.com/] fatal:…
Manuel Meurer
  • 3,238
  • 6
  • 35
  • 50
9
votes
3 answers

Can't install sun-java6-bin package on Ubuntu Hardy (8.04)

I just upgraded to Hardy from Dapper and can't install java for the life of me: $ sudo apt-get install sun-java6-bin sun-java6-jre sun-java6-jdk [sudo] password for bobpete: Reading package lists... Done Building dependency tree Reading state…
Lightbeard
  • 4,011
  • 10
  • 49
  • 59
7
votes
2 answers

Nginx restart command failing after installing passenger

I just installed passenger for nginx on my Ubuntu (8.04) box. Now "sudo /etc/init.d/nginx restart" fails with the following errors: Restarting nginx: [emerg]: bind() to 0.0.0.0:3000 failed (98: Address already in use) [emerg]: bind() to 0.0.0.0:3000…
Phil Jeffs
  • 153
  • 1
  • 8
5
votes
4 answers

mysqli for php on Ubuntu 8.04 LAMP stack

Does anyone know how, on Ubuntu 8.04, with PHP 5 and MySQL 5.0, to enable/install the mysqli package/extensions? Preferably I'd like to preserve the existing installations, but, if necessary, I'll reinstall from scratch. I realise it's not,…
David Thomas
  • 249,100
  • 51
  • 377
  • 410
5
votes
2 answers

Can't install egenix-mx-base on Django production VPS

I have been following these instructions for setting up a Django production server with postgres, apache, nginx, and memcache. My problem is that I cannot get egenix-mx-base to install and without this I cannot get psycopg2 to work and therefore no…
Shane
  • 851
  • 2
  • 6
  • 16
5
votes
3 answers

bash_completion not working, source command not found

I recently inherited a Ubuntu Hardy box that acts rather funky out-of-the-box. The first things I tried to do was edit my .bashrc profile to do some coloring and add some aliases I usually have, but then when I try to source the ~/.bashrc I get sh:…
kylemac
  • 623
  • 2
  • 7
  • 15
4
votes
4 answers

How to install python-igraph on Ubuntu 8.04 LTS 64-Bit?

Apparently libigraph and python-igraph are the only packages on earth that can't be installed via apt-get or easy_install under Ubuntu 8.04 LTS 64-bit. Installing both from source from source on seems to go smoothly...until I try to use them. When I…
Jacob Rigby
  • 1,323
  • 2
  • 15
  • 20
4
votes
2 answers

PHP getrusage() returning incorrect information?

I'm trying to determine CPU usage of my PHP scripts. I just found this article which details how to find system and user CPU usage time (Section 4). However, when I tried out the examples, I received completely different results. The first…
Andrew Ensley
  • 11,611
  • 16
  • 61
  • 73
2
votes
1 answer

What is the equivalent of the following jdk path in Ubuntu 8.04?

I got to setup the following two variables: export LD_LIBRARY_PATH=/usr/java/jdk1.6.0/jre/lib/i386/:/usr/java/jdk1.6.0/jre/lib/i386/client/:./ export JAVA_HOME=/usr/java/jdk1.6.0/ Since, the above is for the version of JDK installed via SunJDK,…
millisami
  • 9,931
  • 15
  • 70
  • 112
2
votes
4 answers

Compiling ruby1.9.1 hangs and fills swap

I'm compiling Ruby 1.9.1-p376 under Ubuntu 8.04 server LTS (64-bit), by doing the following: $ ./configure $ make $ sudo make install ./configure works without complaints. make hangs indefinitely until all my RAM and swap is gone. It get stuck…
nfm
  • 19,689
  • 15
  • 60
  • 90
2
votes
1 answer

Reverse Proxy with Apache2 don't work

I'm using Apache/2.2.8 (Ubuntu) and have a problem. There is a file /etc/apache2/sites-available/backuppc with the following: ProxyRequests Off Order deny,allow Allow from all ProxyPass /backuppc…
Ice
  • 1,162
  • 3
  • 14
  • 27
1
vote
0 answers

How to install Socket.IO>=0.7.8 with npm on Ubuntu 8.04?

I searched for a long time, but haven't found the right answer yet. I'm not the only one who has/had problems installing Socket.IO >0.7.7 but other solutions didn't work for me. A possible problem could be an old version of GNU tar (version is 1.19)…
Alex
  • 744
  • 8
  • 20
1
vote
6 answers

'no such file to load -- net/ssh' from rails Controller on Ubuntu

I have a very simple controller: require 'net/ssh' class MyController < ApplicationController def foo render :text => 'bar' end end But when I request http://server:3000/my/foo I get: MissingSourceFile in MyController#foo no such…
alex2k8
  • 42,496
  • 57
  • 170
  • 221
1
vote
1 answer

Seeing terminal logs of Flask App after session on server ended but app is still running on background

The scenario is below: I SSH to server Ubuntu 18.04.3 LTS (GNU/Linux 4.15.0-96-generic x86_64) using putty with my credentials, from Windows Go to the directory where I put my source code start Flask app by running command python3 main.py logs are…
Arif
  • 49
  • 1
  • 9
1
2 3