Results 1 to 6 of 6
Thread: Unpack .deb
|
Enjoy an ad free experience by logging in. Not a member yet? Register.
|
|
-
01-28-2010 #1
- Join Date
- Jan 2010
- Posts
- 3
Unpack .deb
i want to unpack .deb package on linux environment.
i used command dpkg -i file_name.deb
it givs error command not found,
please help.
-
01-28-2010 #2
I suspect you are trying to run before you can walk. Why do you want to unpack a .deb by hand? That's an expert's job. The usual way to install software in Debian systems is to use a front end like apt-get, aptitude or synaptic, which does all the work for you.
In Windows you download packages through your browser and then unpack them. The package contains an installation script and that's what you use to install. In Linux, you ask a package manager like apt-get or synaptic to get software for you; it downloads the package from an official software repository, unpacks and installs it.
Give me a bit of background on this. What are you actually trying to do?"I'm just a little old lady; don't try to dazzle me with jargon!"
www.hrussman.entadsl.com
-
01-28-2010 #3
- Join Date
- Aug 2005
- Location
- Houston, Texas.
- Posts
- 57
I have to agree with hazel. One of the reasons I use Debian is because of the easy of instlation; Also the number of apps available for my system.
I can't remember the last time I went hunting for a .deb package to install. No need for that if you're using Debian. Apt-get install app or with Synaptic will do it for you.
-
02-09-2010 #4
Extract the deb using ar command.
Code:ar -x file.deb
-
02-12-2010 #5
- Join Date
- Feb 2008
- Posts
- 6
Are you sure you're in the right folder when you execute the command? Sounds like you're trying to do it fro a folder the file isn't in.
-
02-17-2010 #6
Are you signed in as root when trying to install the package???