apache2-mpm-worker not available - installing on Debian etch (VPS container) - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: System Setup & Installation (/forum-32.html) +--- Thread: apache2-mpm-worker not available - installing on Debian etch (VPS container) (/thread-6887.html) Pages: 1 2 |
apache2-mpm-worker not available - installing on Debian etch (VPS container) - feelgood - 06-05-2009 04:49 AM Hi I just got a VPS container with Debian 4 etch (kernel 2.6.18-028stab060.8 redhat enterprise) I have followed the instructions to install ispCPomega on Debian: -------------------------------------------------------------- # apt-get update # apt-get upgrade # apt-get install tar bzip2 wget lsb-release # mkdir -p /usr/local/src/ispcp # cd /usr/local/src/ispcp # wget http://mesh.dl.sourceforge.net/sourceforge/ispcp/ispcp-omega-1.0.0.tar.bz2 # cd ./ispcp-* # apt-get update # apt-get upgrade # apt-get install $(cat ./docs/Debian/debian-packages-etch) -------------------------------------------------------------- And I get this error: -------------------------------------------------------------- Building package lists... Done Building dependency tree... Done apache2-mpm-worker is not available, but it referred to by another package. ... -------------------------------------------------------------- Is this related to the non-free repository? What could I do at this point? (I used to be fluent in LINUX, but it has been 10 years, I could use a hint) Thank you RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - alecksievici - 06-05-2009 04:58 AM did you add the non-free repositories in /etc/apt/sources.list? Code: # stable i just installed a debian lenny test server yesterday and it worked just fine. RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - feelgood - 06-05-2009 05:25 AM (06-05-2009 04:58 AM)alecksievici Wrote: did you add the non-free repositories in /etc/apt/sources.list?I see. I did not add the non-free repositories. I did try to use stable but my etch did not like it: Code: #stable So I thought "this stable command maybe is not for etch? maybe it is for lenny?" and I just went ahead with the following step. Very smart huh? OK, I have to add the non-free repositories. SO, do you know what I can do to make the "stable" command work on my etch or, is there something I can use instead of "stable" that will work the same (much like apt-get works when aptitude is not available)? Thanks again RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - alecksievici - 06-05-2009 06:08 AM stable is not a command, as you can see it has a # in front so it's a comment. you really didn't read the installation guide very carefully . all you have to do si pico or mcedit /etc/apt/sources.list and add Code: deb http://ftp.de.debian.org/debian/ lenny main contrib non-free Code: apt-get update i would also recommend you to upgrade to debian lenny RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - feelgood - 06-05-2009 06:13 AM OK, I get it. :blush: I am supposed to edit file /etc/apt/sources.list and add these lines (modifying them for etch, I assume) Code: # stable Now. This file does not exist in my Debian etch. In /etc/apt I only see - trusted.gpg - trustdb.gpg - secring.gpg - apt.conf.d (directory) - sources.list.d (directory) There is no sources.list file. Shall I just create one and write those two lines in it? (06-05-2009 06:08 AM)alecksievici Wrote: stable is not a command, as you can see it has a # in front so it's a comment. you really didn't read the installation guide very carefully .Thanks alecksievici, I wrote my previous post while you were writing yours ! I did read the guide, but I misinterpreted the instructions. Sorry. OK. Two questions: 1. If /etc/apt/sources.list does not exist in my installation, do you think this is a symptom that something else is missing? 2. I have thought of upgrading to Lenny, but this Etch I have, being an off-the shelf Virtuozzo VPS container version of Debian, may be missing other things...? I am not sure. Do you know if this could be the case? Things missing could lead to many complications. I would not want to get involved in a major project when I just came back to Linux. I just need the Cpanel to work, that's all. Thanks for your help. RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - alecksievici - 06-05-2009 06:24 AM wow, that's not good. when you run apt-get update i guess it doesn't do anything just says "Reading package lists... Done" here's a sample of /etc/apt/sources.list + the 2 required repositories Code: # Find more repositories here: http://www.apt-get.org just "pico /etc/apt/sources.list" copy+paste the above code, save the file and run apt-get update. now you should be able to install ispcp. RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - feelgood - 06-05-2009 06:41 AM (06-05-2009 06:24 AM)alecksievici Wrote: wow, that's not good. #pico /etc/apt/sources.list -bash: pico: command not found This is going to be tough. RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - alecksievici - 06-05-2009 06:43 AM i forget to mention: pico or any other text editor (vi, mcedit etc.) your debian etch installation seems to be barebone... RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - feelgood - 06-05-2009 06:47 AM (06-05-2009 06:43 AM)alecksievici Wrote: i forget to mention: pico or any other text editor (vi, mcedit etc.)Thanks alecksievici I have used vi to create the file and I am about to test the installation again. It is getting packages now. Question: Are you sure the lines have to be... Code: # stable for my installation (not lenny) ? RE: apache2-mpm-worker not available - installing on Debian etch (VPS container) - alecksievici - 06-05-2009 06:55 AM i'm not 100% sure, but as long as they work in lenny, they should work in etch. those are the lines from the documentation, you could change lenny to etch again, i suggest you to upgrade to lenny. |