$LS_COLORS stopped working (for user, not for root)

Good day.
Some time ago,  "ls" stopped paying attention to my color settings when coloring output for my user, while still working for root. For both root and my user, I set $LS_COLORS through ~/.bashrc as "eval $(dircolors -b)" but while this works fine for root, it at some point stopped working for my user, simply since the "eval" doesn't seem to work anymore. That is, what could be the reason for the below behavior?
(note: I also have colored ls output without $LS_COLORS; just not the colors that I want, and which root does have).
===
[rene@e600 ~]$ echo $LS_COLORS
[rene@e600 ~]$ dircolors -b
LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:';
export LS_COLORS
[rene@e600 ~]$ eval $(dircolors -b)
[rene@e600 ~]$ echo $LS_COLORS
[rene@e600 ~]$
===
bash is 4.2.045-5 (coreutils is 8.21-2)
Regards,
Rene

I happens to have the same problem of yours after logging in to Gnome but i didn't test for root.
I've followed what comment #40 says at
https://bugs.launchpad.net/ubuntu/+sour … bug/549727 and the problem
seems to gone.
try removing ~/.gconf/desktop/gnome/peripherals/touchpad ?

Similar Messages

  • Outlook to iPhone sync failure – Sync suddenly stopped working for calendar events but continued for contacts and notes.   Finally Fixed!!!  SUPPORT TEAM – PLEASE SEE THIS – Complete explanation of cause and correction steps.

    The issue:  Outlook to iPhone sync failure – Sync suddenly stopped working for calendar events but continued for contacts and notes.   Finally Fixed!!! 
    SUPPORT TEAM – PLEASE SEE THIS – Complete explanation of cause and correction steps.
    The cause:  It is now clear what caused this problem.  For years I had several “all-day” events in my Outlook calendar (birthdays, anniversaries, etc.).  In May 2012 I decided to make some of them one hour  events so I could add alerts to remind me of the event.  I did this by dragging them in Outlook to the time I wanted and expanding them to the time slot desired and then adding the alarm.
    The symptom:  Syncing stopped working for the calendar but continued working for contacts and notes.  I didn’t realize sync was failing until months later when I missed two very important phone calls, so when I noticed it the cause was not obvious. 
    The failed attempts:  I’m head of a software firm and my calendar sync is a crucial to my business life so I took this on with a vengeance.  From a quick look at events in Outlook and the iPhone I could see that the problem started in May 2012.  Events before May were in both Outlook and the iPhone but events after May were only one or the other.  Unfortunately I had changed several other things at the same time relating to other events so again the cause was not obvious.  MANY calls with AppleCare proved them incompetent so my internal IT guys assisted trying many things.  We tried a huge number of calendar changes and several versions of iTunes, iPhone OS and Office as well as both iPhone 4 and 5, all without success.
    The fix:  After 18 months of frustration, MANY  hundreds of $ expense and MANY hours of wasted time I saw a blog that had a calendar sync  problem and it indicated all day events were related.  I changed the display of the Outlook calendar to the list view, added columns so I could see “all day” event check marks as well as times of events,  sorted on the “all day” event column to move them to the top, and for all events that were “all day” events AND had a start and end time, I removed recurrence and then added the annual recurrence back…
    After I fixed all events that had BOTH “all day” set and had a start/end time, I tried another sync.  It synced for the first time in 18 months! 
    Problem occurred May 2012 – fixed Nov 2013

    Hi, to remove dummy '_ModGrp' entries, rather than crashing the 'Suppr' key on your keyboard, you can use this basic VBA macro (launched for instance from Excel).
    It will recursively remove all '_ModGrp...' folders
    Sub RemoveFolders_Click()
        Dim oOutlook As Outlook.Application
        Set oOutlook = New Outlook.Application
        Set objNameSpace = oOutlook.GetNamespace("MAPI")
        Call CleanFolders(objNameSpace.Folders)
    End Sub
    Sub CleanFolders(objFolders As Outlook.Folders)
        For i = objFolders.Count To 1 Step -1
            If Left(objFolders(i).Name, 7) = "_ModGrp" Then
                objFolders.Remove( i )
            Else
                If Not objFolders(i).Folders Is Nothing Then
                    Call CleanFolders(objFolders(i).Folders)
                End If
            End If
        Next i
    End Sub

  • My Hotmail watcher has stopped working for the past week or so. I've uninstalled and reinstalled it several different times, but it did not help

    My Hotmail watcher has stopped working for the past week or so. I've uninstalled and reinstalled it several different times, but it did not help

    Hi,
    It appears that the developer has released a newer version of Hotmail Watcher. Version 2.13 located at https://sites.google.com/site/sonthakit/hotmailwatcher. You should try updating it to see if it works then.
    From https://addons.mozilla.org/en-us/firefox/addon/hotmail-watcher/<br>
    '''IMPORTANT -- I had changed my add-on to self-host. New version had been released at my site. Please install new version'''

  • Suddenly all of my Office-programs have stopped working and will not launch on my MacBook. Could anyone give an amateur from Norway a hint of what may cause the problem? And I can not find the installation-disc for Office...Super! :)

    Suddenly all of my Office-programs have stopped working and will not launch on my MacBook. They were all already installed when I bought the computer. Could anyone give an amateur from Norway a hint of what may cause the problem? (And I can not find the installation-disc for the Office Programs...Super!)

    Have you contacted Microsoft support - http://www.microsoft.com/mac/support ? 

  • HT1438 ipod touch 3rd generation just stopped working.  will not turn on.  does come up with the apple logo, but just remains like that for 30 sec. and shuts off.  does not work whether attached to computer or not.

    My daughter's ipod touch just stopped working.  will not turn on other than showing the apple logo for 30 sec and then off.  this happens whether it's attached to the computer or not.

    Try resting it from the computer

  • HT4628 After 7 months of flawless performance, my airport extreme has stopped working for my iphone and ipad.  Can anyone help, i am not very computer savey.

    After 7 months of flawless performance, my allpe airport extreme wi-fi stopped working for my iphone and ipad.  I am not very computer savey.  Can someome help me?
    Thank you,
    George N

    Do you mean that only your iPhone and iPad stopped working! while other devices (Pc, laptop, etc..) still works?

  • We can't use any of app in Myanmar ! If someone send me with Myanmar font, my phone stop working for a while . Can u help us ? Like .. Adding Myanmar font :)

    When I used iOS4.3.3 , my phone did not stop working for a while although I can't see in Myanmar font!

    Apple has not yet included a Myanmar font in iOS, and there is no way for users to add one.  You can search the app store for "myanmar" or "burmese" to see if there are some apps that may be useful for some purposes. 
    The best place to ask Apple to add new features is
    http://www.apple.com/feedback/iphone.html
    For the freezing problem with Myanmar language material, see
    https://discussions.apple.com/thread/4544080

  • My ipad 3 Bluetooth stops working for several seconds every few minutes

    My ipad Bluetooth stops working for a few seconds every few minutes...very annoying. Any solutions?

    firefox has become a somewhat of a pig. it is actually funny and i know this problem will soon be cured but.... here was this "anti-IE" thing that came out a while ago saying "we're the fastest browser in the world" and indeed they were. as a 13 year microsoft employee/veteran i was reluctant to try it, but try it i did. that was years ago. now all of a sudden here i am and for the past several months at least, firefox has been pausing every few seconds or so. it is totally annoying and has me researching the cause. i'm a techie/quite computer literate and know how to tweak and configure to get every last ounce of speed out of my system. let me tell you... firefox is no longer the fastest browser on the planet.... they have issues. why? they have a lot of code and maintaining a complex piece of software (they are finding) is not easy. BUT, the problem lies within firefox's code base... i've used the latest version of IE, safari and chrome and neither is suffering from the pausing problem.
    how can you repro this problem? go to any webform (gmail, this forum, et al) and start typing... there will be an annoying pause every few seconds. while pausing, firefox pages out to disk, despite there being TONS of physical memory available... AND i have set my system to NO pagefile, yet firefox is paging...
    or, go to a long webpage (e.g. ebay and set the search results to 200. then just use your cursor to scroll down the page) and you'll see the same problem.
    hurry firefox... fix this annoying problem. i've been a happy and loyal FF user for at least 5 years

  • Ethernet suddenly stopped working for no apparent reason

    My late 2011 MBP is usually functioning as a desktop with external display and keyboard/trackpad, so I have it connected via ethernet when it's on the desk.  However, my connection suddenly stopped working for no apparent reason.......... BUT clearly not a router problem as there's no problem with the wifi connection.  System Preferences > Network > Ethernet is telling me:
    Status: Connected.  Ethernet has a self-assigned IP address and will not be able to connect to the internet.
    Dunno how this happened, as to my knowledge I didn't actually do anything to cause this problem, just randomly stopped working.  Any solutions much appreciated, thanks :-)

    Please post a screenshot of the Network preference pane. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • Thunderbolt stop working for some seconds

    I have a Macbook PRO Retina 15'' Early 2013 and I have the problem that one of the two thunderbolt stop working for same seconds.
    I often use both ports: one for ethernet and the other for external monitor through DVI.
    If I am using the ethernet in the problematic port, until a random time (between 10 minutes or 8 hours) my mac disconnects from the network. I have to pull out and in the adapter to restart the connection.
    If I am using the DVI adapter, sometime the monitor is seen as disconnected and after 2-3 seconds it is again reconnected.
    Can be an hardware problem or only software?
    Thanks

    Yes.
    Have been added a lot of different other problems: not respond after stop, Wi-Fi and Bluetooth not working or not usable, usb disconnections, kernel panic, sometime is impossible to reboot...
    The Apple support has decided to change the mainboard.
    I am disappointed on how Apple is managing my problem, because they have told me wrong procedures. They have not proposed to me anything to apologize for the wrong information given... I have ever thought that the customer policy for Apple is different from other company and I was very excited to buy my first macbook.
    I have bought a macbook that costs over 2200€ and the only solution is to wait at least 5 working days for repair: I need for work, not for fun...
    My old Dell costs less that 1200€ and offers, with the same cost of an Apple care, a repair service in 24 hours and accidental damage assurance.
    I hope they can restore the good opinion that I have build in my brain and destroyed in 3 days...

  • PProHeadless.exe has stopped working for Premiere Pro CS6

    I have had no problems with it until today.
    The video I was trying to produce was about 31 minutes long.
    I have had this PC less than a year and have never had PProHeadless.exe stop working for Premiere Pro CS6.
    what causes this to happen, has the last batch of updates caused this?
    PC specs:
    Windows 7 64bit fully updated
    MoBo Asus P6X58E-WS
    i7 quad core 950
    24 gigs of Ram
    10,000 rpm's Hard Drives
    very few things installed on this PC to avoid application conflicts, and I had no other applications running.
    Thanks for any input,
    Best regards,
    Tony

    Go to http://forums.adobe.com/community/premiere and, in the area just under Ask a Question, type in
    PProHeadless
    You may now read previous discussions on this subject... be sure to click the See More Results at the bottom of the initial, short list if the initial list does not answer your question

  • Backing Files Stop Working For No Apparent Reason.  Help?

    I have a portal application accessing a remote WSRP PageFlow portlet. The remote portlet populates a backing file and the producer application reads the data. It was working fine and then it stopped working for no apparent reason. The data was simply null, no errors or warnings. I put traces in the backing file and verified that the life-cycle methods were indeed being called and that data was there, and yes, both were indeed the case. Data is being set on the SimpleStateHolder and it's just not transferring over to the producer side.
    In order to rule out environmental issues, I've done this on multiple machines. Also, I started a whole new project, got backing file setup, verified that it worked, started developing with it and one time I deployed and it was broken again. I rolled out the changes I had just made but it didn't matter. The earlier code still failed to work although it had been working moments earlier.
    So, any ideas? Has anybody else encountered backing file issues like this and if so do you have any suggestions on debugging or fixing them?
    Ryan

    I have a portal application accessing a remote WSRP PageFlow portlet. The remote portlet populates a backing file and the producer application reads the data. It was working fine and then it stopped working for no apparent reason. The data was simply null, no errors or warnings. I put traces in the backing file and verified that the life-cycle methods were indeed being called and that data was there, and yes, both were indeed the case. Data is being set on the SimpleStateHolder and it's just not transferring over to the producer side.
    In order to rule out environmental issues, I've done this on multiple machines. Also, I started a whole new project, got backing file setup, verified that it worked, started developing with it and one time I deployed and it was broken again. I rolled out the changes I had just made but it didn't matter. The earlier code still failed to work although it had been working moments earlier.
    So, any ideas? Has anybody else encountered backing file issues like this and if so do you have any suggestions on debugging or fixing them?
    Ryan

  • Qosmio X500: power adapter stopped working for no reason

    Hi,
    Now i have my Qosmio X500 for a year and i like it, however i have small problems with it, and i would like to know if it can be problematic.
    The first thing is that my power adapter stopped working for no reason,
    So i bought a new one, but it always made some noise when the laptop was fully charged.
    I know people with the same laptop and their adapter didn't make that sizzling noise, it looks like it was already defect from the begin.
    Then i have one dead pixel in the middle of my screen, no problem for me.
    Finally my screen is a bit loose from the laptop, when i close it, i can move it, it always seems like it's not on it's correct place, because when i close it normally it's not 100% horizontal...
    Also when i replace my screen, my speakers make crackling noises and my webcam stops working.
    So all those problems i have annoy me, especially the last one (webcam and speakers problem), can this fit in the warranty of the laptop? I did extend the warranty for one year...
    Thanks in advance.

    > The first thing is that my power adapter stopped working for no reason,
    > So i bought a new one, but it always made some noise when the laptop was fully charged.
    I think this is AC adaptor fault maybe a broken cable or something like that I would recommend you to replace this get in contact with the dealer and ask for the new one.
    > Then i have one dead pixel in the middle of my screen, no problem for me.
    I found a info about such issues:
    +Information on screen technology and pixel failure tolerance for LCD displays
    +http://aps2.toshiba-tro.de/kb0/TSB9502LZ0000R02.htm
    > Finally my screen is a bit loose from the laptop, when i close it, i can move it, it always seems like it's not on it's correct place, because when i close it normally it's not 100% horizontal...Also when i replace my screen, my speakers make crackling noises and my webcam stops working.
    Maybe you should ask Toshiba notebook technicians for a check maybe some screws or the hinges are loose.
    The speakers should be checked with connected headphones. If you will not notice the same crackling sound using headphones, then the issue might be related to speakers

  • Flash Player stopped working for Chrome in Windows 8

    Randomly, the flash player stopped working for Chrome. I run a Windows 8 system. Everytime I go to a website that uses the flash plugin (youtube, video streaming websites) a bar pops up telling me that the plug in will only work in the desktop. I've never encountered this problem before.
    I have:
    1. Checked to see if I needed updates. I'm all updated.
    2. Reinstalled Chrome to try and fix it, to no avail.
    Additionally, when I view the Flash Player settings from my control panel, under Advanced Settings, it says that the plug in version is not installed. However, I'm unable to click on that or click on the settings that say "Allow Adobe to install updates (recommended)".
    What is going on? I really disllike running Chrome from the desktop and would like this to be fixed.

    sherylt7 wrote:
    Randomly, the flash player stopped working for Chrome. I run a Windows 8 system. Everytime I go to a website that uses the flash plugin (youtube, video streaming websites) a bar pops up telling me that the plug in will only work in the desktop. I've never encountered this problem before.
    I have:
    1. Checked to see if I needed updates. I'm all updated.
    2. Reinstalled Chrome to try and fix it, to no avail.
    Additionally, when I view the Flash Player settings from my control panel, under Advanced Settings, it says that the plug in version is not installed. However, I'm unable to click on that or click on the settings that say "Allow Adobe to install updates (recommended)".
    What is going on? I really disllike running Chrome from the desktop and would like this to be fixed.
    Chrome uses its own "proprietary" build of Flash Player, so you WON'T see any plugin in your control panel for it. You verify that it's enabled by typing "chrome://plugins" in your Chrome address bar. I'd provide a screenshot but I've REMOVED Chroime from EVERY system I have because it uses WAY TOO MUCH processor and  it was launching by itself in the background on my Win 8 machine. I won't tolerate that out of ANY software.

  • Can any one find a solution to this problem [ID CC 2014 has stopped working] for this file{link included}

    Hi all,
    Can any one find a solution to this problem [ID CC 2014 has stopped working] for this file{Dropbox - Questions CH-5 .indd}
    Note: I could open it, but suddenly I have faced this issue with just this file no any other of my files.
    Thanks for your help.

    try the blind export to .idml script at Adobe Community: InDesign 6 is crashing when attempting to open a particular document. All others are opening OK.

