Message in the terminal
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
Well, i recently uninstall Oracle SQL developer... since that, when I open a terminal it shows me this:
bash: /u01/app/oracle/product/11.2.0/xe/bin/nls_lang.sh: No such file or directory
And I don't know how to remove it. Any suggestions?
command-line bash
add a comment |Â
up vote
0
down vote
favorite
Well, i recently uninstall Oracle SQL developer... since that, when I open a terminal it shows me this:
bash: /u01/app/oracle/product/11.2.0/xe/bin/nls_lang.sh: No such file or directory
And I don't know how to remove it. Any suggestions?
command-line bash
Dogrep -n 'nls_lang' ~/.bashrc
in terminal. It probably put a config line there.
â Sergiy Kolodyazhnyy
Jun 6 at 23:44
still appearing :(
â Sergio
Jun 7 at 2:24
What didgrep
command tell you, first of all ?
â Sergiy Kolodyazhnyy
Jun 7 at 2:25
1
120:export NLS_LANG=$ORACLE_HOME/bin/nls_lang.sh
â Sergio
Jun 7 at 3:19
Very well. Hold on a minute, will write an answer.
â Sergiy Kolodyazhnyy
Jun 7 at 3:22
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Well, i recently uninstall Oracle SQL developer... since that, when I open a terminal it shows me this:
bash: /u01/app/oracle/product/11.2.0/xe/bin/nls_lang.sh: No such file or directory
And I don't know how to remove it. Any suggestions?
command-line bash
Well, i recently uninstall Oracle SQL developer... since that, when I open a terminal it shows me this:
bash: /u01/app/oracle/product/11.2.0/xe/bin/nls_lang.sh: No such file or directory
And I don't know how to remove it. Any suggestions?
command-line bash
edited Jun 6 at 23:53
![](https://i.stack.imgur.com/U1Jy6.jpg?s=32&g=1)
![](https://i.stack.imgur.com/U1Jy6.jpg?s=32&g=1)
Sergiy Kolodyazhnyy
63.6k9127272
63.6k9127272
asked Jun 6 at 23:31
Sergio
32
32
Dogrep -n 'nls_lang' ~/.bashrc
in terminal. It probably put a config line there.
â Sergiy Kolodyazhnyy
Jun 6 at 23:44
still appearing :(
â Sergio
Jun 7 at 2:24
What didgrep
command tell you, first of all ?
â Sergiy Kolodyazhnyy
Jun 7 at 2:25
1
120:export NLS_LANG=$ORACLE_HOME/bin/nls_lang.sh
â Sergio
Jun 7 at 3:19
Very well. Hold on a minute, will write an answer.
â Sergiy Kolodyazhnyy
Jun 7 at 3:22
add a comment |Â
Dogrep -n 'nls_lang' ~/.bashrc
in terminal. It probably put a config line there.
â Sergiy Kolodyazhnyy
Jun 6 at 23:44
still appearing :(
â Sergio
Jun 7 at 2:24
What didgrep
command tell you, first of all ?
â Sergiy Kolodyazhnyy
Jun 7 at 2:25
1
120:export NLS_LANG=$ORACLE_HOME/bin/nls_lang.sh
â Sergio
Jun 7 at 3:19
Very well. Hold on a minute, will write an answer.
â Sergiy Kolodyazhnyy
Jun 7 at 3:22
Do
grep -n 'nls_lang' ~/.bashrc
in terminal. It probably put a config line there.â Sergiy Kolodyazhnyy
Jun 6 at 23:44
Do
grep -n 'nls_lang' ~/.bashrc
in terminal. It probably put a config line there.â Sergiy Kolodyazhnyy
Jun 6 at 23:44
still appearing :(
â Sergio
Jun 7 at 2:24
still appearing :(
â Sergio
Jun 7 at 2:24
What did
grep
command tell you, first of all ?â Sergiy Kolodyazhnyy
Jun 7 at 2:25
What did
grep
command tell you, first of all ?â Sergiy Kolodyazhnyy
Jun 7 at 2:25
1
1
120:export NLS_LANG=
$ORACLE_HOME/bin/nls_lang.sh
â Sergio
Jun 7 at 3:19
120:export NLS_LANG=
$ORACLE_HOME/bin/nls_lang.sh
â Sergio
Jun 7 at 3:19
Very well. Hold on a minute, will write an answer.
â Sergiy Kolodyazhnyy
Jun 7 at 3:22
Very well. Hold on a minute, will write an answer.
â Sergiy Kolodyazhnyy
Jun 7 at 3:22
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
As solved in the comments via checking your ~/.bashrc
file via grep -n 'nls_lang' ~/.bashrc
, there's
export NLS_LANG=`$ORACLE_HOME/bin/nls_lang.sh`
segment on the line 120. Simply remove that line or comment out, and the error won't appear again.
The backticks are a form of command-substitution, so this expands $ORACLE_HOME
to specific directory, concatenates it with /bin/nls_lang.sh
. and executes that script. The output of that script should have been saved to NLS_LANG
variable, and exported for use when that software is called from command line. In general, export
makes variables available to whatever process shell starts.
As you have uninstalled the software, so the nls_lang.sh
is also gone, but your ~/.bashrc
file has remained unchanged. Since bash
reads ~/.bashrc
whenever you open interactive session in terminal, it still tries to execute that non-existing script, and that's why you see the error. What you should do, is go through ~/.bashrc
and probably remove the related variables such as $ORACLE_HOME
and others.
Ok, I fixed it. Thank you so much for your help. Peace!
â Sergio
Jun 7 at 21:39
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
As solved in the comments via checking your ~/.bashrc
file via grep -n 'nls_lang' ~/.bashrc
, there's
export NLS_LANG=`$ORACLE_HOME/bin/nls_lang.sh`
segment on the line 120. Simply remove that line or comment out, and the error won't appear again.
The backticks are a form of command-substitution, so this expands $ORACLE_HOME
to specific directory, concatenates it with /bin/nls_lang.sh
. and executes that script. The output of that script should have been saved to NLS_LANG
variable, and exported for use when that software is called from command line. In general, export
makes variables available to whatever process shell starts.
As you have uninstalled the software, so the nls_lang.sh
is also gone, but your ~/.bashrc
file has remained unchanged. Since bash
reads ~/.bashrc
whenever you open interactive session in terminal, it still tries to execute that non-existing script, and that's why you see the error. What you should do, is go through ~/.bashrc
and probably remove the related variables such as $ORACLE_HOME
and others.
Ok, I fixed it. Thank you so much for your help. Peace!
â Sergio
Jun 7 at 21:39
add a comment |Â
up vote
0
down vote
accepted
As solved in the comments via checking your ~/.bashrc
file via grep -n 'nls_lang' ~/.bashrc
, there's
export NLS_LANG=`$ORACLE_HOME/bin/nls_lang.sh`
segment on the line 120. Simply remove that line or comment out, and the error won't appear again.
The backticks are a form of command-substitution, so this expands $ORACLE_HOME
to specific directory, concatenates it with /bin/nls_lang.sh
. and executes that script. The output of that script should have been saved to NLS_LANG
variable, and exported for use when that software is called from command line. In general, export
makes variables available to whatever process shell starts.
As you have uninstalled the software, so the nls_lang.sh
is also gone, but your ~/.bashrc
file has remained unchanged. Since bash
reads ~/.bashrc
whenever you open interactive session in terminal, it still tries to execute that non-existing script, and that's why you see the error. What you should do, is go through ~/.bashrc
and probably remove the related variables such as $ORACLE_HOME
and others.
Ok, I fixed it. Thank you so much for your help. Peace!
â Sergio
Jun 7 at 21:39
add a comment |Â
up vote
0
down vote
accepted
up vote
0
down vote
accepted
As solved in the comments via checking your ~/.bashrc
file via grep -n 'nls_lang' ~/.bashrc
, there's
export NLS_LANG=`$ORACLE_HOME/bin/nls_lang.sh`
segment on the line 120. Simply remove that line or comment out, and the error won't appear again.
The backticks are a form of command-substitution, so this expands $ORACLE_HOME
to specific directory, concatenates it with /bin/nls_lang.sh
. and executes that script. The output of that script should have been saved to NLS_LANG
variable, and exported for use when that software is called from command line. In general, export
makes variables available to whatever process shell starts.
As you have uninstalled the software, so the nls_lang.sh
is also gone, but your ~/.bashrc
file has remained unchanged. Since bash
reads ~/.bashrc
whenever you open interactive session in terminal, it still tries to execute that non-existing script, and that's why you see the error. What you should do, is go through ~/.bashrc
and probably remove the related variables such as $ORACLE_HOME
and others.
As solved in the comments via checking your ~/.bashrc
file via grep -n 'nls_lang' ~/.bashrc
, there's
export NLS_LANG=`$ORACLE_HOME/bin/nls_lang.sh`
segment on the line 120. Simply remove that line or comment out, and the error won't appear again.
The backticks are a form of command-substitution, so this expands $ORACLE_HOME
to specific directory, concatenates it with /bin/nls_lang.sh
. and executes that script. The output of that script should have been saved to NLS_LANG
variable, and exported for use when that software is called from command line. In general, export
makes variables available to whatever process shell starts.
As you have uninstalled the software, so the nls_lang.sh
is also gone, but your ~/.bashrc
file has remained unchanged. Since bash
reads ~/.bashrc
whenever you open interactive session in terminal, it still tries to execute that non-existing script, and that's why you see the error. What you should do, is go through ~/.bashrc
and probably remove the related variables such as $ORACLE_HOME
and others.
answered Jun 7 at 3:27
![](https://i.stack.imgur.com/U1Jy6.jpg?s=32&g=1)
![](https://i.stack.imgur.com/U1Jy6.jpg?s=32&g=1)
Sergiy Kolodyazhnyy
63.6k9127272
63.6k9127272
Ok, I fixed it. Thank you so much for your help. Peace!
â Sergio
Jun 7 at 21:39
add a comment |Â
Ok, I fixed it. Thank you so much for your help. Peace!
â Sergio
Jun 7 at 21:39
Ok, I fixed it. Thank you so much for your help. Peace!
â Sergio
Jun 7 at 21:39
Ok, I fixed it. Thank you so much for your help. Peace!
â Sergio
Jun 7 at 21:39
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1044314%2fmessage-in-the-terminal%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
Do
grep -n 'nls_lang' ~/.bashrc
in terminal. It probably put a config line there.â Sergiy Kolodyazhnyy
Jun 6 at 23:44
still appearing :(
â Sergio
Jun 7 at 2:24
What did
grep
command tell you, first of all ?â Sergiy Kolodyazhnyy
Jun 7 at 2:25
1
120:export NLS_LANG=
$ORACLE_HOME/bin/nls_lang.sh
â Sergio
Jun 7 at 3:19
Very well. Hold on a minute, will write an answer.
â Sergiy Kolodyazhnyy
Jun 7 at 3:22