Commands not working resp. could't be found even though $PATH is set correct?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Im using VirtualBox for a few weeks and my CentOS 7 worked fine. Suddenly the commands can't be found:
[root@localhost ~]# ifconfig
-bash: ifconfig: command not found
[root@localhost ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@localhost ~]# which ifconfig
/usr/bin/which: no ifconfig in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin)
I have no clue why suddenly the commands are not working. I can't remember doing "radical" changes.
Even with a complete new installation the issue persists! How can that be?
Thank you for you help!
linux centos path
add a comment |
Im using VirtualBox for a few weeks and my CentOS 7 worked fine. Suddenly the commands can't be found:
[root@localhost ~]# ifconfig
-bash: ifconfig: command not found
[root@localhost ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@localhost ~]# which ifconfig
/usr/bin/which: no ifconfig in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin)
I have no clue why suddenly the commands are not working. I can't remember doing "radical" changes.
Even with a complete new installation the issue persists! How can that be?
Thank you for you help!
linux centos path
add a comment |
Im using VirtualBox for a few weeks and my CentOS 7 worked fine. Suddenly the commands can't be found:
[root@localhost ~]# ifconfig
-bash: ifconfig: command not found
[root@localhost ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@localhost ~]# which ifconfig
/usr/bin/which: no ifconfig in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin)
I have no clue why suddenly the commands are not working. I can't remember doing "radical" changes.
Even with a complete new installation the issue persists! How can that be?
Thank you for you help!
linux centos path
Im using VirtualBox for a few weeks and my CentOS 7 worked fine. Suddenly the commands can't be found:
[root@localhost ~]# ifconfig
-bash: ifconfig: command not found
[root@localhost ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@localhost ~]# which ifconfig
/usr/bin/which: no ifconfig in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin)
I have no clue why suddenly the commands are not working. I can't remember doing "radical" changes.
Even with a complete new installation the issue persists! How can that be?
Thank you for you help!
linux centos path
linux centos path
asked Feb 6 at 10:25
MaxMustemalMaxMustemal
31
31
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
ifconfig
is considered deprecated in CentOS 7, and thus won't be installed when installing the 'minimal' software group.
You can install it with yum install net-tools -y
, however, you should be using the ip
command to do your network administration (which is installed in the base installation of CentOS 7).
Yeah. That was correct! I'm still not quite sure how this happend, maybe via the last update. But e.g. "nslookup" and "ifconfig" didn't work. They work after installing the correct package. Thank you.
– MaxMustemal
Feb 6 at 11:27
If this answer solved your problem; please mark it as the correct answer with the green checkmark on the left. This way other people can easily find it.
– mtak
Feb 6 at 12:44
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fsuperuser.com%2fquestions%2f1402608%2fcommands-not-working-resp-couldt-be-found-even-though-path-is-set-correct%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
ifconfig
is considered deprecated in CentOS 7, and thus won't be installed when installing the 'minimal' software group.
You can install it with yum install net-tools -y
, however, you should be using the ip
command to do your network administration (which is installed in the base installation of CentOS 7).
Yeah. That was correct! I'm still not quite sure how this happend, maybe via the last update. But e.g. "nslookup" and "ifconfig" didn't work. They work after installing the correct package. Thank you.
– MaxMustemal
Feb 6 at 11:27
If this answer solved your problem; please mark it as the correct answer with the green checkmark on the left. This way other people can easily find it.
– mtak
Feb 6 at 12:44
add a comment |
ifconfig
is considered deprecated in CentOS 7, and thus won't be installed when installing the 'minimal' software group.
You can install it with yum install net-tools -y
, however, you should be using the ip
command to do your network administration (which is installed in the base installation of CentOS 7).
Yeah. That was correct! I'm still not quite sure how this happend, maybe via the last update. But e.g. "nslookup" and "ifconfig" didn't work. They work after installing the correct package. Thank you.
– MaxMustemal
Feb 6 at 11:27
If this answer solved your problem; please mark it as the correct answer with the green checkmark on the left. This way other people can easily find it.
– mtak
Feb 6 at 12:44
add a comment |
ifconfig
is considered deprecated in CentOS 7, and thus won't be installed when installing the 'minimal' software group.
You can install it with yum install net-tools -y
, however, you should be using the ip
command to do your network administration (which is installed in the base installation of CentOS 7).
ifconfig
is considered deprecated in CentOS 7, and thus won't be installed when installing the 'minimal' software group.
You can install it with yum install net-tools -y
, however, you should be using the ip
command to do your network administration (which is installed in the base installation of CentOS 7).
answered Feb 6 at 11:23
mtakmtak
11.2k23353
11.2k23353
Yeah. That was correct! I'm still not quite sure how this happend, maybe via the last update. But e.g. "nslookup" and "ifconfig" didn't work. They work after installing the correct package. Thank you.
– MaxMustemal
Feb 6 at 11:27
If this answer solved your problem; please mark it as the correct answer with the green checkmark on the left. This way other people can easily find it.
– mtak
Feb 6 at 12:44
add a comment |
Yeah. That was correct! I'm still not quite sure how this happend, maybe via the last update. But e.g. "nslookup" and "ifconfig" didn't work. They work after installing the correct package. Thank you.
– MaxMustemal
Feb 6 at 11:27
If this answer solved your problem; please mark it as the correct answer with the green checkmark on the left. This way other people can easily find it.
– mtak
Feb 6 at 12:44
Yeah. That was correct! I'm still not quite sure how this happend, maybe via the last update. But e.g. "nslookup" and "ifconfig" didn't work. They work after installing the correct package. Thank you.
– MaxMustemal
Feb 6 at 11:27
Yeah. That was correct! I'm still not quite sure how this happend, maybe via the last update. But e.g. "nslookup" and "ifconfig" didn't work. They work after installing the correct package. Thank you.
– MaxMustemal
Feb 6 at 11:27
If this answer solved your problem; please mark it as the correct answer with the green checkmark on the left. This way other people can easily find it.
– mtak
Feb 6 at 12:44
If this answer solved your problem; please mark it as the correct answer with the green checkmark on the left. This way other people can easily find it.
– mtak
Feb 6 at 12:44
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1402608%2fcommands-not-working-resp-couldt-be-found-even-though-path-is-set-correct%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