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

Notices


Reply
  Search this Thread
Old 08-07-2012, 11:52 PM   #91
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176

I will check on the dependencies. I understand that they have to be fulfilled. Thank You

I am reading about installing a binary package where the source code has been compiled and the software is ready to run once installed. Also reading about tar.gz file. I now understand that the binary or a source package of the application may still need dependencies.
I'm reading the " Linux In A Nutshell" Book to learn and to prevent from making further mistakes.
 
Old 08-08-2012, 12:11 AM   #92
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
You can download & look at the packageses from the link that I gave you as they aren't executeable unless you make them executeable. Also they should had a "Read Me" file to help you.
 
Old 08-08-2012, 02:53 PM   #93
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
Do not download Ubuntu packages and install on Debian.

You may get away with it but you may not. Ubuntu has changed the files system they use so that some packages will not install all parts in the same place as Debian is going to be looking for them.

A .deb file has an install script, among other things, that determines which pieces go where. Use only Debian packages for a Debian OS.

There are exceptions to this but I wouldn't risk it for a critical package.

If you can get the correct CD for the package you need I think all the depends should be on it.

You will still need to edit your sources.list to get restricted packages I think. You will need a line in there to look for the CD at any rate.

The command;
Code:
nano /etc/apt/sources.list
needs to be typed in at the # prompt, not in nano. Simply get out of nano and back to the # prompt. Enter the command there.

Nano will come back up with the sources.list on it ready to edit.

Work on getting your connection fixed first. Once you have that then anything else you need to get your video working is a lot easier to do.

As for adding the CD to the sources.list, I do not know off hand what the entry should look like. I think it would be in the sources.list on a Live CD.

Someone else may correct this but running, from your # prompt;
Code:
apt-cdrom add
may put the correct entry in the sources.list to use the CD as a repo.

You must always run;
Code:
apt-get update
after all changes to the sources.list to bring the actual list of packages available up to date with your sources.list.
 
Old 08-08-2012, 04:16 PM   #94
Dutch Master
Senior Member
 
Registered: Dec 2005
Posts: 1,686

Rep: Reputation: 124Reputation: 124
The package linked to in post #92 has no dependencies. It's not in the contrib tree, but in non-free as it's a binary blob (no source code available). Get it directly from the Debian US mirror (as you're a US resident) at: http://http.us.debian.org/debian/poo...ueeze1_all.deb (click the link to get it) Then, on your Debian install, issue the following command:
Code:
dpkg -i /path/to/firmware-ralink_0.28+squeeze1_all.deb
Replace /path/to/ with the actual path (directory structure) to where you've saved the file. It's not clear from the package where it installs the drivers provided, nor if it actually loads the appropriate driver immediately. Reboot to be certain it's picked up by the kernel.

After the reboot is complete, become root again and issue the iwconfig command:
Code:
iwconfig -a
This should report any available network interfaces, including your wireless card. Note what name the wireless card has and use that in the following command (still as root)
Code:
ifup <name of wireless interface>
If it reports back with an IP-address, you're in business. Try connecting to your accesspoint and if that works, try the internet.
 
Old 08-08-2012, 05:22 PM   #95
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
I have fantastic news. I successfully installed Debian 6.0.5 Squeeze on my Desktop Pc.

I am very pleased with my new OS. I am very grateful for the help, instruction's,advice and time that you ( Eddy1; Widget; Caraval; Dutch Master ) gave me. Thank You very much.

The system is functioning properly and it's stable. It's fast and efficient as well.

It is not connected to the network because during the install it couldn't complete the DHCP because I am wireless. I hope to be able get my new OS online later. For now I just want to enjoy and learn my new system.

You folks that helped me are amazing people; Thanks again
Ztcoracat
 
Old 08-08-2012, 05:38 PM   #96
Dutch Master
Senior Member
 
Registered: Dec 2005
Posts: 1,686

Rep: Reputation: 124Reputation: 124
If you have an USB-stick, use it to transfer the driver I linked to to your new Debian system. Follow the commands I gave you earlier and you'll be online quickly (well, at least I hope )

Anyway, congrats on getting it to work!

Last edited by Dutch Master; 08-08-2012 at 05:39 PM. Reason: typo
 
