- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: convert debian deb file to tar.gz
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2011 06:25 AM
тАО01-27-2011 06:25 AM
I have Debian Squeeze installed and I'm looking for a tool to convert debian deb file to tar.gz.
I'd like to install it on other linux distributions.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-27-2011 10:58 AM
тАО01-27-2011 10:58 AM
SolutionNo you can not do that. The software in a .deb file is platform specific. Search the web for an equivalent .tar.gz version.
The exception is some home made .deb files can include a tar file, which may or may not work if untarred on another distribution.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-28-2011 12:02 AM
тАО01-28-2011 12:02 AM
Re: convert debian deb file to tar.gz
well, there are packages for x86, x86-64, ppc, etc.
a .dev package is nothing more then an ar file with extra bit of info and scripts added to it. so it can be converted to any other format, like rpm or even tar.gz. although, in that case you lose your included scripts.
http://en.wikipedia.org/wiki/Deb_%28file_format%29
there is a program in the debian repositories called 'alien' which can convert any package to another. take care though, not everything will work just because you now have an installable package (think dependencies, different versions of libs etc).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2011 01:31 AM
тАО01-31-2011 01:31 AM
Re: convert debian deb file to tar.gz
Did you take a look alien ? I helps to convert between different package formats :). But the conversion is not always fully guarenteed :).
One way is to copy the binary and do an ldd and see if dependecies are installed.
ldd
Truly Evil
Lucifer Megacruel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2011 01:49 AM
тАО01-31-2011 01:49 AM
Re: convert debian deb file to tar.gz
Find the link for alien. What steve said is not really true :
See :http://kitenet.net/~joey/code/alien/
Alien has its limitations though.
Truly Evil
Lucifer Megacruel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2011 01:52 AM
тАО01-31-2011 01:52 AM
Re: convert debian deb file to tar.gz
# alien -t -c file.deb
# file.tgz generated