How do I install a .deb file

Ferret

Marching On Together !
Staff member
Administrator
Messages
17,489
FTP your file to the tmp folder.

Start up a telnet session and type

Apt-get update

hit enter

then type

Dpkg -i /tmp/*.deb

hit enter
 

Youknowme02

Registered
Messages
246
I try doing what you saying and I keep getting "bad command file not found" error
I trying changing directories to the tmp dir and same thing???
 

juli13

Staff member
Administrator
Messages
10,198
so how do I install .deb files then?

Ferrrt gave you above the command line for it.
Since you have an error message, let see if you have deb package installed.
Run this command

dpkg –help

If you have error,than flash your box again or change image.
 

baha2

Super VIP
Messages
6,530
Upper and lower case letters are different under linux.
You have to type commands like this:
apt-get update
dpkg -i /tmp/*.deb
 

Youknowme02

Registered
Messages
246
Ferrrt gave you above the command line for it.
Since you have an error message, let see if you have deb package installed.
Run this command

dpkg –help

If you have error,than flash your box again or change image.

Ok I did that and I got error "command not found" I flashed my box again
using the online flash Openatv 6.0 latest version same error?
 

kalkan99

VIP
Messages
1,689
software oe 2.0
Commands are as follows

opkg update
opkg upgrade
opkg install --force-depends /tmp/*.ipk
opkg update
opkg install /tmp/*.ipk
opkg install --force-overwrite /tmp/*.ipk
 

juli13

Staff member
Administrator
Messages
10,198
That mean deb package in not included in image, find the plugin in ipk format for atv image.
 

Youknowme02

Registered
Messages
246
software oe 2.0
Commands are as follows

opkg update
opkg upgrade
opkg install --force-depends /tmp/*.ipk
opkg update
opkg install /tmp/*.ipk
opkg install --force-overwrite /tmp/*.ipk


Ok it took the opkg update but all the rest I got errors saying cannot install
 

mr.strauss

Registered
Messages
8,414
Move the .deb file to / tmp and then

opkg update
opkg install /tmp/*.ipk


If the plugin has dependencies then

  1. dpkg -i /tmp/*.deb
  2. apt-get update
  3. apt-get -y -f install


Look here
Code:
http://wiki.blue-panel.com/index.php/APT_(en)
 
Last edited:
Top