Old 08-08-2012, 05:40 PM   #97
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Ubuntu 10.04 / Ultimate Edition 2.7 is no longer on my system.

I am now in a dual boot: Windows XP ( with an internet connection) and Debian 6.0.5 Squeeze.

When my systems boots I have 2 options. Just sit back and watch my system boot to Debian or scroll down to Windows XP.
 
Old 08-08-2012, 06:01 PM   #98
Dutch Master
Senior Member
 
Registered: Dec 2005
Posts: 1,686

Rep: Reputation: 124Reputation: 124
In that case, store the file on your XP system, reboot into Debian, copy the file over and perform the tasks set out above.
 
Old 08-08-2012, 06:22 PM   #99
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by Dutch Master View Post
If you have an USB-stick, use it to transfer the driver I linked to to your new Debian system. Follow the commands I gave you earlier and you'll be online quickly (well, at least I hope )

Anyway, congrats on getting it to work!
Thanks!...The firmware-ralink_0.28+squeeze1all.deb is sitting on my desk top!
Before I open the terminal for the first time on my new system I need your advice.

Do I have this correct to install?
Code:
dpkg -i /cd/Desktop/firmware-ralink_0.28+squeeze1all.deb
 
Old 08-08-2012, 08:04 PM   #100
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
You should be able to just right click on the package on your desktop and get a right click menu.

In it select "install with gdebi" or something very similar containing the name "gdebi". Will install it for you unless there is a dependentcy problem and if so will tell you exactly what you need.

Don't think that should happen, should just install that package with no trouble at all.

Glad to here it is working. Good job.
 
Old 08-08-2012, 08:21 PM   #101
Dutch Master
Senior Member
 
Registered: Dec 2005
Posts: 1,686

Rep: Reputation: 124Reputation: 124
If gdebi is installed, just do as Widget wrote. If it's not on your system, install the package with:
Code:
dpkg -i /home/<username>/Desktop/firmware-ralink_0.28+squeeze1all.deb
Replace <username> with your actual username (not root!). Mind you'll need to perform this as root, so issue the su command and enter the root password when requested.

Alternatively, install gdebi first, then use it to install the package as described above:
Code:
apt-get install gdebi
Again, as root.
 
Old 08-08-2012, 08:48 PM   #102
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Do you have Desktop Environment yet?
If not you'll need the network running to get it.
After installing Ralink package you need to start network.
As root
Quote:
dhclient wlan0
tasksel
tasksel gives the option to install DE & laptoptools
 
Old 08-08-2012, 09:36 PM   #103
widget
Senior Member
 
Registered: Oct 2008
Location: S.E. Montana
Distribution: Debian Testing, Stable, Sid and Manjaro, Mageia 3, LMDE
Posts: 2,628

Rep: Reputation: 497Reputation: 497Reputation: 497Reputation: 497Reputation: 497
Quote:
Originally Posted by EDDY1 View Post
Do you have Desktop Environment yet?
If not you'll need the network running to get it.
After installing Ralink package you need to start network.
As root
tasksel gives the option to install DE & laptoptools
See post 95 for the good news.
 
Old 08-09-2012, 12:02 AM   #104
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
I'm rebooting now to go to Debian and right click on that package and select install with gdebi.
If that doesn't work I will try:
Code:
dpkg -i /home/ztcoracat/Desktop/firmware-ralink_0.28+squeeze1all.deb
I'll post back and let you know how things are going. I really appreciate your help.
 
Old 08-09-2012, 12:29 AM   #105
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Widget:

I right clicked on that pkg and followed the rest of your instructions.
Good News! All dependencies are satisfied. Installation Finished.

Now do I open the terminal and execute this command?
Code:
dhclient wlano
As root of course-
 
  


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
LXer: How to add Debian Squeeze to your Debian Lenny FAI install server LXer Syndicated Linux News 0 09-08-2011 07:21 PM
LXer: How To Install A (Canon) Printer On Debian And Debian-Like Systems LXer Syndicated Linux News 0 05-20-2011 11:01 AM
how can i install debian 5.06 in my pc i have downloaded debian-update-5.0.6-i386-DVD siddtanu Debian 2 10-21-2010 02:56 PM
Debian Etch install from dvd, not authenticated by Debian jiobo Linux - Security 3 01-11-2009 07:55 PM

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

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