Installing a .deb package on Arch - Is it possible?
The problem is simple - I have a .deb package and I want to install it on my Arch Linux. Is this possible? If yes, how?
debian arch-linux
add a comment |
The problem is simple - I have a .deb package and I want to install it on my Arch Linux. Is this possible? If yes, how?
debian arch-linux
5
Note that .deb files are just archives that can be uncompressed on any system. Depending on how complex the installation process is, that might be enough to "install" it.
– a CVn
Jul 18 '13 at 20:48
add a comment |
The problem is simple - I have a .deb package and I want to install it on my Arch Linux. Is this possible? If yes, how?
debian arch-linux
The problem is simple - I have a .deb package and I want to install it on my Arch Linux. Is this possible? If yes, how?
debian arch-linux
debian arch-linux
asked Jul 18 '13 at 19:20
BKC
393136
393136
5
Note that .deb files are just archives that can be uncompressed on any system. Depending on how complex the installation process is, that might be enough to "install" it.
– a CVn
Jul 18 '13 at 20:48
add a comment |
5
Note that .deb files are just archives that can be uncompressed on any system. Depending on how complex the installation process is, that might be enough to "install" it.
– a CVn
Jul 18 '13 at 20:48
5
5
Note that .deb files are just archives that can be uncompressed on any system. Depending on how complex the installation process is, that might be enough to "install" it.
– a CVn
Jul 18 '13 at 20:48
Note that .deb files are just archives that can be uncompressed on any system. Depending on how complex the installation process is, that might be enough to "install" it.
– a CVn
Jul 18 '13 at 20:48
add a comment |
4 Answers
4
active
oldest
votes
Is it possible? Yes. Is it a good idea? That depends. You would only really need to do this if the application only exists as a .deb
package. It is much more likely that you can just grab the upstream source and write a simple PKGBUILD to install it with pacman.
You should also search the AUR to ensure that someone hasn't done this already.
3
Note, that even if a source package is not provided (or easily accessible),.deb
files are easily extracted withlibarchive
. And,makepkg
usesbsdtar
(which useslibarchive
) by default to extract sources in aPKGBUILD
. The result of this dependency chain is that you can easily writePKGBUILD
s that make use of.deb
archives as source files. :D
– HalosGhost
Jul 27 '14 at 0:42
add a comment |
dpkg for Arch exists. You should be able to install .deb
packages on arch, but you should also not use it instead of pacman
, so just use it for selected few packages.
The default command looks like:
# dpkg -i package.deb
8
Using an alternate package manager, though an option, is not the correct solution. The correct solution is to write aPKGBUILD
to generate a pacman-native package.
– HalosGhost
Jul 27 '14 at 0:26
1
command not found: dpkg
– zygimantus
Jun 22 '17 at 12:51
3
Even if it isn't the correct way to do it, it answers the original question... "Is it possible to install a deb package, and how to do it" is answered a lot better by this answer, than simply saying "write a PKGBUILD to generate a native package", since that is not what the user asks...
– svin83
Feb 10 '18 at 2:06
add a comment |
You can install dpkg by: yaourt dpkg
.
If you don't have yaourt
, you can get it from its AUR page.
Then just cd
to where you put it and dpkg -i package.deb
whatever the package may be
1
The current comment on the AUR package for dpkg states it is out of date and "Don't use it instead of Arch's 'pacman'." Does this mean pacman can now be used to install deb packages?
– gromain
Apr 5 '16 at 7:27
2
@gromain I believe they say that to tell an ignorant user that they shouldn't be using Debian package management in Arch by default -- it should be an exception rather than the rule.
– Czipperz
Aug 21 '16 at 3:00
1
This package is out of date.
– zygimantus
Jun 22 '17 at 12:51
add a comment |
Possible? Yes, but different methods exist on basis of use case.
Assumption: The debian package doesn't have an equivalent package in the Arch (or Arch based Distribution's) official repository.
Install
yaourt
usingpacman
:
sudo pacman -S yaourt
Reason: yaourt is a front-end(CLI-based) for pacman used to query & install AUR packages. In case the debian package has already been repackaged as an AUR by someone else.
Install the
package_name
using yaourt:
sudo yaourt -S package_name
note: replace package_name
with the name of the debian package as found in the AUR. It'll attempt to install the dependencies on it's own using pacman
.
Alternative
Assumption: The Debian package hasn't been repackaged as an Arch package in AUR yet.
Install
debtap
fromyaourt
:
sudo yaourt -S debtap
Create equivalent package using
debtap
:
debtap package_name.deb
Install using
pacman
:
sudo pacman -U package_name.pkg
Not the recommended way (possibly dangerous)
This method attempts to install the package using the debian packaging format on Arch, which is not recommended due to possible danger of corrupting your installation. If using this method it is recommended to be ready with a rescue disc image of Arch & backup of the user data/space.
Install
dpkg
usingyaourt
:
sudo yaourt -S dpkg
Install the debian package using
dpkg
:
sudo dpkg -i package_name.deb
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f83540%2finstalling-a-deb-package-on-arch-is-it-possible%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is it possible? Yes. Is it a good idea? That depends. You would only really need to do this if the application only exists as a .deb
package. It is much more likely that you can just grab the upstream source and write a simple PKGBUILD to install it with pacman.
You should also search the AUR to ensure that someone hasn't done this already.
3
Note, that even if a source package is not provided (or easily accessible),.deb
files are easily extracted withlibarchive
. And,makepkg
usesbsdtar
(which useslibarchive
) by default to extract sources in aPKGBUILD
. The result of this dependency chain is that you can easily writePKGBUILD
s that make use of.deb
archives as source files. :D
– HalosGhost
Jul 27 '14 at 0:42
add a comment |
Is it possible? Yes. Is it a good idea? That depends. You would only really need to do this if the application only exists as a .deb
package. It is much more likely that you can just grab the upstream source and write a simple PKGBUILD to install it with pacman.
You should also search the AUR to ensure that someone hasn't done this already.
3
Note, that even if a source package is not provided (or easily accessible),.deb
files are easily extracted withlibarchive
. And,makepkg
usesbsdtar
(which useslibarchive
) by default to extract sources in aPKGBUILD
. The result of this dependency chain is that you can easily writePKGBUILD
s that make use of.deb
archives as source files. :D
– HalosGhost
Jul 27 '14 at 0:42
add a comment |
Is it possible? Yes. Is it a good idea? That depends. You would only really need to do this if the application only exists as a .deb
package. It is much more likely that you can just grab the upstream source and write a simple PKGBUILD to install it with pacman.
You should also search the AUR to ensure that someone hasn't done this already.
Is it possible? Yes. Is it a good idea? That depends. You would only really need to do this if the application only exists as a .deb
package. It is much more likely that you can just grab the upstream source and write a simple PKGBUILD to install it with pacman.
You should also search the AUR to ensure that someone hasn't done this already.
edited Jul 18 '13 at 20:46
answered Jul 18 '13 at 19:56
jasonwryan
49.3k14134184
49.3k14134184
3
Note, that even if a source package is not provided (or easily accessible),.deb
files are easily extracted withlibarchive
. And,makepkg
usesbsdtar
(which useslibarchive
) by default to extract sources in aPKGBUILD
. The result of this dependency chain is that you can easily writePKGBUILD
s that make use of.deb
archives as source files. :D
– HalosGhost
Jul 27 '14 at 0:42
add a comment |
3
Note, that even if a source package is not provided (or easily accessible),.deb
files are easily extracted withlibarchive
. And,makepkg
usesbsdtar
(which useslibarchive
) by default to extract sources in aPKGBUILD
. The result of this dependency chain is that you can easily writePKGBUILD
s that make use of.deb
archives as source files. :D
– HalosGhost
Jul 27 '14 at 0:42
3
3
Note, that even if a source package is not provided (or easily accessible),
.deb
files are easily extracted with libarchive
. And, makepkg
uses bsdtar
(which uses libarchive
) by default to extract sources in a PKGBUILD
. The result of this dependency chain is that you can easily write PKGBUILD
s that make use of .deb
archives as source files. :D– HalosGhost
Jul 27 '14 at 0:42
Note, that even if a source package is not provided (or easily accessible),
.deb
files are easily extracted with libarchive
. And, makepkg
uses bsdtar
(which uses libarchive
) by default to extract sources in a PKGBUILD
. The result of this dependency chain is that you can easily write PKGBUILD
s that make use of .deb
archives as source files. :D– HalosGhost
Jul 27 '14 at 0:42
add a comment |
dpkg for Arch exists. You should be able to install .deb
packages on arch, but you should also not use it instead of pacman
, so just use it for selected few packages.
The default command looks like:
# dpkg -i package.deb
8
Using an alternate package manager, though an option, is not the correct solution. The correct solution is to write aPKGBUILD
to generate a pacman-native package.
– HalosGhost
Jul 27 '14 at 0:26
1
command not found: dpkg
– zygimantus
Jun 22 '17 at 12:51
3
Even if it isn't the correct way to do it, it answers the original question... "Is it possible to install a deb package, and how to do it" is answered a lot better by this answer, than simply saying "write a PKGBUILD to generate a native package", since that is not what the user asks...
– svin83
Feb 10 '18 at 2:06
add a comment |
dpkg for Arch exists. You should be able to install .deb
packages on arch, but you should also not use it instead of pacman
, so just use it for selected few packages.
The default command looks like:
# dpkg -i package.deb
8
Using an alternate package manager, though an option, is not the correct solution. The correct solution is to write aPKGBUILD
to generate a pacman-native package.
– HalosGhost
Jul 27 '14 at 0:26
1
command not found: dpkg
– zygimantus
Jun 22 '17 at 12:51
3
Even if it isn't the correct way to do it, it answers the original question... "Is it possible to install a deb package, and how to do it" is answered a lot better by this answer, than simply saying "write a PKGBUILD to generate a native package", since that is not what the user asks...
– svin83
Feb 10 '18 at 2:06
add a comment |
dpkg for Arch exists. You should be able to install .deb
packages on arch, but you should also not use it instead of pacman
, so just use it for selected few packages.
The default command looks like:
# dpkg -i package.deb
dpkg for Arch exists. You should be able to install .deb
packages on arch, but you should also not use it instead of pacman
, so just use it for selected few packages.
The default command looks like:
# dpkg -i package.deb
edited Jul 27 '14 at 0:00
Rufflewind
1125
1125
answered Jul 18 '13 at 19:30
superuser0
1,1441719
1,1441719
8
Using an alternate package manager, though an option, is not the correct solution. The correct solution is to write aPKGBUILD
to generate a pacman-native package.
– HalosGhost
Jul 27 '14 at 0:26
1
command not found: dpkg
– zygimantus
Jun 22 '17 at 12:51
3
Even if it isn't the correct way to do it, it answers the original question... "Is it possible to install a deb package, and how to do it" is answered a lot better by this answer, than simply saying "write a PKGBUILD to generate a native package", since that is not what the user asks...
– svin83
Feb 10 '18 at 2:06
add a comment |
8
Using an alternate package manager, though an option, is not the correct solution. The correct solution is to write aPKGBUILD
to generate a pacman-native package.
– HalosGhost
Jul 27 '14 at 0:26
1
command not found: dpkg
– zygimantus
Jun 22 '17 at 12:51
3
Even if it isn't the correct way to do it, it answers the original question... "Is it possible to install a deb package, and how to do it" is answered a lot better by this answer, than simply saying "write a PKGBUILD to generate a native package", since that is not what the user asks...
– svin83
Feb 10 '18 at 2:06
8
8
Using an alternate package manager, though an option, is not the correct solution. The correct solution is to write a
PKGBUILD
to generate a pacman-native package.– HalosGhost
Jul 27 '14 at 0:26
Using an alternate package manager, though an option, is not the correct solution. The correct solution is to write a
PKGBUILD
to generate a pacman-native package.– HalosGhost
Jul 27 '14 at 0:26
1
1
command not found: dpkg
– zygimantus
Jun 22 '17 at 12:51
command not found: dpkg
– zygimantus
Jun 22 '17 at 12:51
3
3
Even if it isn't the correct way to do it, it answers the original question... "Is it possible to install a deb package, and how to do it" is answered a lot better by this answer, than simply saying "write a PKGBUILD to generate a native package", since that is not what the user asks...
– svin83
Feb 10 '18 at 2:06
Even if it isn't the correct way to do it, it answers the original question... "Is it possible to install a deb package, and how to do it" is answered a lot better by this answer, than simply saying "write a PKGBUILD to generate a native package", since that is not what the user asks...
– svin83
Feb 10 '18 at 2:06
add a comment |
You can install dpkg by: yaourt dpkg
.
If you don't have yaourt
, you can get it from its AUR page.
Then just cd
to where you put it and dpkg -i package.deb
whatever the package may be
1
The current comment on the AUR package for dpkg states it is out of date and "Don't use it instead of Arch's 'pacman'." Does this mean pacman can now be used to install deb packages?
– gromain
Apr 5 '16 at 7:27
2
@gromain I believe they say that to tell an ignorant user that they shouldn't be using Debian package management in Arch by default -- it should be an exception rather than the rule.
– Czipperz
Aug 21 '16 at 3:00
1
This package is out of date.
– zygimantus
Jun 22 '17 at 12:51
add a comment |
You can install dpkg by: yaourt dpkg
.
If you don't have yaourt
, you can get it from its AUR page.
Then just cd
to where you put it and dpkg -i package.deb
whatever the package may be
1
The current comment on the AUR package for dpkg states it is out of date and "Don't use it instead of Arch's 'pacman'." Does this mean pacman can now be used to install deb packages?
– gromain
Apr 5 '16 at 7:27
2
@gromain I believe they say that to tell an ignorant user that they shouldn't be using Debian package management in Arch by default -- it should be an exception rather than the rule.
– Czipperz
Aug 21 '16 at 3:00
1
This package is out of date.
– zygimantus
Jun 22 '17 at 12:51
add a comment |
You can install dpkg by: yaourt dpkg
.
If you don't have yaourt
, you can get it from its AUR page.
Then just cd
to where you put it and dpkg -i package.deb
whatever the package may be
You can install dpkg by: yaourt dpkg
.
If you don't have yaourt
, you can get it from its AUR page.
Then just cd
to where you put it and dpkg -i package.deb
whatever the package may be
edited Aug 21 '16 at 3:15
Czipperz
1156
1156
answered Jun 17 '15 at 8:54
willow
7912
7912
1
The current comment on the AUR package for dpkg states it is out of date and "Don't use it instead of Arch's 'pacman'." Does this mean pacman can now be used to install deb packages?
– gromain
Apr 5 '16 at 7:27
2
@gromain I believe they say that to tell an ignorant user that they shouldn't be using Debian package management in Arch by default -- it should be an exception rather than the rule.
– Czipperz
Aug 21 '16 at 3:00
1
This package is out of date.
– zygimantus
Jun 22 '17 at 12:51
add a comment |
1
The current comment on the AUR package for dpkg states it is out of date and "Don't use it instead of Arch's 'pacman'." Does this mean pacman can now be used to install deb packages?
– gromain
Apr 5 '16 at 7:27
2
@gromain I believe they say that to tell an ignorant user that they shouldn't be using Debian package management in Arch by default -- it should be an exception rather than the rule.
– Czipperz
Aug 21 '16 at 3:00
1
This package is out of date.
– zygimantus
Jun 22 '17 at 12:51
1
1
The current comment on the AUR package for dpkg states it is out of date and "Don't use it instead of Arch's 'pacman'." Does this mean pacman can now be used to install deb packages?
– gromain
Apr 5 '16 at 7:27
The current comment on the AUR package for dpkg states it is out of date and "Don't use it instead of Arch's 'pacman'." Does this mean pacman can now be used to install deb packages?
– gromain
Apr 5 '16 at 7:27
2
2
@gromain I believe they say that to tell an ignorant user that they shouldn't be using Debian package management in Arch by default -- it should be an exception rather than the rule.
– Czipperz
Aug 21 '16 at 3:00
@gromain I believe they say that to tell an ignorant user that they shouldn't be using Debian package management in Arch by default -- it should be an exception rather than the rule.
– Czipperz
Aug 21 '16 at 3:00
1
1
This package is out of date.
– zygimantus
Jun 22 '17 at 12:51
This package is out of date.
– zygimantus
Jun 22 '17 at 12:51
add a comment |
Possible? Yes, but different methods exist on basis of use case.
Assumption: The debian package doesn't have an equivalent package in the Arch (or Arch based Distribution's) official repository.
Install
yaourt
usingpacman
:
sudo pacman -S yaourt
Reason: yaourt is a front-end(CLI-based) for pacman used to query & install AUR packages. In case the debian package has already been repackaged as an AUR by someone else.
Install the
package_name
using yaourt:
sudo yaourt -S package_name
note: replace package_name
with the name of the debian package as found in the AUR. It'll attempt to install the dependencies on it's own using pacman
.
Alternative
Assumption: The Debian package hasn't been repackaged as an Arch package in AUR yet.
Install
debtap
fromyaourt
:
sudo yaourt -S debtap
Create equivalent package using
debtap
:
debtap package_name.deb
Install using
pacman
:
sudo pacman -U package_name.pkg
Not the recommended way (possibly dangerous)
This method attempts to install the package using the debian packaging format on Arch, which is not recommended due to possible danger of corrupting your installation. If using this method it is recommended to be ready with a rescue disc image of Arch & backup of the user data/space.
Install
dpkg
usingyaourt
:
sudo yaourt -S dpkg
Install the debian package using
dpkg
:
sudo dpkg -i package_name.deb
add a comment |
Possible? Yes, but different methods exist on basis of use case.
Assumption: The debian package doesn't have an equivalent package in the Arch (or Arch based Distribution's) official repository.
Install
yaourt
usingpacman
:
sudo pacman -S yaourt
Reason: yaourt is a front-end(CLI-based) for pacman used to query & install AUR packages. In case the debian package has already been repackaged as an AUR by someone else.
Install the
package_name
using yaourt:
sudo yaourt -S package_name
note: replace package_name
with the name of the debian package as found in the AUR. It'll attempt to install the dependencies on it's own using pacman
.
Alternative
Assumption: The Debian package hasn't been repackaged as an Arch package in AUR yet.
Install
debtap
fromyaourt
:
sudo yaourt -S debtap
Create equivalent package using
debtap
:
debtap package_name.deb
Install using
pacman
:
sudo pacman -U package_name.pkg
Not the recommended way (possibly dangerous)
This method attempts to install the package using the debian packaging format on Arch, which is not recommended due to possible danger of corrupting your installation. If using this method it is recommended to be ready with a rescue disc image of Arch & backup of the user data/space.
Install
dpkg
usingyaourt
:
sudo yaourt -S dpkg
Install the debian package using
dpkg
:
sudo dpkg -i package_name.deb
add a comment |
Possible? Yes, but different methods exist on basis of use case.
Assumption: The debian package doesn't have an equivalent package in the Arch (or Arch based Distribution's) official repository.
Install
yaourt
usingpacman
:
sudo pacman -S yaourt
Reason: yaourt is a front-end(CLI-based) for pacman used to query & install AUR packages. In case the debian package has already been repackaged as an AUR by someone else.
Install the
package_name
using yaourt:
sudo yaourt -S package_name
note: replace package_name
with the name of the debian package as found in the AUR. It'll attempt to install the dependencies on it's own using pacman
.
Alternative
Assumption: The Debian package hasn't been repackaged as an Arch package in AUR yet.
Install
debtap
fromyaourt
:
sudo yaourt -S debtap
Create equivalent package using
debtap
:
debtap package_name.deb
Install using
pacman
:
sudo pacman -U package_name.pkg
Not the recommended way (possibly dangerous)
This method attempts to install the package using the debian packaging format on Arch, which is not recommended due to possible danger of corrupting your installation. If using this method it is recommended to be ready with a rescue disc image of Arch & backup of the user data/space.
Install
dpkg
usingyaourt
:
sudo yaourt -S dpkg
Install the debian package using
dpkg
:
sudo dpkg -i package_name.deb
Possible? Yes, but different methods exist on basis of use case.
Assumption: The debian package doesn't have an equivalent package in the Arch (or Arch based Distribution's) official repository.
Install
yaourt
usingpacman
:
sudo pacman -S yaourt
Reason: yaourt is a front-end(CLI-based) for pacman used to query & install AUR packages. In case the debian package has already been repackaged as an AUR by someone else.
Install the
package_name
using yaourt:
sudo yaourt -S package_name
note: replace package_name
with the name of the debian package as found in the AUR. It'll attempt to install the dependencies on it's own using pacman
.
Alternative
Assumption: The Debian package hasn't been repackaged as an Arch package in AUR yet.
Install
debtap
fromyaourt
:
sudo yaourt -S debtap
Create equivalent package using
debtap
:
debtap package_name.deb
Install using
pacman
:
sudo pacman -U package_name.pkg
Not the recommended way (possibly dangerous)
This method attempts to install the package using the debian packaging format on Arch, which is not recommended due to possible danger of corrupting your installation. If using this method it is recommended to be ready with a rescue disc image of Arch & backup of the user data/space.
Install
dpkg
usingyaourt
:
sudo yaourt -S dpkg
Install the debian package using
dpkg
:
sudo dpkg -i package_name.deb
edited Dec 25 '18 at 1:25
answered Jul 22 '18 at 6:22
ToxicMender
5314
5314
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f83540%2finstalling-a-deb-package-on-arch-is-it-possible%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
5
Note that .deb files are just archives that can be uncompressed on any system. Depending on how complex the installation process is, that might be enough to "install" it.
– a CVn
Jul 18 '13 at 20:48