Maybe you are looking for

  • Can't read a file using FileInputStream(String path)

    Hi, Platform: Fedora Core 3 IDE: MyEclipse 3.8.1 Servlet Container: Tomcat 5 Framework: Struts 1.1 JDK: 1.5 1) I'm trying to read a file (mw.properties) which resides in the package aaa.ccc.uuu.struts using FileInputStream("/aaa/ccc/uuu/struts/mw.pro

  • Media transfer from LG enV2 to smartphone

    When I activate my new Samsung Galaxy S5, will all my media transfer from my old LG enV2? I know I have my contacts backed up and ready to transfer, but I am afraid that all my photos will just disappear. It has been very difficult to find a clear an

  • Can't install iPod Shuffle?

    I've had my 20GB iPod for almost a year now, and I've just bought an iPod Shuffle, but can't seem to install it. iTunes won't recognise it, and when I use the CD, I get the same problem. Can anyone help? Thanks!

  • Nano refuses to sync

    I have a fourth generation iPod nano.  I went to go sync it today, and iTunes prompted me to restore it, which I did.  However, after I restored it, it is now refusing to sync.  I tried unplugging it, and plugging it back in, but it didn't work.  It

  • Can't uninstall sound drivers (Realtek AC97 Audio)

    Hi, I'm having problems uninstalling my sound driver that's on my MSI K8N NEO4-F. When I choose to remove it in Add/Remove Programs in the Control Panel I get the following error message: (I'm translation this from Swedish so if some word has the wro