Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

debian package installation

Status
Not open for further replies.

pavNell

Technical User
Sep 27, 2002
178
US
I'm new to the debian distributions and have a question.
I need to install the id3ed package onto my pcLinuxOS debian distribution (a nice distribution for a desktop OS). Doing an '$apt-get install id3ed' produces a 'package not found' message.

So I downloaded the id3ed debian package from the debian website. The file has a .deb extension. How do I install this .deb file/package? Or even more helpfull, perhaps some url's to put into my /etc/apt/sources.list that have this package?

thanks for any help.
m
 
I don't use debian, but I would suggest doing a "man apt-get" and looking for an option that lets you tell the program where the package file is.

Alternatively, it might be possible to do an "apt-get add" or something and add the package file as a package.. then the regular "apt-get install" would work.

-Haben sie fosforos?
-No tiengo caballero, but I have un briquet.
 
ok. well, after googling "man apt-get" I'm going to try this when I get home....

1. add the line, "deb file:/home/myuser/downloads/deb_packages" to /etc/apt/sources.list

2. do a "$apt-get update"

3. then try "$apt-get install id3ed"

if I'm missing something, please let me know.
wish me luck.
 
perhaps the package is not called id3ed, try

apt-cache search id3ed

to see if it has a different name. Then just apt-get install the package.

Also, see 'man dpkg' ...
 
hold on... when you download a .deb file (debian installable) you usr [tt]dpkg[/tt] (man dpkg), so ti install your .deb file issue:

dpkg -i id3ed-xxxx.deb

Cheers.


"Avoid virus, boil your PC 1 min. before use it
 
The apt-get method he listed above should also work, but dpkg is the "right way" to do it. Other than that he could add the original source of the file to his source list and

apt-get update && apt-get install ide3ed



[plug=shameless]
[/plug]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top