How to Resolve Yum Dependencies for Oracle DB Installation












2















I have a Ubuntu 18 VM and am trying to install an Oracle XE 12c database locally. I have downloaded the related .rpm file and try to install it as instructed via:



yum -y localinstall oracle-database-se-18c-1.0.1.x86_64


However, I'm getting the following dependency error:



yum -y localinstall oracle-database-xe-18c-1.0-1.x86_64.rpm 
Setting up Local Package Process
Examining oracle-database-xe-18c-1.0-1.x86_64.rpm: oracle-database-xe-18c-1.0-1.x86_64
Marking oracle-database-xe-18c-1.0-1.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package oracle-database-xe-18c.x86_64 0:1.0-1 will be installed
--> Processing Dependency: file for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: net-tools for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: oracle-database-preinstall-18c for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Finished Dependency Resolution
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: file
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: net-tools
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: oracle-database-preinstall-18c
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: /bin/sh
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest


I do have sh and file (apt-get install net-tools).



I got the same exact error in Debian 9 VM. What seems to be the problem.










share|improve this question




















  • 1





    Have you try to install it on Ubuntu way? askubuntu.com/a/739718/680869

    – Romeo Ninov
    Jan 9 at 17:32











  • And there is a Debian tutorial for Oracle XE Databases - wiki.debian.org/DataBase/Oracle - You will get nowhere trying to install an RPM package inside Ubuntu or Debian...

    – nwildner
    Jan 9 at 17:37











  • @RomeoNinov Where do I get the actual zip? The Oracle site only provides .rpm. Besides, the instruction is geared toward 11 which is most likely different from 12c.

    – Malvon
    Jan 9 at 17:41













  • @nwildner Where do I get the actual zip? The Oracle site only provides .rpm.

    – Malvon
    Jan 9 at 17:41











  • install Oracle XE.

    – Romeo Ninov
    Jan 9 at 17:53
















2















I have a Ubuntu 18 VM and am trying to install an Oracle XE 12c database locally. I have downloaded the related .rpm file and try to install it as instructed via:



yum -y localinstall oracle-database-se-18c-1.0.1.x86_64


However, I'm getting the following dependency error:



yum -y localinstall oracle-database-xe-18c-1.0-1.x86_64.rpm 
Setting up Local Package Process
Examining oracle-database-xe-18c-1.0-1.x86_64.rpm: oracle-database-xe-18c-1.0-1.x86_64
Marking oracle-database-xe-18c-1.0-1.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package oracle-database-xe-18c.x86_64 0:1.0-1 will be installed
--> Processing Dependency: file for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: net-tools for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: oracle-database-preinstall-18c for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Finished Dependency Resolution
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: file
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: net-tools
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: oracle-database-preinstall-18c
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: /bin/sh
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest


I do have sh and file (apt-get install net-tools).



I got the same exact error in Debian 9 VM. What seems to be the problem.










share|improve this question




















  • 1





    Have you try to install it on Ubuntu way? askubuntu.com/a/739718/680869

    – Romeo Ninov
    Jan 9 at 17:32











  • And there is a Debian tutorial for Oracle XE Databases - wiki.debian.org/DataBase/Oracle - You will get nowhere trying to install an RPM package inside Ubuntu or Debian...

    – nwildner
    Jan 9 at 17:37











  • @RomeoNinov Where do I get the actual zip? The Oracle site only provides .rpm. Besides, the instruction is geared toward 11 which is most likely different from 12c.

    – Malvon
    Jan 9 at 17:41













  • @nwildner Where do I get the actual zip? The Oracle site only provides .rpm.

    – Malvon
    Jan 9 at 17:41











  • install Oracle XE.

    – Romeo Ninov
    Jan 9 at 17:53














2












2








2








I have a Ubuntu 18 VM and am trying to install an Oracle XE 12c database locally. I have downloaded the related .rpm file and try to install it as instructed via:



yum -y localinstall oracle-database-se-18c-1.0.1.x86_64


However, I'm getting the following dependency error:



yum -y localinstall oracle-database-xe-18c-1.0-1.x86_64.rpm 
Setting up Local Package Process
Examining oracle-database-xe-18c-1.0-1.x86_64.rpm: oracle-database-xe-18c-1.0-1.x86_64
Marking oracle-database-xe-18c-1.0-1.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package oracle-database-xe-18c.x86_64 0:1.0-1 will be installed
--> Processing Dependency: file for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: net-tools for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: oracle-database-preinstall-18c for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Finished Dependency Resolution
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: file
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: net-tools
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: oracle-database-preinstall-18c
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: /bin/sh
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest


I do have sh and file (apt-get install net-tools).



I got the same exact error in Debian 9 VM. What seems to be the problem.










share|improve this question
















