LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 01-02-2005, 04:04 PM   #61
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled

You downloaded libs for a Sparc box? No, I have no idea.

Quote:
install libraries for some software
What libraries, what package, from where, for what software? Quoting the error message is good, but more info is always helpful. Also, sorry if you have done this, but try reading the docs in packages you download, the man pages on your system, the files in /usr/doc, googling, and so on. I/we're happy to try to help, but LQ is more for when personal resources fail than a first stop.
 
Old 01-03-2005, 10:07 AM   #62
dbgtrulz
LQ Newbie
 
Registered: Dec 2004
Posts: 29

Original Poster
Rep: Reputation: 15
Nevermind, I found out that I downloaded the package for the wrong system type (PowerPC).
Now, I have been looking for answers to these for a while, so I think I wont find these out on my own:
[list=1][*]I need to find a library called libm. Can't find it anywhere.[*]I need to know how to install a .zip package. I downlaoded a driver for my PCMCIA network card (linux), but dont know how to install a .zip file[/list=1]

I'm sorry I've been asking questions that I fix on my own. It's a waste of your time. I will try to look thoroughly for answers before asking about them.
 
Old 01-03-2005, 11:01 AM   #63
Thuni
LQ Newbie
 
Registered: Dec 2004
Location: Near Stuttgart
Distribution: Slackware
Posts: 5

Rep: Reputation: 0
Hey...

libm should be in the package glibc in /slackware/l on the cd.
Try to install it.

With the driver i can't help you. But perhaps you could unzip it and look whats inside. Perhaps you can find a readme file or something like that.
$ unzip ????.zip

...Thuni...
 
Old 01-03-2005, 03:18 PM   #64
dbgtrulz
LQ Newbie
 
Registered: Dec 2004
Posts: 29

Original Poster
Rep: Reputation: 15
Quote:
(0)Make sure the C-compile version. Run "gcc -v".
If gcc version is 2.xx, use release driver RTL8180_24x_RH73.zip.
If gcc version is 3.xx, use release driver RTL8180_24x_RH90.zip.

(1)Modify macros in Makefile.
KERNELRELEASE - represent kernel release version
IO_FLAGS - pci I/O space mapping
ENDIAN_FLAGS - big/little endian
OP_MODE_FLAGS - Operation on either AP or Client mode
DRV_FLAGS - Driver debugging messge ...etc.

(2)Check pci module initialization and system call interfaces in the provided source code,
r8180_pci_init.c ....etc.

(3)Run 'make' to generate new driver module.

(4)Run 'make install' to install new driver module.

(5)Refer to < Set wireless lan MIBs > and modify script files,
wlanup/wlandown, to set Wireless LAN specific parameters.
Run wlanup/wlandown to activate/shut_down wireless lan.
Usage:
./wlanup {ap|infra|adhoc}
./wlandown
Note:
- "./wlanup ap" works if OP_MODE_FLAGS is assigned RTL_ACT_AS_AP in Makefile.
- "./wlanup {infra|adhoc}" works if OP_MODE_FLAGS is assigned RTL_ACT_AS_AP
in Makefile.
uhhhh.........I dont understand it. Is there supposed to be a command named "make"? When I type make, it says "-bash: make: command not found" and where do I get all the information to put in the MAKEFILE file. Also, when I type "gcc -v", i get "-bash: gcc: command not found"
 
Old 01-03-2005, 04:24 PM   #65
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled
I have no idea about this - I've got three separate computers jacked into a hardware router sharing a net connection with lots of wires all over the place. Networking is not my strong suit and wireless gives me the willies. You need to install the gcc package and apparently a lot of other stuff. What exactly did you install? It might be better to install everything on your first system and then you can learn what you can do without as time goes on. But you can't do without gcc. (It's possible it is installed and there's just another problem, but I doubt it.) Once you do that, the best I can say is

gcc -v (or just look at what you installed, probably 3.3.4)
pick the zip (probably RTL8180_24x_RH90.zip)
But why is it a zip, anyway? For Linux they should distribute tars. Anyway... you can handle zips, so it's not an issue.

(1)$EDITOR Makefile
As far as modifying them, that's easy. To *what*, I haven't a clue. Maybe it has defaults and those will do.

(2)No clue

(3)Yes, a command - make

(4)Command w/arg - make install
You can and probably should be regular user for everything but 'make install' - for that you need to su. And you can probably checkinstall (from /extra on your disks) and that'll make it easier to remove if anything goes wrong. Not that it will, of course.

(5)After installation, again no clue with what to modify, but the usage is clear enough.
./wlanup {ap|infra|adhoc}
./wlandown

Maybe a wlan guru can step up here and maybe some of this would help.

8180 stuff
 
Old 01-03-2005, 06:16 PM   #66
dbgtrulz
LQ Newbie
 
Registered: Dec 2004
Posts: 29

Original Poster
Rep: Reputation: 15
OK. Something's wrong. When I type make, I get:
Quote:
-bash: make: command not found
What the heck is going wrong!?!
 
Old 01-03-2005, 06:42 PM   #67
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled
Did you install the make package?

It'd be overkill but you might want to just 'installpkg' /path/to/d/* and path/to/l/*.
 
Old 01-03-2005, 07:21 PM   #68
black hole sun
Member
 
Registered: Jul 2004
Distribution: Slackware Current
Posts: 127

Rep: Reputation: 15
Quote:
Originally posted by digiot
Did you install the make package?

It'd be overkill but you might want to just 'installpkg' /path/to/d/* and path/to/l/*.
Huh? I think that's just going to confuse him...

Get automake:

http://slackware.com/pb/download.php...1.9.4-noarch-1

and make:

http://slackware.com/pb/download.php...ke-3.80-i386-1

Then su to root

Code:
su -p
then use installpkg

Code:
installpkg *.tgz
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
SuSE 9.3, Linux Noobie Startup Problem Fritz The Cat Linux - Newbie 4 10-15-2005 09:03 PM
Total linux noob here!!! Mantafreak Linux - Newbie 6 02-08-2005 04:11 AM
Noobie at connecting Windows XP to Linux TopGun Linux - Newbie 5 05-07-2004 01:21 PM
Programming nOObie, not linux though craigdolson Programming 4 10-13-2003 10:34 PM
Noobie to Linux! First time installer! chowda633 Slackware 8 10-12-2003 03:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 03:48 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration