Certain commands not working : make, wget - error message command not found
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
My system recently developed this error, certain commands are no longer working for example
make -s
,wget
, tar
A brief description of the system I'm on uname -a
`Linux areahints-HP-15-Notebook-PC 4.15.0-46-lowlatency #49-Ubuntu SMP PREEMPT Wed Feb 6 10:23:17 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux`
I'm stuck and unsure as to how to proceed from this point on. Any help is appreciable.
command-line bash execute-command
add a comment |
My system recently developed this error, certain commands are no longer working for example
make -s
,wget
, tar
A brief description of the system I'm on uname -a
`Linux areahints-HP-15-Notebook-PC 4.15.0-46-lowlatency #49-Ubuntu SMP PREEMPT Wed Feb 6 10:23:17 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux`
I'm stuck and unsure as to how to proceed from this point on. Any help is appreciable.
command-line bash execute-command
What doesecho "$PATH"
output?
– choroba
Mar 24 at 10:20
add a comment |
My system recently developed this error, certain commands are no longer working for example
make -s
,wget
, tar
A brief description of the system I'm on uname -a
`Linux areahints-HP-15-Notebook-PC 4.15.0-46-lowlatency #49-Ubuntu SMP PREEMPT Wed Feb 6 10:23:17 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux`
I'm stuck and unsure as to how to proceed from this point on. Any help is appreciable.
command-line bash execute-command
My system recently developed this error, certain commands are no longer working for example
make -s
,wget
, tar
A brief description of the system I'm on uname -a
`Linux areahints-HP-15-Notebook-PC 4.15.0-46-lowlatency #49-Ubuntu SMP PREEMPT Wed Feb 6 10:23:17 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux`
I'm stuck and unsure as to how to proceed from this point on. Any help is appreciable.
command-line bash execute-command
command-line bash execute-command
edited Mar 24 at 11:15
Tintin
14010
14010
asked Mar 24 at 10:11
KenechukwuKenechukwu
106
106
What doesecho "$PATH"
output?
– choroba
Mar 24 at 10:20
add a comment |
What doesecho "$PATH"
output?
– choroba
Mar 24 at 10:20
What does
echo "$PATH"
output?– choroba
Mar 24 at 10:20
What does
echo "$PATH"
output?– choroba
Mar 24 at 10:20
add a comment |
1 Answer
1
active
oldest
votes
It must be due to the problem you have with the PATH. Easiest way to check it is by typing echo $PATH
and post the output in here. If it's empty or incomplete then just type the following command in the terminal
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
This must solve most of the issue but if it doesn't try to reinstall tar
, make
and wget
.
thanks! this worked.
– Kenechukwu
Mar 24 at 11:14
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f1128245%2fcertain-commands-not-working-make-wget-error-message-command-not-found%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
It must be due to the problem you have with the PATH. Easiest way to check it is by typing echo $PATH
and post the output in here. If it's empty or incomplete then just type the following command in the terminal
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
This must solve most of the issue but if it doesn't try to reinstall tar
, make
and wget
.
thanks! this worked.
– Kenechukwu
Mar 24 at 11:14
add a comment |
It must be due to the problem you have with the PATH. Easiest way to check it is by typing echo $PATH
and post the output in here. If it's empty or incomplete then just type the following command in the terminal
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
This must solve most of the issue but if it doesn't try to reinstall tar
, make
and wget
.
thanks! this worked.
– Kenechukwu
Mar 24 at 11:14
add a comment |
It must be due to the problem you have with the PATH. Easiest way to check it is by typing echo $PATH
and post the output in here. If it's empty or incomplete then just type the following command in the terminal
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
This must solve most of the issue but if it doesn't try to reinstall tar
, make
and wget
.
It must be due to the problem you have with the PATH. Easiest way to check it is by typing echo $PATH
and post the output in here. If it's empty or incomplete then just type the following command in the terminal
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
This must solve most of the issue but if it doesn't try to reinstall tar
, make
and wget
.
answered Mar 24 at 10:49
TintinTintin
14010
14010
thanks! this worked.
– Kenechukwu
Mar 24 at 11:14
add a comment |
thanks! this worked.
– Kenechukwu
Mar 24 at 11:14
thanks! this worked.
– Kenechukwu
Mar 24 at 11:14
thanks! this worked.
– Kenechukwu
Mar 24 at 11:14
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1128245%2fcertain-commands-not-working-make-wget-error-message-command-not-found%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
What does
echo "$PATH"
output?– choroba
Mar 24 at 10:20