Need to install wireless firmware w/o a network connection

Archived topics about LMDE 1 and LMDE 2
Locked
OmegaD
Level 1
Level 1
Posts: 34
Joined: Mon Feb 27, 2012 5:15 pm

Need to install wireless firmware w/o a network connection

Post by OmegaD »

I have two machines running LMDE 201303.

I have access to the neighbor's wireless router on Machine A, and need access to it on Machine B (which is a fresh install from a cd.)

I have no ethernet connection available at home.

Machine B is a Dell Vostro 1510. I found this: [url]http://forums.linuxmint.com/viewtopic.php?f=90&t=90173[/url] which indicates that I would normally need to run

Code: Select all

sudo aptitude install firmware-iwlwifi
...except of course that Machine B has no internet connection through which to run that command.

How do I download and "copy" the "firmware-iwlwifi" file/package/folder/whatever to a USB stick using Machine A and then install it on Machine B? I'm going to need a step-by-step. Thanks.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
kukamuumuka

Re: Need to install wireless firmware w/o a network connecti

Post by kukamuumuka »

If you have those deb-packages on your usb-drive onto folder packages, it goes like this:
1. Mount usb-drive
2. Open terminal and go to the packages folder

Code: Select all

cd /media/usb-drive_or_whatever/packages
3.Install packages

Code: Select all

sudo dpkg -i *.deb
OmegaD
Level 1
Level 1
Posts: 34
Joined: Mon Feb 27, 2012 5:15 pm

Re: Need to install wireless firmware w/o a network connecti

Post by OmegaD »

Thanks. That answers the second half of my question, but how do I actually get the "deb-packages" on my usb-drive?
kukamuumuka

Re: Need to install wireless firmware w/o a network connecti

Post by kukamuumuka »

OmegaD wrote:Thanks. That answers the second half of my question, but how do I actually get the "deb-packages" on my usb-drive?
Make a package search script an copy it to terminal and press enter .. :wink:
OmegaD
Level 1
Level 1
Posts: 34
Joined: Mon Feb 27, 2012 5:15 pm

Re: Need to install wireless firmware w/o a network connecti

Post by OmegaD »

Thanks.

Need some more direction though. I've never done this before. So I clicked where you indicated, and it made a file that had the following text in it:

Code: Select all

#!/bin/sh
I tried typing that into a terminal from the usb drive, and from the start menu, and tried both with "sudo" before it... not sure what I'm doing here but it doesn't seem like anything is happening.

I need a step-by-step. Thanks.
kukamuumuka

Re: Need to install wireless firmware w/o a network connecti

Post by kukamuumuka »

OmegaD wrote:Thanks.

Need some more direction though. I've never done this before. So I clicked where you indicated, and it made a file that had the following text in it:

Code: Select all

#!/bin/sh
I tried typing that into a terminal from the usb drive, and from the start menu, and tried both with "sudo" before it... not sure what I'm doing here but it doesn't seem like anything is happening.

I need a step-by-step. Thanks.
1. Mark a package for installing (or re-installing)
2. Make a package retrieve script
3. Open the script as text and paste it contents to terminal

An example mint-wifi

Code: Select all

wget -c http://debian.lth.se/linuxmint/pool/main/m/mintwifi/mintwifi_1.9_all.deb
If there is many packages, you can install them using command:

Code: Select all

sudo dpkg --force-depends -i *.deb
You can make a folder for deb-packages and move packages there.

Code: Select all

mkdir ~/packages
mv *.deb ~/packages
wayne128

Re: Need to install wireless firmware w/o a network connecti

Post by wayne128 »

I have two machines running LMDE 201303.

I have access to the neighbor's wireless router on Machine A,
and need access to it on Machine B (which is a fresh install from a cd.)

I have no ethernet connection available at home.
I would just clone Machine A and copy to Machine B follow by install grub2 to mbr of Machine A.
Locked

Return to “LMDE Archive”