PDA

View Full Version : [ubuntu] gdebi without prompt



gamont
May 17th, 2009, 03:07 PM
I want to install a .deb using the command line prog gdebi inside a script.
But it prompt a y/n to confirm the installation.

There is a option 'non-interactive' but the warning scared me.

Is there an option like -y in apt-get for gdebi ?

And gdeb (in repository) is the same as gdebi ?

thanks

kpkeerthi
May 17th, 2009, 03:20 PM
Its easier with dpkg


dpkg -i <my-package>.deb

gamont
May 17th, 2009, 07:56 PM
thanks !