firefox 실행시 아래와 같은 warning 이 발생하면서 실행이 매우 느린 현상이 발생하였다.
An error occurred while loading or saving configuration information for firefox. Some of your configuration settings may not work properly.
이 문제는 .debus 의 실행권한이 없어서 발생하는 이슈로써 다음과 같이 해결이 가능하다.
https://bbs.archlinux.org/viewtopic.php?id=90671
I think I may have found a solution,
can you print the output of
ls -la ~/ | grep .dbus
apparently this problem can happen if ~/.dbus is owned by root.
to fix it AS ROOT (or sudo)
chown -R {your user name}:users ~/.dbus
here's my source, there are a few things in here you could try as well.
나의 경우에는..
sudo chown -R onegun:users ~/.dbus
'Programming > Linux Tip' 카테고리의 다른 글
linux 개발을 위한 source insight tab 설정하기 (0) | 2016.01.12 |
---|---|
터미널의 컬러 text 를 클립보드로 복사하기 (0) | 2015.11.09 |
sudo -s / su 와의 차이점 (0) | 2015.10.06 |
adb shell 기본 접속 권한 root 에서 shell 로 변경 방법 (0) | 2015.10.05 |
Ubuntu 원격제어 하기 (0) | 2015.09.23 |