Programming/Linux Tip
ubuntu firefox 실행시 warning 해결
decdream
2015. 11. 3. 13:04
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