Reply

Join Date: Jun 2006
Posts: 117
Reputation: Marks256 is an unknown quantity at this point 
Solved Threads: 0
Marks256 Marks256 is offline Offline
Junior Poster

Mepis and installing...

 
0
  #1
Jan 17th, 2007
I just got a mepis live cd... I am running it live on my laptop.

I was able to get sound installed, but i am having trouble installing a program. The program is called "Wireless Assistant" (http://sourceforge.net/projects/wlassistant/)

Mepis detects my wireless, and it will allow me to detect my two access points, but i can not connect (dont know how...)

This is what i was told to do to install it;
tar -xjvf wlassistant-0.3.9.tar.bz2
cd wlassistant-0.3.9
./configure --prefix=/usr 
make
su -c "make install"

I am able to extract it, and i am able to change the directory... but i can not run the command "./configure --prefix = /usr". It isn't recognised as a command?


Sorry for such a newb question, but i am still used to windo$...



Can someone please help me? I am apart of another forum, and i get extremely mad when people ask dumb questions like this, but i really have no idea!



Thank you! (i just want wireless!)
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: Mepis and installing...

 
0
  #2
Jan 17th, 2007
./configure is actually telling the computer to run a shell script that is contained in the current directory (which you just set by using cd). If the terminal cannot find the command, perhaps you had better check to make sure it's there. Type the following at the prompt:
# cd wlassistant-0.3.9
# ls
Look at the output printed. There should be a file listed there named "configure". If the files don't seem remotely like the source code (no INSTALL, README files), then perhaps you're in the wrong directory.

If you're using a terminal app to enter your commands, usually the easiest way to solve the problem mentioned is to drag the wlassistant onto the terminal app, which will automatically paste the folder's location; add "cd" in front of it, and then hit return. Then try the configure script again.

Hope this helps
"Technological progress is like an axe in the hands of a pathological criminal."
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 117
Reputation: Marks256 is an unknown quantity at this point 
Solved Threads: 0
Marks256 Marks256 is offline Offline
Junior Poster

Re: Mepis and installing...

 
0
  #3
Jan 17th, 2007
Yes, there is a file named "configure"...


Edit:

When i type in

./configure

i get the following error

bash: ./configure: /bin/sh: bad interpreter: Permission denied

What the heck???
Last edited by Marks256; Jan 17th, 2007 at 10:01 pm.
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: Mepis and installing...

 
0
  #4
Jan 17th, 2007
That means that the shell can find the configure script, but cannot get past a certain line. This could be due to a number of things, but the easiest way to find out what's wrong is to try this command instead:
sh ./configure
Post any error messages you get.
"Technological progress is like an axe in the hands of a pathological criminal."
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 117
Reputation: Marks256 is an unknown quantity at this point 
Solved Threads: 0
Marks256 Marks256 is offline Offline
Junior Poster

Re: Mepis and installing...

 
0
  #5
Jan 17th, 2007
Checking for Python        : /usr/bin/python
Checking for SCons        : not found, will use mini distribution.
./configure: ./scons: /usr/bin/env: bad interpreter: Permission denied


Thank you for your help so far.
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: Mepis and installing...

 
0
  #6
Jan 17th, 2007
You may want to try downloading and installing SCons first to see if that fixes anything.

My other suspicion is that python is not in the PATH variable. Try running echo $PATH at the shell. You'll get a list of paths seperated by colons. If /usr/bin isn't listed, then you'll need to enter the following:
# PATH=$PATH:/usr/bin
And then try running the configure script again.
"Technological progress is like an axe in the hands of a pathological criminal."
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 117
Reputation: Marks256 is an unknown quantity at this point 
Solved Threads: 0
Marks256 Marks256 is offline Offline
Junior Poster

Re: Mepis and installing...

 
0
  #7
Jan 17th, 2007
Sorry i am so dumb with linux... now how do you install SCons?
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: Mepis and installing...

 
0
  #8
Jan 17th, 2007
Hehe, looks like you're going to have to install another package from source.
http://prdownloads.sourceforge.net/s...0.96.94.tar.gz

That's what is annoying about compiling from source - all too often packages have other dependancies which have dependancies of their own, causing you to go on a wild goosechase trying to install all these other packages to get the original to compile.
"Technological progress is like an axe in the hands of a pathological criminal."
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 117
Reputation: Marks256 is an unknown quantity at this point 
Solved Threads: 0
Marks256 Marks256 is offline Offline
Junior Poster

Re: Mepis and installing...

 
0
  #9
Jan 17th, 2007
So i should try everything i tried before? Great...


Wait... I can't... tar.gz isn't a tar.bz2, so i can not do what i tried before... So, back to my sub-original question; how do i install it?
Last edited by Marks256; Jan 17th, 2007 at 11:27 pm.
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: Mepis and installing...

 
0
  #10
Jan 17th, 2007
Ah. Unarchiving tar.gz is nearly identical to unarchiving tar.bz2. Just enter something like this at the shell:
# tar xfz scons-source-...
A directory containing the source code will then be created. cd to this, and then proceed with regular compilation steps.
"Technological progress is like an axe in the hands of a pathological criminal."
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Getting Started and Choosing a Distro Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC