Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
Im trying to install some drivers for my EDIMAX EW-7128g PCI card but as im a i dont know how to install things on linux
i Have downloaded the drievrs but i dont know where to start could someone please help me i read another post on this forum that u had to put $ CD or sommet like that but where do u put $ CD ????/
according to your link, this card only work using ndiswrapper. Ndiswrapper is an appsthat allow you to load a windoze driver under linux.
Btw, there is no easy "next-next-finish" way to install something in Linux, if you want help about how to install the drivers, it would be somewhat a good idea to tell us some details about the "drivers" you downloaded ( name, extension, where did you found it at very least...)
This is a command that should be typed into a terminal. You can get to the terminal by clicking on the Fedora icon (often in the bottom left corner), and selecting System Tools, then Terminal. (The exact location varies between different distributions of linux so you might have to look around those menus to find it). Once you have opened a terminal you will see a prompt (on my machine it is looks like this 'dan@ringmaster:~$', which means the current user is 'dan', the machine is called 'ringmaster', and the current directory is '~' (my home directory). The $ at the end indicates im a normal user, a # would mean I was the super user)
In the command you mention
Code:
$ cd ~
the at the start $ isnt meant to be typed, it is merely there to show you should be a normal user at this point, so you should type
Code:
cd ~
. At some point in the instructions it will mention the 'su' command and the $ that is normally shown in the instructions will change to a #, this indicates that the command should be run as the super user (the 'su' command will have changed the current user)
ok, so the drivers you downloaded is a "source" (mean you have the open source code in your hand weee!). I don't know much about this drivers but I'll gave you basic information.
First, you need to make sure you have gcc on your linux. Open a terminal (the text mode thingy) and type :
su - (will prompt you a password, you are root, so be careful)
gcc -v if you get lot of text and version number, you are fine... if not, you will need to install GCC... if it's the case, tell us, we will guide you.
Assuming you have GCC, now you need to compile the drivers, the usual way to compile is the following :
(assuming you have the tar.gz package in the same directory as you are. If bot use "cd" to change directory, like : cd /home/bob will get you into /home/bob)
OF COURSE these command will need some editing for the name of directoey and such.
tar -xjf the_driver_thingy.tar.bz2 ( this decompress the driver)
cd the_driver_dir_created
NOW you might want to take a look in this directory. There is probably a file named "README" or "INSTALL" you want to read, (or is there documentation online?), start your favorite text editor and READ IT, there is probably some step you need to follow to install the driver.
The USUAL way from now is to type :
./configure
make
make install
BUT dont expect this to be that simple on a beta driver. READ the README file or the docu, I'm pretty sure it just wont be that easy. If there is something in docu/readme you dont understand, ask us (but try something and use your head first :P )
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.