Author Topic: Wireless Adapter  (Read 5547 times)

0 Members and 1 Guest are viewing this topic.

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Wireless Adapter
« Reply #15 on: January 13, 2006, 05:51:12 pm »
The file is stored twice.  It is tarred, which combines all the files together, then it is gzipped. 

file -> file.tar -> file.tar.gz. 

tar file -> file.tar
gzip file.tar -> file.tar.gz

gunzip file.tar.gz -> file.tar
untar file.tar -> file

Read the manpage for tar, it tells you how to automatically ungzip it using the -z parameter.  It goes on to explain how this .tar and .gz business works, which is helpful no matter which OS you're on. 

Also, the word is "why", not "y".. I spend a lot of time helping you here, don't be lazy.  It makes me feel like I'm wasting my time. 

tar -xvvzf filename.tar.gz
x is for extract
vv is for very verbose
z is un-gzip
f is for who knows what
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: Wireless Adapter
« Reply #16 on: January 13, 2006, 05:57:35 pm »
tar -xvvzf filename.tar.gz
x is for extract
vv is for very verbose
z is un-gzip
f is for who knows what

That's very nice, considering that he's on Windows. 

Also, f stands for "file", by default files are tarred/untarred from stdin. 

Offline Nate

  • Full Member
  • ***
  • Posts: 425
  • You all suck
    • View Profile
Re: Wireless Adapter
« Reply #17 on: February 02, 2006, 05:44:57 pm »
Ok i have actually made progress on this by leaps and bounds.  It actually recognizes the adapter but only when i boot from a disk.  My problem now is how do i make it see the network?

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: Wireless Adapter
« Reply #18 on: February 02, 2006, 11:49:39 pm »
If the network is DHCP-enabled, then run:
dhcpcd -d <device>

and it should pull an ip.  The device will be "eth0" or "eth1" or "wi0" or something. 

If you have an encryption key on your network, you'll need to do other stuff.  Here is the script I wrote to set up my network:
http://www.javaop.com/~iago/home-wireless.sh
it uses a static ip, but it should be easy enough to modify it to your needs. 

Offline Nate

  • Full Member
  • ***
  • Posts: 425
  • You all suck
    • View Profile
Re: Wireless Adapter
« Reply #19 on: February 04, 2006, 07:21:24 pm »
Online thx.  I ended up using Ubuntu, Slackware had alot of problems on my comp and i dont know why.

The only thing now is that i have to reconfigure the wlan everytime i reboot and i only seem to be able to configure it on root.
« Last Edit: February 04, 2006, 07:44:42 pm by Nate »

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: Wireless Adapter
« Reply #20 on: February 05, 2006, 01:05:36 pm »
That's how I do it.  I know that Slackware has a rc.wireless startup script, but I don't use it.  The first thing I do when I log in at home is 'sudo ./home-wireless'.  When I'm not at home, I run the appropriate script.  It saves me a lot of trouble of re-modifying configuration files whenever I change networks.