I just cannot resolve this error:
gedit ~/.bashrc
command 'gedit' is available in the `/usr/bin/gedit`
How do I master for courigé not really Ubuntu
I just cannot resolve this error:
gedit ~/.bashrc
command 'gedit' is available in the `/usr/bin/gedit`
How do I master for courigé not really Ubuntu
The error message has the answer. Gedit is not in your PATH
Specify the full path:
/usr/bin/gedit ~/.bashrc
or better, add the path to your PATH:
export PATH=$PATH:/usr/bin
gedit ~/.bashrc
or better, for a permanent fix, see How to Add a Directory to my Path
But /usr/bin
should be in your path already so your system seems broken... What did you do before this happened?