LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-30-2008, 02:39 PM   #1
Felixone
LQ Newbie
 
Registered: Sep 2008
Posts: 2

Rep: Reputation: 0
Question How do I extract a file on the command line


I truly am a beginner in the Linux field such that all your terms are new to me and have almost no meaning. I am at the stage of having installed Ubuntu 8.04 into an empty Pc successfully but the PC had no spare port fo a Wireless card so I have purchased a D-Link G122 USB Connector only to find that there was no Linux Driver. D-Link have advised to come here to download a driver and this I have on CD now ready to move to the Linux PC. At this point I have a problem because the instructions are Quote -extract and install( read file README for details)***I can see no Ikon named Readme *** but to go on I am then to write some code. Where do I start? What do I do to begin writing? I have no flashing curser, no obvious place to write. Your help would be appreciated. Many thanks from Felixone.
 
Old 09-30-2008, 02:54 PM   #2
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,636

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by Felixone View Post
I truly am a beginner in the Linux field such that all your terms are new to me and have almost no meaning. I am at the stage of having installed Ubuntu 8.04 into an empty Pc successfully but the PC had no spare port fo a Wireless card so I have purchased a D-Link G122 USB Connector only to find that there was no Linux Driver. D-Link have advised to come here to download a driver and this I have on CD now ready to move to the Linux PC. At this point I have a problem because the instructions are Quote -extract and install( read file README for details)***I can see no Ikon named Readme *** but to go on I am then to write some code. Where do I start? What do I do to begin writing? I have no flashing curser, no obvious place to write. Your help would be appreciated. Many thanks from Felixone.
The 'extract and install' is what you have to do to the file. You don't say what kind of file you have, so we can't tell you how to extract the files from it.

If you need a cursor, you need to open a terminal window..look in your start menu, and find the terminal, and click it. You say you're going to "write some code"...from your level of experience, I'm guessing you're not going to program, but to type in some commands.......

This page https://wiki.ubuntu.com/NdisWrapper_DWL-G122 has complete instructions and a how-to for your exact hardware, found from a quick Google search. This http://ubuntuforums.org/showthread.php?t=571188 is an Ubuntu networking tutorial.
 
Old 09-30-2008, 10:37 PM   #3
linuxer8786
Member
 
Registered: Sep 2008
Posts: 43

Rep: Reputation: 15
you can use 'tar' command, some argument you can find in here:
http://linux.about.com/od/commands/l/blcmdl1_tar.htm

Last edited by Tinkster; 10-30-2010 at 03:42 PM.
 
Old 10-01-2008, 08:56 AM   #4
Felixone
LQ Newbie
 
Registered: Sep 2008
Posts: 2

Original Poster
Rep: Reputation: 0
Question Getting Started from Zero.

Quote:
Originally Posted by TB0ne View Post
The 'extract and install' is what you have to do to the file. You don't say what kind of file you have, so we can't tell you how to extract the files from it.

If you need a cursor, you need to open a terminal window..look in your start menu, and find the terminal, and click it. You say you're going to "write some code"...from your level of experience, I'm guessing you're not going to program, but to type in some commands.......

This page https://wiki.ubuntu.com/NdisWrapper_DWL-G122 has complete instructions and a how-to for your exact hardware, found from a quick Google search. This http://ubuntuforums.org/showthread.php?t=571188 is an Ubuntu networking tutorial.
Thanks guys. I do not have a start button but I do have some buttons which get me to menus. These are Applications Places System.

The software I have downloaded to Cd is: rt/73-cvs-daily.tar.gz
Then I am supposed to execute in console:

cd/driver-folder/Module
sudo make
sudo make install
audo modprobe rt73

The question is How?

One of the above sites requires me to start again. There is no point. The other assumes knowledge I do not yet possess. But thanks for trying.

I have had a look at what Linux can offer and that intersts me which is why we are where we are. I must tell you I am nearly 87 YOA and still going strong. Look at www.wudja.co.uk

Best wishes Felixone
 
Old 10-01-2008, 10:10 AM   #5
Mralexb
LQ Newbie
 
Registered: Sep 2008
Posts: 10

Rep: Reputation: 0
Quote:
Originally Posted by Felixone View Post
Thanks guys. I do not have a start button but I do have some buttons which get me to menus. These are Applications Places System.

The software I have downloaded to Cd is: rt/73-cvs-daily.tar.gz
Then I am supposed to execute in console:

cd/driver-folder/Module
sudo make
sudo make install
audo modprobe rt73
In the command line, navigate to the folder where the file is. Now the 'tar' at the end of the file means that it is a whole bunch of files linked together so you will have to untar them. The 'gz' after that means it is a zipped file or compressed.

What you need to do is type the command:
sudo tar -zxvf 73-cvs-daily.tar.gz
This unzips the file.

Hopefully it will create new folder from your current directory. Navigate to that folder 'cd [folder name that it unzipped]' and then run the commands

sudo make
sudo make install
sudo modprobe rt73

If that does work, make sure you read the 'readme' that is in the folder. Hope that helps.
 
Old 10-01-2008, 10:14 AM   #6
linuxman8786
Member
 
Registered: Sep 2008
Posts: 43

Rep: Reputation: 15
Quote:
Originally Posted by Felixone View Post
Thanks guys. I do not have a start button but I do have some buttons which get me to menus. These are Applications Places System.

The software I have downloaded to Cd is: rt/73-cvs-daily.tar.gz
Then I am supposed to execute in console:

cd/driver-folder/Module
sudo make
sudo make install
audo modprobe rt73

The question is How?

One of the above sites requires me to start again. There is no point. The other assumes knowledge I do not yet possess. But thanks for trying.

I have had a look at what Linux can offer and that intersts me which is why we are where we are. I must tell you I am nearly 87 YOA and still going strong. Look at www.wudja.co.uk

Best wishes Felixone
First, you must extract that compress file

Last edited by Tinkster; 10-30-2010 at 03:50 PM.
 
  


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
Need command line app to extract image from mp3 sutrannu Linux - Software 2 05-14-2009 11:04 PM
nfs a file shares ok via file mngr but not command line. Suse 9.1 acummings Linux - Networking 2 10-09-2004 02:23 PM
Command line extract Daunted Linux - Software 2 09-30-2004 05:37 PM
Command to output file content line by line aznluvsmc Programming 2 09-12-2004 07:45 PM
How to run command-line? How to extract RPM? How to install SAMBA? azmadar Linux - Newbie 7 09-09-2004 05:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:17 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