Installing Ubuntu Software Applications in Qubes OS
Clash Royale CLAN TAG#URR8PPP
Is it possible to install the Ubuntu Software Applications, such as LibreOffice and others in Qubes OS?
Thanks.
software-rec libreoffice qubes
add a comment |
Is it possible to install the Ubuntu Software Applications, such as LibreOffice and others in Qubes OS?
Thanks.
software-rec libreoffice qubes
add a comment |
Is it possible to install the Ubuntu Software Applications, such as LibreOffice and others in Qubes OS?
Thanks.
software-rec libreoffice qubes
Is it possible to install the Ubuntu Software Applications, such as LibreOffice and others in Qubes OS?
Thanks.
software-rec libreoffice qubes
software-rec libreoffice qubes
edited Jul 11 '17 at 9:38
N Even
asked Jul 11 '17 at 9:21
N EvenN Even
153110
153110
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Qubes OS uses RPM Package Manager as its package manager. Ubuntu (like Debian, on which Ubuntu is based) uses .deb packages. Before trying to install a .deb file, check if the same package is available as an .rpm file from the standard yum repositories.
To convert a package from deb to rpm use the alien package. You should use alien as a last resort, you are better off compiling from source.
To convert a .deb package to an .rpm package:
sudo alien -r package.deb
To install the converted .rpm package:
sudo yum install package.rpm
It says "command not found", for some reason...
– N Even
Jul 11 '17 at 10:36
You are going to have to find a source for the alien .rpm package first or else compile alien from source. Qubes OS is based on different versions of Fedora depending on what version of Qubes OS is installed. Because Qubes OS is a security distribution, I don't recommend tampering with your software sources.
– karel
Jul 11 '17 at 10:40
add a comment |
Ubuntu itself can be installed into Qubes, but due to licensing concerns it requires one of the following:
- Installing Ubuntu separately as an HVM
- Use of the Qubes Builder which will generate an Ubuntu OS template that is more flexible.
Qubes does have a Debian OS template that is similar to Ubuntu in many ways and can be easily installed from dom0 like so:
sudo qubes-dom0-update qubes-template-debian-8
After template installation you can update it then begin installing apps such as LibreOffice:
sudo apt-get install libreoffice
The Debian template is somewhat on the minimal side in terms of pre-installed packages. If you wish to have a conventional desktop assortment of apps and utilities installed (including LibreOffice) you can select one of the desktop environment options (like Gnome or KDE) using the tasksel
command in the template.
As for installing actual Ubuntu packages in Debian, it may be possible with some programs but YMMV. Except for the Linux kernel package, this is a generic Ubuntu/Debian issue; kernel installations for templates are handled with dom0 package management.
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%2f377660%2finstalling-ubuntu-software-applications-in-qubes-os%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Qubes OS uses RPM Package Manager as its package manager. Ubuntu (like Debian, on which Ubuntu is based) uses .deb packages. Before trying to install a .deb file, check if the same package is available as an .rpm file from the standard yum repositories.
To convert a package from deb to rpm use the alien package. You should use alien as a last resort, you are better off compiling from source.
To convert a .deb package to an .rpm package:
sudo alien -r package.deb
To install the converted .rpm package:
sudo yum install package.rpm
It says "command not found", for some reason...
– N Even
Jul 11 '17 at 10:36
You are going to have to find a source for the alien .rpm package first or else compile alien from source. Qubes OS is based on different versions of Fedora depending on what version of Qubes OS is installed. Because Qubes OS is a security distribution, I don't recommend tampering with your software sources.
– karel
Jul 11 '17 at 10:40
add a comment |
Qubes OS uses RPM Package Manager as its package manager. Ubuntu (like Debian, on which Ubuntu is based) uses .deb packages. Before trying to install a .deb file, check if the same package is available as an .rpm file from the standard yum repositories.
To convert a package from deb to rpm use the alien package. You should use alien as a last resort, you are better off compiling from source.
To convert a .deb package to an .rpm package:
sudo alien -r package.deb
To install the converted .rpm package:
sudo yum install package.rpm
It says "command not found", for some reason...
– N Even
Jul 11 '17 at 10:36
You are going to have to find a source for the alien .rpm package first or else compile alien from source. Qubes OS is based on different versions of Fedora depending on what version of Qubes OS is installed. Because Qubes OS is a security distribution, I don't recommend tampering with your software sources.
– karel
Jul 11 '17 at 10:40
add a comment |
Qubes OS uses RPM Package Manager as its package manager. Ubuntu (like Debian, on which Ubuntu is based) uses .deb packages. Before trying to install a .deb file, check if the same package is available as an .rpm file from the standard yum repositories.
To convert a package from deb to rpm use the alien package. You should use alien as a last resort, you are better off compiling from source.
To convert a .deb package to an .rpm package:
sudo alien -r package.deb
To install the converted .rpm package:
sudo yum install package.rpm
Qubes OS uses RPM Package Manager as its package manager. Ubuntu (like Debian, on which Ubuntu is based) uses .deb packages. Before trying to install a .deb file, check if the same package is available as an .rpm file from the standard yum repositories.
To convert a package from deb to rpm use the alien package. You should use alien as a last resort, you are better off compiling from source.
To convert a .deb package to an .rpm package:
sudo alien -r package.deb
To install the converted .rpm package:
sudo yum install package.rpm
edited Jul 11 '17 at 10:17
answered Jul 11 '17 at 9:44
karelkarel
748818
748818
It says "command not found", for some reason...
– N Even
Jul 11 '17 at 10:36
You are going to have to find a source for the alien .rpm package first or else compile alien from source. Qubes OS is based on different versions of Fedora depending on what version of Qubes OS is installed. Because Qubes OS is a security distribution, I don't recommend tampering with your software sources.
– karel
Jul 11 '17 at 10:40
add a comment |
It says "command not found", for some reason...
– N Even
Jul 11 '17 at 10:36
You are going to have to find a source for the alien .rpm package first or else compile alien from source. Qubes OS is based on different versions of Fedora depending on what version of Qubes OS is installed. Because Qubes OS is a security distribution, I don't recommend tampering with your software sources.
– karel
Jul 11 '17 at 10:40
It says "command not found", for some reason...
– N Even
Jul 11 '17 at 10:36
It says "command not found", for some reason...
– N Even
Jul 11 '17 at 10:36
You are going to have to find a source for the alien .rpm package first or else compile alien from source. Qubes OS is based on different versions of Fedora depending on what version of Qubes OS is installed. Because Qubes OS is a security distribution, I don't recommend tampering with your software sources.
– karel
Jul 11 '17 at 10:40
You are going to have to find a source for the alien .rpm package first or else compile alien from source. Qubes OS is based on different versions of Fedora depending on what version of Qubes OS is installed. Because Qubes OS is a security distribution, I don't recommend tampering with your software sources.
– karel
Jul 11 '17 at 10:40
add a comment |
Ubuntu itself can be installed into Qubes, but due to licensing concerns it requires one of the following:
- Installing Ubuntu separately as an HVM
- Use of the Qubes Builder which will generate an Ubuntu OS template that is more flexible.
Qubes does have a Debian OS template that is similar to Ubuntu in many ways and can be easily installed from dom0 like so:
sudo qubes-dom0-update qubes-template-debian-8
After template installation you can update it then begin installing apps such as LibreOffice:
sudo apt-get install libreoffice
The Debian template is somewhat on the minimal side in terms of pre-installed packages. If you wish to have a conventional desktop assortment of apps and utilities installed (including LibreOffice) you can select one of the desktop environment options (like Gnome or KDE) using the tasksel
command in the template.
As for installing actual Ubuntu packages in Debian, it may be possible with some programs but YMMV. Except for the Linux kernel package, this is a generic Ubuntu/Debian issue; kernel installations for templates are handled with dom0 package management.
add a comment |
Ubuntu itself can be installed into Qubes, but due to licensing concerns it requires one of the following:
- Installing Ubuntu separately as an HVM
- Use of the Qubes Builder which will generate an Ubuntu OS template that is more flexible.
Qubes does have a Debian OS template that is similar to Ubuntu in many ways and can be easily installed from dom0 like so:
sudo qubes-dom0-update qubes-template-debian-8
After template installation you can update it then begin installing apps such as LibreOffice:
sudo apt-get install libreoffice
The Debian template is somewhat on the minimal side in terms of pre-installed packages. If you wish to have a conventional desktop assortment of apps and utilities installed (including LibreOffice) you can select one of the desktop environment options (like Gnome or KDE) using the tasksel
command in the template.
As for installing actual Ubuntu packages in Debian, it may be possible with some programs but YMMV. Except for the Linux kernel package, this is a generic Ubuntu/Debian issue; kernel installations for templates are handled with dom0 package management.
add a comment |
Ubuntu itself can be installed into Qubes, but due to licensing concerns it requires one of the following:
- Installing Ubuntu separately as an HVM
- Use of the Qubes Builder which will generate an Ubuntu OS template that is more flexible.
Qubes does have a Debian OS template that is similar to Ubuntu in many ways and can be easily installed from dom0 like so:
sudo qubes-dom0-update qubes-template-debian-8
After template installation you can update it then begin installing apps such as LibreOffice:
sudo apt-get install libreoffice
The Debian template is somewhat on the minimal side in terms of pre-installed packages. If you wish to have a conventional desktop assortment of apps and utilities installed (including LibreOffice) you can select one of the desktop environment options (like Gnome or KDE) using the tasksel
command in the template.
As for installing actual Ubuntu packages in Debian, it may be possible with some programs but YMMV. Except for the Linux kernel package, this is a generic Ubuntu/Debian issue; kernel installations for templates are handled with dom0 package management.
Ubuntu itself can be installed into Qubes, but due to licensing concerns it requires one of the following:
- Installing Ubuntu separately as an HVM
- Use of the Qubes Builder which will generate an Ubuntu OS template that is more flexible.
Qubes does have a Debian OS template that is similar to Ubuntu in many ways and can be easily installed from dom0 like so:
sudo qubes-dom0-update qubes-template-debian-8
After template installation you can update it then begin installing apps such as LibreOffice:
sudo apt-get install libreoffice
The Debian template is somewhat on the minimal side in terms of pre-installed packages. If you wish to have a conventional desktop assortment of apps and utilities installed (including LibreOffice) you can select one of the desktop environment options (like Gnome or KDE) using the tasksel
command in the template.
As for installing actual Ubuntu packages in Debian, it may be possible with some programs but YMMV. Except for the Linux kernel package, this is a generic Ubuntu/Debian issue; kernel installations for templates are handled with dom0 package management.
answered Jul 14 '17 at 19:47
taskettasket
707
707
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.
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%2f377660%2finstalling-ubuntu-software-applications-in-qubes-os%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