<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: disable colour in linux terminal in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990356#M28104</link>
    <description>The colouring happens because there is a shell alias or a shell function that adds the colouring options to the ls command by default.&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;To avoid the colouring in a single command:&lt;BR /&gt;use "/bin/ls" instead of just "ls", or use "ls --color=none".&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;To disable the colouring for the current session only, depending on which shell you're using and how it is configured, one of the following commands should work:&lt;BR /&gt;unalias ls&lt;BR /&gt;unset ls&lt;BR /&gt;&lt;BR /&gt;The first command will remove a shell alias named "ls", the second will remove a shell function named "ls".&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;If you want to disable the colouring completely for the user(s) for all future sessions, examine the start-up scripts of the shell you're using. &lt;BR /&gt;&lt;BR /&gt;For the Linux standard shell "bash", see /etc/profile, /etc/bashrc (or /etc/bash.bashrc as some distributions use a different name) and /etc/profile.d directory if it exists. Usually there is a function like this defined somewhere:&lt;BR /&gt;&lt;BR /&gt;function ls()&lt;BR /&gt;{&lt;BR /&gt;    /bin/ls -FN --color=auto "$@"&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Comment this function out to remove the colouring permanently.&lt;BR /&gt;&lt;BR /&gt;MK</description>
    <pubDate>Sat, 28 Apr 2007 02:05:55 GMT</pubDate>
    <dc:creator>Matti_Kurkela</dc:creator>
    <dc:date>2007-04-28T02:05:55Z</dc:date>
    <item>
      <title>disable colour in linux terminal</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990355#M28103</link>
      <description>Dear guys we are using netterm terminal emulator software for working with linux terminal .when we listing directories ,files or editing using vi editor the screen is getting coloured how we can disable this colour feature of linux&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Baiju</description>
      <pubDate>Fri, 27 Apr 2007 23:06:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990355#M28103</guid>
      <dc:creator>Baiju Kumar.B_1</dc:creator>
      <dc:date>2007-04-27T23:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: disable colour in linux terminal</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990356#M28104</link>
      <description>The colouring happens because there is a shell alias or a shell function that adds the colouring options to the ls command by default.&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;To avoid the colouring in a single command:&lt;BR /&gt;use "/bin/ls" instead of just "ls", or use "ls --color=none".&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;To disable the colouring for the current session only, depending on which shell you're using and how it is configured, one of the following commands should work:&lt;BR /&gt;unalias ls&lt;BR /&gt;unset ls&lt;BR /&gt;&lt;BR /&gt;The first command will remove a shell alias named "ls", the second will remove a shell function named "ls".&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;If you want to disable the colouring completely for the user(s) for all future sessions, examine the start-up scripts of the shell you're using. &lt;BR /&gt;&lt;BR /&gt;For the Linux standard shell "bash", see /etc/profile, /etc/bashrc (or /etc/bash.bashrc as some distributions use a different name) and /etc/profile.d directory if it exists. Usually there is a function like this defined somewhere:&lt;BR /&gt;&lt;BR /&gt;function ls()&lt;BR /&gt;{&lt;BR /&gt;    /bin/ls -FN --color=auto "$@"&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Comment this function out to remove the colouring permanently.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Sat, 28 Apr 2007 02:05:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990356#M28104</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2007-04-28T02:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: disable colour in linux terminal</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990357#M28105</link>
      <description>Hiya,&lt;BR /&gt;&lt;BR /&gt;For one command:&lt;BR /&gt;# ls --color=none&lt;BR /&gt;&lt;BR /&gt;To just disable it alltogether, remove the alias for ls:&lt;BR /&gt;# unalias ls&lt;BR /&gt;&lt;BR /&gt;Hope that helps,&lt;BR /&gt;Cheers,&lt;BR /&gt;Wout</description>
      <pubDate>Sat, 28 Apr 2007 02:08:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990357#M28105</guid>
      <dc:creator>Wouter Jagers</dc:creator>
      <dc:date>2007-04-28T02:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: disable colour in linux terminal</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990358#M28106</link>
      <description>Try also:&lt;BR /&gt;&lt;BR /&gt;export TERM=linux-m</description>
      <pubDate>Sat, 28 Apr 2007 18:34:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990358#M28106</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-04-28T18:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: disable colour in linux terminal</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990359#M28107</link>
      <description>If you want to disable color for all users and all sessions, edit the file /etc/DIR_COLORS and replace the line that reads, 'COLOR all' with 'COLOR none'.&lt;BR /&gt;&lt;BR /&gt;If you want to disable color for a given user, then in that user's home directory, edit or create a file named '.dircolors' or '.dir_colors', and make sure there is a line that reads, 'COLOR none'.</description>
      <pubDate>Mon, 30 Apr 2007 09:09:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990359#M28107</guid>
      <dc:creator>Jess Long</dc:creator>
      <dc:date>2007-04-30T09:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: disable colour in linux terminal</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990360#M28108</link>
      <description>"#alias ls=ls"   is easiest option.</description>
      <pubDate>Fri, 04 May 2007 02:08:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disable-colour-in-linux-terminal/m-p/3990360#M28108</guid>
      <dc:creator>Tobu</dc:creator>
      <dc:date>2007-05-04T02:08:12Z</dc:date>
    </item>
  </channel>
</rss>

