LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux Deepin (https://www.linuxquestions.org/questions/linux-deepin-101/)
-   -   "bash: info: command not found" Deepin 15.3 (https://www.linuxquestions.org/questions/linux-deepin-101/bash-info-command-not-found-deepin-15-3-a-4175595078/)

WhiteSage 12-08-2016 03:40 PM

"bash: info: command not found" Deepin 15.3
 
Hi LQ! Having some trouble in the terminal; when I run the "info" command I get "bash: info: command not found". Saw a similar post on the Mandriva forum that had been solved, but being new to linux I'm not sure how to translate it to the Deepin distribution. Any thoughts on what to do?

wpeckham 12-08-2016 09:20 PM

Quote:

Originally Posted by WhiteSage (Post 5639654)
Hi LQ! Having some trouble in the terminal; when I run the "info" command I get "bash: info: command not found". Saw a similar post on the Mandriva forum that had been solved, but being new to linux I'm not sure how to translate it to the Deepin distribution. Any thoughts on what to do?

This looks pretty generic, rather than anything distro specific.

BASH is trying to tell you that it found no program names 'info' in the path. Possibly info is not installed, or it is installed but not in the path.

Try
Code:

find / -name info -type f -ls
and check the output. Then check
Code:

echo $PATH
and see if the location for info is in your path.
If you get something you can adjust your path to find the info program, if you get nothing you do not have info installed.

WhiteSage 12-13-2016 09:33 PM

Thanks!


All times are GMT -5. The time now is 08:02 PM.