I have a Ubuntu 18 VM and am trying to install an Oracle XE 12c database locally. I have downloaded the related .rpm file and try to install it as instructed via:



yum -y localinstall oracle-database-se-18c-1.0.1.x86_64


However, I'm getting the following dependency error:



yum -y localinstall oracle-database-xe-18c-1.0-1.x86_64.rpm 
Setting up Local Package Process
Examining oracle-database-xe-18c-1.0-1.x86_64.rpm: oracle-database-xe-18c-1.0-1.x86_64
Marking oracle-database-xe-18c-1.0-1.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package oracle-database-xe-18c.x86_64 0:1.0-1 will be installed
--> Processing Dependency: file for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: net-tools for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: oracle-database-preinstall-18c for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Processing Dependency: /bin/sh for package: oracle-database-xe-18c-1.0-1.x86_64
--> Finished Dependency Resolution
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: file
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: net-tools
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: oracle-database-preinstall-18c
Error: Package: oracle-database-xe-18c-1.0-1.x86_64 (/oracle-database-xe-18c-1.0-1.x86_64)
Requires: /bin/sh
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest


I do have sh and file (apt-get install net-tools).



I got the same exact error in Debian 9 VM. What seems to be the problem.







ubuntu software-installation dependencies oracle-database






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 9 at 18:13







Malvon

















asked Jan 9 at 17:28









MalvonMalvon

1112




1112








  • 1





    Have you try to install it on Ubuntu way? askubuntu.com/a/739718/680869

    – Romeo Ninov
    Jan 9 at 17:32











  • And there is a Debian tutorial for Oracle XE Databases - wiki.debian.org/DataBase/Oracle - You will get nowhere trying to install an RPM package inside Ubuntu or Debian...

    – nwildner
    Jan 9 at 17:37











  • @RomeoNinov Where do I get the actual zip? The Oracle site only provides .rpm. Besides, the instruction is geared toward 11 which is most likely different from 12c.

    – Malvon
    Jan 9 at 17:41













  • @nwildner Where do I get the actual zip? The Oracle site only provides .rpm.

    – Malvon
    Jan 9 at 17:41











  • install Oracle XE.

    – Romeo Ninov
    Jan 9 at 17:53














  • 1





    Have you try to install it on Ubuntu way? askubuntu.com/a/739718/680869

    – Romeo Ninov
    Jan 9 at 17:32











  • And there is a Debian tutorial for Oracle XE Databases - wiki.debian.org/DataBase/Oracle - You will get nowhere trying to install an RPM package inside Ubuntu or Debian...

    – nwildner
    Jan 9 at 17:37











  • @RomeoNinov Where do I get the actual zip? The Oracle site only provides .rpm. Besides, the instruction is geared toward 11 which is most likely different from 12c.

    – Malvon
    Jan 9 at 17:41













  • @nwildner Where do I get the actual zip? The Oracle site only provides .rpm.

    – Malvon
    Jan 9 at 17:41











  • install Oracle XE.

    – Romeo Ninov
    Jan 9 at 17:53








1




1





Have you try to install it on Ubuntu way? askubuntu.com/a/739718/680869

– Romeo Ninov
Jan 9 at 17:32





Have you try to install it on Ubuntu way? askubuntu.com/a/739718/680869

– Romeo Ninov
Jan 9 at 17:32













And there is a Debian tutorial for Oracle XE Databases - wiki.debian.org/DataBase/Oracle - You will get nowhere trying to install an RPM package inside Ubuntu or Debian...

– nwildner
Jan 9 at 17:37





And there is a Debian tutorial for Oracle XE Databases - wiki.debian.org/DataBase/Oracle - You will get nowhere trying to install an RPM package inside Ubuntu or Debian...

– nwildner
Jan 9 at 17:37













@RomeoNinov Where do I get the actual zip? The Oracle site only provides .rpm. Besides, the instruction is geared toward 11 which is most likely different from 12c.

– Malvon
Jan 9 at 17:41







@RomeoNinov Where do I get the actual zip? The Oracle site only provides .rpm. Besides, the instruction is geared toward 11 which is most likely different from 12c.

– Malvon
Jan 9 at 17:41















@nwildner Where do I get the actual zip? The Oracle site only provides .rpm.

– Malvon
Jan 9 at 17:41





@nwildner Where do I get the actual zip? The Oracle site only provides .rpm.

– Malvon
Jan 9 at 17:41













install Oracle XE.

– Romeo Ninov
Jan 9 at 17:53





install Oracle XE.

– Romeo Ninov
Jan 9 at 17:53










0






active

oldest

votes











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f493521%2fhow-to-resolve-yum-dependencies-for-oracle-db-installation%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f493521%2fhow-to-resolve-yum-dependencies-for-oracle-db-installation%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Morgemoulin

Scott Moir

Souastre