Monodevelop now unnessessarily depends on gnome(-sharp)

I was going to upgrade monodevelop from 0.12 revision 1 to revision 2. Until now monodevelop depended on gtk-sharp and a few other sharp libraries. But suddenly gnome-sharp got introduced as a dependency. If I understand correctly, this is not actually necessary.
I am using a KDE-centric workstation and all I use monodevelop for is building beagle. I have even uploaded a modified version of beagle to AUR that does not install gnome-sharp as a dependecy since gtk-sharp is well enough. But now all the following crap (from a KDE point of view) gets pulled in with the update of monodevelop:
$ yaourt -Ss monodevelop
extra/monodevelop 0.12-2 [0.12-1 installed]
a mono port of SharpDevelop, a .NET Integrated Development Tool
$ yaourt -u monodevelop
1) extra/monodevelop 0.12-2 [0.12-1 installed]
a mono port of SharpDevelop, a .NET Integrated Development Tool
Targets: libxres-1.0.2-1 libwnck-2.16.2-1 gnome-menus-2.16.1-1 libsoup-2.2.98-1
libbonobo-2.16.0-1 libgnome-2.16.0-1 gnome-keyring-0.6.0-1
evolution-data-server-1.8.2-1 libgnomecanvas-2.14.0-1
libbonoboui-2.16.0-1 libgnomeui-2.16.1-1 gnome-desktop-2.16.2-1
gnome-panel-2.16.2-1 hicolor-icon-theme-0.10-1 perl-xml-simple-2.15-1
icon-naming-utils-0.8.1-1 gnome-icon-theme-2.17.4.1-1
libgnomeprintui-2.12.1-2 vte-0.14.1-1 gail-1.9.3-1 gtkhtml-3.12.2-1
gnome-sharp-2.16.0-1 monodevelop-0.12-2
Total Package Size: 21.8 MB
Proceed with upgrade? [Y/n] n
I do not think that this is necessary at all. Does anyone have more insight on this?

Thank you for quickly answering my question. Indeed, monodevelop does not run.
I just needed monodevelop for building beagle, but obviously the current beagle version builds without it, too. So I updated my AUR package and everything is fine again. No need for too much clutter.

Similar Messages

  • Gdm depends on gnome-desktop [SOLVED]

    I have xfce and want to have a display manager so that I can automatically boot to the desktop. In (X)ubuntu I used to have gdm, so I would like to have that now too. The problem is that when I try to install gdm with pacman, gnome-desktop becomes a target. How come? Xubuntu uses gdm without having Gnome installed.
    If it isn't possible I guess I will have to install SLiM, but gdm would be my first choice.
    Last edited by jeypeyy (2010-01-24 10:21:51)

    jeypeyy wrote:
    I have xfce and want to have a display manager so that I can automatically boot to the desktop. In (X)ubuntu I used to have gdm, so I would like to have that now too. The problem is that when I try to install gdm with pacman, gnome-desktop becomes a target. How come? Xubuntu uses gdm without having Gnome installed.
    If it isn't possible I guess I will have to install SLiM, but gdm would be my first choice.
    gdm has the same depedencies in ubuntu as in arch but the thing is they have split packages. they split gnome-panel in libpanel-applet2-0  etc. the same can be on gnome-desktop.
    http://packages.ubuntu.com/karmic/gdm
    if you really want to get rid of gnome-desktop, i recommend abs and recompile it and see if is working without gnome-desktop and his dependencies

  • Does xulrunner depend on GNOME or not?

    Hi... I have two questions (the rest is just me talking about how confused I am):
    1. How is mozilla getting its files to use shared libraries even when they aren't linked against those shared libraries?
    2. How can I tell if it's safe to delete a shared library that is used in only this way?
    =====
    I know xulrunner comes with two files in /usr/lib/xulrunner-1.9.2/components that bring in gnome dependencies: libmozgnome.so and libnkgnomevfs.so. Firefox also comes with libnkgnomevfs.so but according to this bug https://bugzilla.mozilla.org/show_bug.cgi?id=512671 it's not supposed to.
    I'm wondering how these libraries actually get used.
    [root@connors-laptop firefox-3.6]# cd /usr/lib/firefox-3.6
    [root@connors-laptop firefox-3.6]# ldd firefox | grep gnome
    [root@connors-laptop firefox-3.6]# cd /usr/lib/xulrunner-1.9.2/
    [root@connors-laptop xulrunner-1.9.2]# ldd libxul.so | grep gnome
    [root@connors-laptop xulrunner-1.9.2]# ldd libxpcom.so | grep gnome
    [root@connors-laptop xulrunner-1.9.2]# ldd libmozjs.so | grep gnome
    [root@connors-laptop xulrunner-1.9.2]#
    As far as I can tell... NOTHING is linked against them. However the situation gets even weirder. I know that libxul and libxpcom are essential for firefox, yet firefox seems not to be linked against them either:
    [root@connors-laptop firefox-3.6]# ldd firefox | grep libxul
    [root@connors-laptop firefox-3.6]# ldd firefox | grep libxpcom
    [root@connors-laptop firefox-3.6]# grep libxul firefox
    Binary file firefox matches
    [root@connors-laptop firefox-3.6]# grep libxpcom firefox
    Binary file firefox matches
    [root@connors-laptop firefox-3.6]#
    The binary seems to contain references to them but they are runtime references, not compile time references? It dynamically decides whether or not it should use those libraries when you start it? I tried figuring out where the gnome libraries are used this way and I think I found it:
    [root@connors-laptop firefox-3.6]# cd /usr/lib/xulrunner-1.9.2/
    [root@connors-laptop xulrunner-1.9.2]# grep gnome libxul.so
    Binary file libxul.so matches
    Thunderbird is causing similar confusion with me. It is of course independent from xulrunner but it comes with a libmozgnome.so and I can't tell how it's used. Anecdotally everyone says it's safe to delete libmozgnome and libnkgnomevfs but how do I know this? If I deleted orphan libraries that things aren't linked against I would delete libxul, libxpcom and libmozjs which is obviously NOT okay to do.

    Ok so when I start the code... it is "deciding" whether to be linked against libmozgnome.so or not. Sounds a bit like self-modifying code to me. I was wondering because if I made a program that used gconf for example, even if I wanted it to be "optional" and put it in a section of the program that I considered "unimportant"... if I didn't have gconf installed I would absolutely get an undefined reference to symbol and nothing would work... even if I think it's "not a big deal."
    I guess this LD_PRELOAD stuff is the solution. Firefox can first check if the right gnome deps are installed. If they are, it will load them at run time, if they are missing it will just move on. I guess this is how openoffice uses the "optional" gconf. It comes with a file called gconfbe1.uno.so but nothing is linked (at compile time) to it. This must mean it is loaded while openoffice runs because openoffice detected at runtime that I have gconf but if I didn't it would've skipped this dependency.
    So ldd is not a good way to check if a program does this. I should use lsof to see if a program is dynamically loading libraries? And if I want to confirm my suspicions about how it does so I should grep the executable for phrases like "LD_PRELOAD", "LD_LIBRARY_PATH" or "dlopen"? I guess the ultimate way would be checking the source code if I have time.

  • How to remove gnome without dependency errors?

    I'm a little frustrated with pacman right now.
    I downloaded gnome, thinking I wanted it. I don't. So I went to remove the two things I installed with pacman: gnome and gnome-extra. But I can't, because the other packages that came with them depend on others within gnome. I don't care, though - I want ALL of gnome removed. Short of manually removing each dependency tree, which takes FOREVER, how can I easily get rid of this plague on my system? pacman -Rs gnome doesn't work, and I don't know what else to do.

    sl wrote:
    to remove a pkg and its deps use pacman -Rs
    (other combinations include. pacman -R[c,cc,n]s)
    i don't remember if it acts on groups (i think taht's what teh `n' option does, i'm not sure), as for the `c' that removes the downloaded pkgs as well ...
    other tahn taht, only tip i got is try tro remove gnome (p -R gnome gnome-extra, etc) ..
    and each time if it complaisn about deps. just add those pkgs to it as well#
    so you'd have ..
    pacman -Rns gnome gnome-extra gnome-terminal****
    Eeeek! I suggest you read the pacman manpage again.
    REMOVE OPTIONS
           -c, --cascade
                  Remove  all target packages, as well as all packages that depend
                  on one or more target packages. This operation is recursive.
           -k, --keep
                  Removes the database entry only. Leaves all files in place.
           -n, --nosave
                  Instructs pacman to ignore file backup designations.   Normally,
                  when  a  file is removed from the system the database is checked
                  to see if the file should be renamed with a .pacsave  extension.
           -s, --recursive
                  Remove  each  target  specified including all dependencies, pro-
                  vided that (A) they are not required by other packages; and  (B)
                  they  were not explicitly installed by the user.  This option is
                  analogous to a backwards --sync operation.

  • [SOLVED]MonoDevelop 3.0.2 build failure

    Hello everyone. I'm really sorry, if there are any mistakes in the text below: I am kind of a new to building from source, and my English is quite bad.
    So, I've decided to make a MonoDevelop package for a new version: I didn't find it in AUR or testing repository.
    People say, it's really better and featured then all the previous versions.
    Log of my actions:
    git clone git://github.com/mono/monodevelop.git
    cd monodevelop
    git submodule init
    git submodule update
    then made monodevelop.tar.gz
    My PKGBUILD was copied from 2.8.8.4 version: /var/abs/extra/monodevelop/PKGBUILD, with couple of changes(version, and a local .tar.gz as a source)
    pkgname=monodevelop
    pkgver=3.0.2
    pkgrel=1
    pkgdesc="An IDE primarily designed for C# and other .NET languages"
    arch=('i686' 'x86_64')
    url="http://www.monodevelop.com"
    license=('GPL')
    depends=('mono>=2.10.5' 'mono-addins>=0.6.2' 'gnome-sharp')
    options=(!makeflags)
    install=monodevelop.install
    source=(monodevelop.tar.gz)
    build() {
    export MONO_SHARED_DIR=$srcdir/src/.wabi
    mkdir -p $MONO_SHARED_DIR
    cd $srcdir/$pkgname
    ./configure --prefix=/usr
    make || return 1
    package() {
    cd $srcdir/$pkgname
    make DESTDIR=$pkgdir install
    rm -r $MONO_SHARED_DIR
    md5sums=('f54aca4dc7d6e6b94784686463c9db82')
    Maybe it's not like it should be: i'm doing it the first time now.
    makepkg -g>>PKGBUILD worked fine.
    Then...
    makepkg
    /*trimmed lines*/
    make[3]: Leaving directory `/home/jediknight/build/src/monodevelop/main/src/tools'
    make[3]: Entering directory `/home/jediknight/build/src/monodevelop/main/src'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/home/jediknight/build/src/monodevelop/main/src'
    make[2]: Leaving directory `/home/jediknight/build/src/monodevelop/main/src'
    Making all in po
    make[2]: Entering directory `/home/jediknight/build/src/monodevelop/main/po'
    ../build/locale/cs/LC_MESSAGES/
    make[2]: ../build/locale/cs/LC_MESSAGES/: Command not found
    make[2]: *** [../build/locale/cs/LC_MESSAGES/monodevelop.mo] Error 127
    make[2]: Leaving directory `/home/jediknight/build/src/monodevelop/main/po'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/jediknight/build/src/monodevelop/main'
    make: *** [all-recursive] Error 1
    And this is how it finished.
    It is not a problem of my bad PKGBUILD file: when this failed, I tried to install it with a common commands: configure --profile=stable --prefix=... && make && make run, and make failed again with the same message.
    So, my question is:
    1) What could possibly go wrong, according to the log?
    2) What should I change somehow?
    3) Maybe, someone has a compiled binary package for a MonoDevelop 3.0.2?
    Last edited by JediKnight (2012-06-07 23:03:54)

    JediKnight wrote:I didn't find it in AUR
    What search term did you use??  Here is monodevelop-git already in the AUR.
    It seems it may have been abandonded, but perhaps you could take over that package rather than starting a new one.
    Additionally, a patch is applied in that PKGBUILD.  Perhaps that could be needed to solve your problem.

  • [SOLVED]Gnome 3.6: Icons are missing after updating

    I did a (somewhat large) update yesterday which seemed to go fine. Since then, I'm missing a bunch of icons from various parts of Gnome. I'll attach some pictures that show what Nautilus looks like and the desktop top right menus. I use Faience icons usually, but changing it back to Gnome default doesn't help. I also deleted all the hidden Gnome configuration files, but that didn't help either.
    This is my pacman log from the upgrade.
    [2013-03-26 22:34] starting full system upgrade
    [2013-03-26 22:43] upgraded bash (4.2.042-3 -> 4.2.045-1)
    [2013-03-26 22:43] upgraded acpid (2.0.18-1 -> 2.0.18-2)
    [2013-03-26 22:43] upgraded art-sharp (2.24.2-2 -> 2.24.2-3)
    [2013-03-26 22:43] upgraded icu (50.1.2-1 -> 51.1-1)
    [2013-03-26 22:43] upgraded boost-libs (1.52.0-1 -> 1.52.0-2)
    [2013-03-26 22:43] upgraded sqlite (3.7.15.2-1 -> 3.7.16-1)
    [2013-03-26 22:43] upgraded libffi (3.0.11-1 -> 3.0.12-1)
    [2013-03-26 22:43] upgraded wayland (1.0.5-1 -> 1.0.6-1)
    [2013-03-26 22:43] upgraded libgcrypt (1.5.0-3 -> 1.5.1-1)
    [2013-03-26 22:43] upgraded shadow (4.1.5.1-4 -> 4.1.5.1-5)
    [2013-03-26 22:43] upgraded util-linux (2.22.2-1 -> 2.22.2-2)
    [2013-03-26 22:43] upgraded systemd (197-4 -> 198-2)
    [2013-03-26 22:43] upgraded mesa (9.1-2 -> 9.1.1-1)
    [2013-03-26 22:43] installed mesa-libgl (9.1.1-1)
    [2013-03-26 22:43] upgraded libxi (1.6.2-1 -> 1.7-1)
    [2013-03-26 22:43] upgraded qt4 (4.8.4-13 -> 4.8.4-16)
    [2013-03-26 22:43] upgraded bitcoin-qt (0.8.0-2 -> 0.8.1-1)
    [2013-03-26 22:43] upgraded boost (1.52.0-1 -> 1.52.0-2)
    [2013-03-26 22:43] upgraded gstreamer (1.0.5-1 -> 1.0.6-1)
    [2013-03-26 22:43] upgraded gst-plugins-base-libs (1.0.5-1 -> 1.0.6-1)
    [2013-03-26 22:43] g_module_open() failed for /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so: libicule.so.50: cannot open shared object file: No such file or directory
    [2013-03-26 22:43] upgraded gdk-pixbuf2 (2.26.5-1 -> 2.26.5-2)
    [2013-03-26 22:43] upgraded gst-plugins-good (1.0.5-1 -> 1.0.6-1)
    [2013-03-26 22:43] upgraded libtracker-sparql (0.14.4-3 -> 0.14.5-1)
    [2013-03-26 22:43] upgraded brasero (3.6.1-1 -> 3.6.1-2)
    [2013-03-26 22:43] upgraded brltty (4.4-3 -> 4.4-4)
    [2013-03-26 22:43] upgraded cgminer (2.11.2-1 -> 2.11.3-2)
    [2013-03-26 22:43] upgraded gnutls (3.1.9-1 -> 3.1.10-1)
    [2013-03-26 22:43] upgraded libcups (1.6.1-6 -> 1.6.2-1)
    [2013-03-26 22:43] upgraded gtk-update-icon-cache (2.24.16-1 -> 2.24.17-1)
    [2013-03-26 22:43] gtk-query-immodules-2.0: error while loading shared libraries: libicule.so.50: cannot open shared object file: No such file or directory
    [2013-03-26 22:43] upgraded gtk2 (2.24.16-1 -> 2.24.17-1)
    [2013-03-26 22:43] upgraded chromium (25.0.1364.172-1 -> 25.0.1364.172-2)
    [2013-03-26 22:43] upgraded polkit (0.109-1 -> 0.110-1)
    [2013-03-26 22:43] warning: /etc/colord.conf installed as /etc/colord.conf.pacnew
    [2013-03-26 22:43] upgraded colord (0.1.28-1 -> 0.1.31-1)
    [2013-03-26 22:43] upgraded colord-gtk (0.1.24-1 -> 0.1.25-1)
    [2013-03-26 22:43] upgraded poppler (0.22.1-3 -> 0.22.2-1)
    [2013-03-26 22:43] upgraded cups-filters (1.0.30-1 -> 1.0.31-1)
    [2013-03-26 22:43] upgraded cups (1.6.1-6 -> 1.6.2-1)
    [2013-03-26 22:43] upgraded dbus-glib (0.100-1 -> 0.100.2-1)
    [2013-03-26 22:43] upgraded iptables (1.4.16.3-1 -> 1.4.18-1)
    [2013-03-26 22:43] upgraded iproute2 (3.7.0-1 -> 3.8.0-1)
    [2013-03-26 22:43] upgraded dhclient (4.2.4.2-1 -> 4.2.5-1)
    [2013-03-26 22:43] upgraded dnssec-anchors (20120422-1 -> 20130320-1)
    [2013-03-26 22:43] upgraded gconf (3.2.5-3 -> 3.2.6-1)
    [2013-03-26 22:43] upgraded perl (5.16.2-4 -> 5.16.3-1)
    [2013-03-26 22:43] upgraded imagemagick (6.8.2.3-1 -> 6.8.4.0-1)
    [2013-03-26 22:43] upgraded emacs (24.2-4 -> 24.3-1)
    [2013-03-26 22:43] upgraded evolution-data-server (3.6.3-1 -> 3.6.4-1)
    [2013-03-26 22:43] upgraded evolution (3.6.3-1 -> 3.6.4-1)
    [2013-03-26 22:43] warning: /etc/gshadow installed as /etc/gshadow.pacnew
    [2013-03-26 22:43] warning: /etc/group installed as /etc/group.pacnew
    [2013-03-26 22:43] upgraded filesystem (2013.01-3 -> 2013.03-2)
    [2013-03-26 22:43] upgraded flashplugin (11.2.202.273-1 -> 11.2.202.275-1)
    [2013-03-26 22:43] upgraded gconf-sharp (2.24.2-2 -> 2.24.2-3)
    [2013-03-26 22:43] upgraded gnome-vfs-sharp (2.24.2-2 -> 2.24.2-3)
    [2013-03-26 22:43] upgraded libgnome-sharp (2.24.2-2 -> 2.24.2-3)
    [2013-03-26 22:43] upgraded gconf-sharp-peditors (2.24.2-2 -> 2.24.2-3)
    [2013-03-26 22:43] upgraded gegl (0.2.0-5 -> 0.2.0-6)
    [2013-03-26 22:43] upgraded geoclue (0.12.0-5 -> 0.12.99-1)
    [2013-03-26 22:43] upgraded gettext (0.18.2-1 -> 0.18.2.1-1)
    [2013-03-26 22:43] upgraded git (1.8.1.5-1 -> 1.8.2-1)
    [2013-03-26 22:43] upgraded gnome-common (3.6.0-1 -> 3.7.4-1)
    [2013-03-26 22:43] upgraded gnome-nettool (3.2.0-1 -> 3.2.0-2)
    [2013-03-26 22:43] upgraded gnome-sharp (2.24.2-2 -> 2.24.2-3)
    [2013-03-26 22:43]
    [2013-03-26 22:43] (gconftool-2:18619): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
    [2013-03-26 22:43] Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
    [2013-03-26 22:43]
    [2013-03-26 22:43] (gconftool-2:18626): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
    [2013-03-26 22:43] Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
    [2013-03-26 22:43] upgraded gnome-terminal (3.6.0-1 -> 3.6.1-1)
    [2013-03-26 22:43] upgraded gparted (0.14.1-5 -> 0.15.0-1)
    [2013-03-26 22:43] upgraded gpgme (1.3.1-5 -> 1.3.2-1)
    [2013-03-26 22:43] Warning: Could not load "/usr/lib/graphviz/libgvplugin_gd.so.6" - file not found
    [2013-03-26 22:43] /tmp/alpm_9sCOCH/.INSTALL: line 1: 18644 Segmentation fault (core dumped) usr/bin/dot -c
    [2013-03-26 22:43] upgraded graphviz (2.30.1-1 -> 2.30.1-2)
    [2013-03-26 22:43] upgraded gst-plugins-bad (1.0.5-1 -> 1.0.6-1)
    [2013-03-26 22:43] upgraded gst-plugins-base (1.0.5-1 -> 1.0.6-1)
    [2013-03-26 22:43] upgraded harfbuzz (0.9.9-3 -> 0.9.14-1)
    [2013-03-26 22:43] warning: directory permissions differ on var/log/hp/
    filesystem: 777 package: 775
    [2013-03-26 22:43] upgraded hplip (3.13.3-1 -> 3.13.3-2)
    [2013-03-26 22:43] upgraded hwloc (1.6.1-1 -> 1.6.2-1)
    [2013-03-26 22:43] upgraded i3-wm (4.4-2 -> 4.5.1-1)
    [2013-03-26 22:43] upgraded intel-dri (9.1-2 -> 9.1.1-1)
    [2013-03-26 22:43] upgraded iso-codes (3.38-1 -> 3.41-1)
    [2013-03-26 22:43] warning: /etc/laptop-mode/laptop-mode.conf installed as /etc/laptop-mode/laptop-mode.conf.pacnew
    [2013-03-26 22:43] upgraded laptop-mode-tools (1.62-2 -> 1.63-1)
    [2013-03-26 22:43] upgraded lib32-gettext (0.18.2-1 -> 0.18.2.1-1)
    [2013-03-26 22:43] upgraded lib32-gnutls (3.1.9-1 -> 3.1.10-1)
    [2013-03-26 22:43] upgraded lib32-libcups (1.6.1-1 -> 1.6.2-1)
    [2013-03-26 22:43] upgraded lib32-libxi (1.6.2-1 -> 1.7-1)
    [2013-03-26 22:43] usr/bin/gtk-query-immodules-2.0-32: error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory
    [2013-03-26 22:43] upgraded lib32-gtk2 (2.24.16-1 -> 2.24.17-1)
    [2013-03-26 22:43] upgraded lib32-libffi (3.0.11-1 -> 3.0.12-1)
    [2013-03-26 22:43] upgraded lib32-systemd (197-1 -> 198-1)
    [2013-03-26 22:43] upgraded lib32-mesa (9.1-2 -> 9.1.1-1)
    [2013-03-26 22:43] upgraded ncurses (5.9-4 -> 5.9-5)
    [2013-03-26 22:43] upgraded lib32-ncurses (5.9-1 -> 5.9-2)
    [2013-03-26 22:43] upgraded lib32-soundtouch (1.7.1-1 -> 1.7.1-2)
    [2013-03-26 22:43] upgraded lib32-sqlite (3.7.15.2-1 -> 3.7.16-1)
    [2013-03-26 22:43] installed lib32-gstreamer0.10 (0.10.36-2)
    [2013-03-26 22:43] installed lib32-orc (0.4.17-1)
    [2013-03-26 22:43] installed lib32-gstreamer0.10-base (0.10.36-4)
    [2013-03-26 22:43] upgraded lib32-wxgtk (2.8.12-1 -> 2.8.12.1-4)
    [2013-03-26 22:43] upgraded libassuan (2.0.3-1 -> 2.1.0-1)
    [2013-03-26 22:43] upgraded libraw1394 (2.0.7-2 -> 2.1.0-1)
    [2013-03-26 22:43] upgraded libdc1394 (2.1.3-2 -> 2.2.1-1)
    [2013-03-26 22:43] upgraded libdvdcss (1.2.12-1 -> 1.2.13-1)
    [2013-03-26 22:43] upgraded libebml (1.2.2-2 -> 1.3.0-1)
    [2013-03-26 22:43] upgraded libgnome-keyring (3.6.0-1 -> 3.6.0-2)
    [2013-03-26 22:43] Users no longer need to be in the 'camera' group to use camera devices
    [2013-03-26 22:43] upgraded libgphoto2 (2.5.0-1 -> 2.5.1-1)
    [2013-03-26 22:43] upgraded libmatroska (1.3.0-2 -> 1.4.0-1)
    [2013-03-26 22:43] upgraded libproxy (0.4.7-2 -> 0.4.11-1)
    [2013-03-26 22:43] upgraded raptor (2.0.9-1 -> 2.0.9-2)
    [2013-03-26 22:43] upgraded redland (1:1.0.16-1 -> 1:1.0.16-2)
    [2013-03-26 22:43] upgraded libreoffice-common (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-base (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-calc (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-draw (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-gnome (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-impress (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-kde4 (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-math (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-postgresql-connector (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-sdk (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-sdk-doc (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libreoffice-writer (4.0.1-2 -> 4.0.1-5)
    [2013-03-26 22:43] upgraded libsasl (2.1.23-9 -> 2.1.23-10)
    [2013-03-26 22:43] upgraded libssh (0.5.3-1 -> 0.5.4-1)
    [2013-03-26 22:43] upgraded libwbclient (3.6.12-2 -> 3.6.13-1)
    [2013-03-26 22:43] upgraded lv2 (1.2.0-1 -> 1.4.0-1)
    [2013-03-26 22:43] upgraded sord (0.10.4-1 -> 0.12.0-1)
    [2013-03-26 22:43] upgraded sratom (0.4.0-1 -> 0.4.2-1)
    [2013-03-26 22:43] upgraded lilv (0.14.4-1 -> 0.16.0-1)
    [2013-03-26 22:43] >>> Updating module dependencies. Please wait ...
    [2013-03-26 22:43] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-03-26 22:43] ==> Building image from preset: 'default'
    [2013-03-26 22:43] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2013-03-26 22:43] ==> Starting build: 3.8.4-1-ARCH
    [2013-03-26 22:43] -> Running build hook: [base]
    [2013-03-26 22:43] -> Running build hook: [udev]
    [2013-03-26 22:43] -> Running build hook: [autodetect]
    [2013-03-26 22:43] findmnt: /etc/fstab: parse error at line 1
    [2013-03-26 22:43] -> Running build hook: [modconf]
    [2013-03-26 22:43] -> Running build hook: [block]
    [2013-03-26 22:43] -> Running build hook: [filesystems]
    [2013-03-26 22:43] -> Running build hook: [keyboard]
    [2013-03-26 22:43] -> Running build hook: [fsck]
    [2013-03-26 22:43] ==> Generating module dependencies
    [2013-03-26 22:43] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2013-03-26 22:43] ==> Image generation successful
    [2013-03-26 22:43] ==> Building image from preset: 'fallback'
    [2013-03-26 22:43] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2013-03-26 22:43] ==> Starting build: 3.8.4-1-ARCH
    [2013-03-26 22:43] -> Running build hook: [base]
    [2013-03-26 22:43] -> Running build hook: [udev]
    [2013-03-26 22:43] -> Running build hook: [modconf]
    [2013-03-26 22:43] -> Running build hook: [block]
    [2013-03-26 22:43] -> Running build hook: [filesystems]
    [2013-03-26 22:43] -> Running build hook: [keyboard]
    [2013-03-26 22:43] -> Running build hook: [fsck]
    [2013-03-26 22:43] ==> Generating module dependencies
    [2013-03-26 22:43] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2013-03-26 22:43] ==> Image generation successful
    [2013-03-26 22:43] upgraded linux (3.7.10-1 -> 3.8.4-1)
    [2013-03-26 22:44] upgraded linux-headers (3.7.10-1 -> 3.8.4-1)
    [2013-03-26 22:44] upgraded man-pages (3.48-1 -> 3.50-1)
    [2013-03-26 22:44] upgraded morituri (0.2.0-2 -> 0.2.0-4)
    [2013-03-26 22:44] upgraded mpfr (3.1.1.p2-2 -> 3.1.2-1)
    [2013-03-26 22:44] upgraded nemo (1.7.1-2 -> 1.7.2-1)
    [2013-03-26 22:44] upgraded obex-data-server (0.4.6-4 -> 0.4.6-5)
    [2013-03-26 22:44] upgraded openssh (6.1p1-6 -> 6.2p1-1)
    [2013-03-26 22:44] installed python2-speechd (0.7.1-1)
    [2013-03-26 22:44] upgraded orca (3.6.3-2 -> 3.6.3-3)
    [2013-03-26 22:44] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    [2013-03-26 22:44] upgraded pacman-mirrorlist (20130203-1 -> 20130323-1)
    [2013-03-26 22:44] upgraded perl-http-message (6.03-1 -> 6.06-1)
    [2013-03-26 22:44] upgraded perl-net-http (6.03-1 -> 6.06-1)
    [2013-03-26 22:44] upgraded poppler-glib (0.22.1-3 -> 0.22.2-1)
    [2013-03-26 22:44] upgraded poppler-qt (0.22.1-3 -> 0.22.2-1)
    [2013-03-26 22:44] upgraded python2-pycdio (0.19-1 -> 0.19-2)
    [2013-03-26 22:44] upgraded qt5-base (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qt5-jsbackend (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qt5-xmlpatterns (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qt5-declarative (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qt5-webkit (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qt5-script (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qt5-quick1 (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qt5-translations (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qt5-tools (5.0.1-6 -> 5.0.1-10)
    [2013-03-26 22:44] upgraded qtcreator (2.7.0rc-1 -> 2.7.0-1)
    [2013-03-26 22:44] upgraded qtwebkit (2.3.beta2-2 -> 2.3.0-1)
    [2013-03-26 22:44] upgraded redland-storage-virtuoso (1:1.0.16-1 -> 1:1.0.16-2)
    [2013-03-26 22:44] upgraded ruby (1.9.3_p392-1 -> 2.0.0_p0-1)
    [2013-03-26 22:44] upgraded smbclient (3.6.12-2 -> 3.6.13-1)
    [2013-03-26 22:44] upgraded samba (3.6.12-2 -> 3.6.13-1)
    [2013-03-26 22:44] upgraded sg3_utils (1.33-1 -> 1.35-1)
    [2013-03-26 22:44] upgraded skype (4.1.0.20-5 -> 4.1.0.20-6)
    [2013-03-26 22:44] upgraded slim (1.3.5-1 -> 1.3.5-2)
    [2013-03-26 22:44] installed lib32-mesa-libgl (9.1.1-1)
    [2013-03-26 22:44] if you are running x86_64, you need the lib32 opt depends for your driver
    [2013-03-26 22:44]
    [2013-03-26 22:44] if you are having problems with the steam license, remove .steam and .local/share/Steam
    [2013-03-26 22:44] upgraded steam (1.0.0.35-1 -> 1.0.0.36-1)
    [2013-03-26 22:44] upgraded sudo (1.8.6.p7-1 -> 1.8.6.p7-2)
    [2013-03-26 22:44] upgraded suil (0.6.10-2 -> 0.6.12-1)
    [2013-03-26 22:44] upgraded systemd-sysvcompat (197-4 -> 198-2)
    [2013-03-26 22:44] upgraded texinfo (5.0-1 -> 5.1-1)
    [2013-03-26 22:44] >>> texlive: updating the filename database...
    [2013-03-26 22:44] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-03-26 22:44] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-03-26 22:44] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-03-26 22:44] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-03-26 22:44] mktexlsr: Done.
    [2013-03-26 22:44] recreating all formats... done.
    [2013-03-26 22:44] (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)
    [2013-03-26 22:44] upgraded texlive-bin (2012.0-7 -> 2012.0-8)
    [2013-03-26 22:44] upgraded tigervnc (1.2.0-11 -> 1.2.0-12)
    [2013-03-26 22:44] upgraded tp_smapi (0.41-14 -> 0.41-15)
    [2013-03-26 22:44] upgraded upower (0.9.19-1 -> 0.9.20-1)
    [2013-03-26 22:44] upgraded tracker (0.14.4-3 -> 0.14.5-1)
    [2013-03-26 22:44] upgraded tzdata (2013a-1 -> 2013b-1)
    [2013-03-26 22:44] installed guisu (0.5-1)
    [2013-03-26 22:44] upgraded unetbootin (583-4 -> 583-5)
    [2013-03-26 22:44] upgraded vim-runtime (7.3.798-1 -> 7.3.834-1)
    [2013-03-26 22:44] upgraded vim (7.3.798-1 -> 7.3.834-1)
    [2013-03-26 22:44] In order to use the new version, reload all virtualbox modules manually.
    [2013-03-26 22:44] upgraded virtualbox-host-modules (4.2.8-1 -> 4.2.10-2)
    [2013-03-26 22:44] upgraded virtualbox (4.2.8-1 -> 4.2.10-2)
    [2013-03-26 22:44] upgraded virtualbox-guest-iso (4.2.8-1 -> 4.2.10-1)
    [2013-03-26 22:44] upgraded virtualbox-guest-modules (4.2.8-1 -> 4.2.10-2)
    [2013-03-26 22:44] upgraded webkitgtk2 (1.10.2-2 -> 1.10.2-3)
    [2013-03-26 22:44] upgraded webkitgtk3 (1.10.2-2 -> 1.10.2-3)
    [2013-03-26 22:44] upgraded wine (1.5.25-2 -> 1.5.26-1)
    [2013-03-26 22:44] upgraded xdg-user-dirs-gtk (0.9-1 -> 0.10-1)
    [2013-03-26 22:44] upgraded xf86-input-evdev (2.7.3-2 -> 2.8.0-1)
    [2013-03-26 22:44] upgraded xf86-video-intel (2.21.3-1 -> 2.21.5-1)
    [2013-03-26 22:44] upgraded xmms2 (0.8DrO_o-9 -> 0.8DrO_o-10)
    [2013-03-26 22:44] upgraded xorg-server-common (1.13.3-1 -> 1.14.0-2)
    [2013-03-26 22:44] upgraded xorg-server (1.13.3-1 -> 1.14.0-2)
    [2013-03-26 22:45] Running 'pacman -S nvidia nvidia-utils lib32-nvidia-utils'
    [2013-03-26 22:45] Running 'pacman -Rdd mesa-libgl lib32-mesa-libgl'
    [2013-03-26 22:45] removed lib32-mesa-libgl (9.1.1-1)
    [2013-03-26 22:45] removed mesa-libgl (9.1.1-1)
    [2013-03-26 22:45] Running 'pacman -S nvidia nvidia-utils lib32-nvidia-utils'
    [2013-03-26 22:45] installed nvidia-utils (313.26-1)
    [2013-03-26 22:45] In order to use nvidia module, reboot the system.
    [2013-03-26 22:45] installed nvidia (313.26-2)
    [2013-03-26 22:45] installed lib32-nvidia-utils (313.26-1)
    Any ideas on what might have caused this?
    Last edited by themusicalduck (2013-03-27 16:12:28)

    hadrons123 wrote:
    Sorry my bad
    its
    pacman -S librsvg
    themusicalduck wrote:That did it. Thanks!
    I had the same problem and nemo/nautilus was crashing in a segfault few seconds after starting, now all works fine, thanks! :-)

  • Install Gnome 3 extensions via firefox

    I'm using Arch x64 with Gnome 3.2.1 and Firefox 8.0.1 on my laptop, the Firefox Gnome Shell Plugin is installed and activated.
    I can browse through the extensions on https://extensions.gnome.org/ and I can see the activate/deactivate switches and trigger them. After that I'm beeing asked if I really want to install this extension but after I click on the install button nothing happens. The "installed extensions" tab on the site is empty. No error message at all. Is there a log file for firefox extensions or gnome itself?
    I looked through the log files in /var/log/* but didn't found anything.
    On my desktop with the same setup of software the install process works like a charm.

    I got the package list from kahelos, and installed the following (missing ones got installed), now extensions can be installed from extensions.gnome.org.
    application's optional dependencies are not installed which package groups like gnome.
    I still don't know which package fixed/enabled the extensions feature for gnome 3.2 and firefox. I installed archlinux64 with xorg, gnome, gnome-extra, gstreamer groups. There are still too many manual minor dependency management in a fresh install.
    sudo pacman -S --needed a52dec aalib accountsservice acl aisleriot alsa-lib alsa-plugins apr apr-util aqbanking art-sharp aspell at-spi at-spi2-atk at-spi2-core atk atkmm attica attr autoconf automake avahi avogadro babl bash blas bluefish bluez boost-libs brasero brltty bzip2 ca-certificates ca-certificates-java cairo cairo-perl cairomm cantarell-fonts caribou cdparanoia cdrdao cdrkit cloog clutter clutter-gst clutter-gtk cogl colord compositeproto consolekit coreutils cpufrequtils cracklib cronie cryptsetup cups cups-pk-helper curl damageproto dasher db dbus dbus-core dbus-glib dbus-python dbus-sharp dbus-sharp-glib dconf desktop-file-utils device-mapper dhcpcd dia diffutils dirmngr djvulibre dnsutils docbook-xml docbook-xsl dotconf dri2proto dvd+rw-tools e2fsprogs eigen2 eject ekiga empathy enca enchant eog eog-plugins epiphany eventlog evince exempi exiv2 expat f-spot faad2 fakeroot farsight2 ffmpeg fftw file file-roller filesystem filezilla findutils firefox fixesproto flac flashplugin flickrnet fluidsynth folks fontconfig fontsproto foomatic-db foomatic-db-engine foomatic-filters freeglut freemind fribidi fuse gamin gawk gcalctool gconf gconf-editor gconf-sharp gconf-sharp-peditors gd gdbm gdk-pixbuf2 gdm gedit gegl gettext ghostscript giflib gjs glew glib glib-networking glib-perl glib2 glibc glibmm glproto gmime gmp gnome-applets gnome-backgrounds gnome-blog gnome-bluetooth gnome-color-manager gnome-contacts gnome-control-center gnome-desktop gnome-disk-utility gnome-documents gnome-icon-theme gnome-icon-theme-extras gnome-icon-theme-symbolic gnome-js-common gnome-keyring gnome-keyring-sharp gnome-media gnome-menus gnome-mime-data gnome-nettool gnome-online-accounts gnome-packagekit gnome-panel gnome-power-manager gnome-screensaver gnome-session gnome-settings-daemon gnome-sharp gnome-shell gnome-shell-extension-alternate-tab gnome-shell-extension-alternative-status-menu gnome-shell-extension-apps-menu gnome-shell-extension-auto-move-windows gnome-shell-extension-dock gnome-shell-extension-drive-menu gnome-shell-extension-gajim gnome-shell-extension-native-window-placement gnome-shell-extension-places-menu gnome-shell-extension-system-monitor gnome-shell-extension-user-theme gnome-shell-extension-windows-navigator gnome-shell-extension-workspace-indicator gnome-shell-extension-xrandr-indicator gnome-shell-extensions-common gnome-speech gnome-system-monitor gnome-terminal gnome-themes-standard gnome-tweak-tool gnome-user-docs gnome-utils gnome-vfs gnome-vfs-sharp gnome-video-effects gnucash gnupg gnupg2 gnutls gobject-introspection gpgme gpm grantlee graphite grep groff grub gsettings-desktop-schemas gsfonts gsm gstreamer0.10 gstreamer0.10-bad gstreamer0.10-base gstreamer0.10-base-plugins gstreamer0.10-ffmpeg gstreamer0.10-good gstreamer0.10-good-plugins gstreamer0.10-python gtk-engines gtk-sharp-2 gtk-update-icon-cache gtk-vnc gtk2 gtk2-perl gtk3 gtkhtml gtkhtml4 gtkmm3 gtksourceview3 gtkspell gucharmap guile gvfs gvfs-obexftp gvfs-smb gwenhywfar gzip heirloom-mailx hicolor-icon-theme hplip hspell hunspell hyphen iana-etc icon-naming-utils icu idnkit ilmbase imagemagick imlib2 inetutils initscripts inputproto iproute2 iputils isl iso-codes jack jasper jfsutils js json-c json-glib kbd kbproto kdeedu-kalzium kdelibs keyutils krb5 ktoblzcheck lame lapack lcms lcms2 less libao libarchive libart-lgpl libass libassuan libasyncns libatasmart libavc1394 libbonobo libbonoboui libcaca libcanberra libcanberra-pulse libcap libcap-ng libcddb libcdio libchamplain libcroco libcups libdaemon libdatrie libdbi libdbi-drivers libdbusmenu-qt libdca libdiscid libdrm libdv libdvbpsi libdvdnav libdvdread libebml libedit libevent libexif libfetch libffi libfontenc libgcrypt libgdata libgdiplus libgdu libgee libglade libglapi libgnome libgnome-data libgnome-keyring libgnome-media-profiles libgnome-sharp libgnomecanvas libgnomekbd libgnomeui libgpg-error libgphoto2 libgsf libgssglue libgtop libgweather libical libice libid3tag libidl2 libidn libiec61883 libieee1284 libimobiledevice libiodbc libjpeg-turbo libksba libldap liblouis libltdl libmad libmatroska libmng libmodplug libmpc libmpcdec libmpeg2 libmtp libmusicbrainz3 libnice libnl libnotify liboauth libofx libogg libpcap libpciaccess libpeas libpipeline libplist libpng libproxy libpst libpulse libpurple libqzeitgeist libraw1394 libreoffice-base libreoffice-calc libreoffice-common libreoffice-draw libreoffice-en-US libreoffice-gnome libreoffice-impress libreoffice-writer librsvg libsamplerate libsasl libshout libsigc++ libsm libsndfile libsocialweb libsoup libsoup-gnome libspectre libssh2 libtasn1 libtextcat libthai libtheora libtiff libtirpc libtool libtorrent-rasterbar libtracker-sparql libunique libunique3 libupnp libusb libusb-compat libva libvdpau libvisual libvorbis libvpx libwebkit libwebkit3 libwmf libwnck libwnck3 libwpd libwps libx11 libxau libxaw libxcb libxcomposite libxcursor libxdamage libxdmcp libxext libxfixes libxfont libxft libxi libxinerama libxkbfile libxklavier libxml++ libxml2 libxmu libxpm libxrandr libxrender libxres libxslt libxss libxt libxtst libxv libxvmc libxxf86vm libytnef licenses linux-api-headers linux-firmware logrotate lpsolve lsof lua lvm2 lzo2 m4 make man-db man-pages mash mcpp mdadm mesa metacity mime-types mkinitcpio mkinitcpio-busybox mlocate mobile-broadband-provider-info module-init-tools mousetweaks mozilla-common mpfr mutagen mutter mx nano nautilus nautilus-open-terminal nautilus-sendto ncurses ndesk-dbus ndesk-dbus-glib neon net-snmp net-tools netkit-bsd-finger nettle network-manager-applet networkmanager notification-daemon nspr nss ntfs-3g obex-data-server obexd-client ocaml opal openbabel opencore-amr openexr openjdk6 openjpeg openobex openslp opensp openssh openssl orbit2 orc orca p11-kit packagekit pacman pacman-mirrorlist pam pango pango-perl pangomm parted patch pciutils pcmciautils pcre pdfedit perl perl-bit-vector perl-carp-clan perl-date-calc perl-digest-hmac perl-digest-sha1 perl-encode-locale perl-file-listing perl-html-parser perl-html-tagset perl-http-cookies perl-http-daemon perl-http-date perl-http-message perl-http-negotiate perl-libwww perl-locale-gettext perl-lwp-mediatypes perl-net-dns perl-net-http perl-uri perl-www-robotrules perl-xml-parser perl-xml-simple phonon phonon-gstreamer pidgin pinentry pixman pm-quirks pm-utils polkit polkit-gnome polkit-qt poppler poppler-data poppler-glib popt ppl ppp procps psmisc pth ptlib pulseaudio pulseaudio-alsa pyatspi pycups pygobject-devel pygobject2-devel pygtk pyorbit pyqt pyrex pysmbc python python-gdata python-notify python-pycurl python-pysqlite python2 python2-bonobo python2-cairo python2-gconf python2-gnomecanvas python2-gnomevfs python2-gobject python2-gobject2 python2-gtkspell python2-libgnome python2-numpy python2-pyqt python2-sip pywebkitgtk pyxdg randrproto raptor rasqal readline recode recordproto redland redland-storage-virtuoso reiserfsprogs renderproto rest rtkit rtmpdump run-parts samba sane schroedinger scrnsaverproto sdl sdl_image seahorse sed seed sg3_utils shadow shared-desktop-ontologies shared-mime-info sip slib smbclient soprano sound-juicer sound-theme-freedesktop speech-dispatcher speex sqlite3 squashfs-tools startup-notification strigi sudo sushi sysfsutils syslinux syslog-ng system-config-printer-common system-config-printer-gnome sysvinit t1lib taglib talloc tar tcl tdb telepathy-farsight telepathy-farstream telepathy-glib telepathy-logger telepathy-mission-control texinfo thunderbird totem totem-plparser tracker tzdata udev udisks unixodbc upower usbmuxd usbutils util-linux v4l-utils vi videoproto vinagre vino virtuoso vte-common vte3 wavpack wget which whois wireless_tools wpa_supplicant wxgtk x264 xcb-proto xcb-util xdg-utils xextproto xf86-input-acecad xf86-input-aiptek xf86-input-evdev xf86-input-joystick xf86-input-keyboard xf86-input-mouse xf86-input-synaptics xf86-input-vmmouse xf86-input-void xf86vidmodeproto xfsprogs xineramaproto xinetd xkeyboard-config xorg-bdftopcf xorg-font-util xorg-font-utils xorg-fonts-alias xorg-fonts-encodings xorg-fonts-misc xorg-mkfontdir xorg-mkfontscale xorg-server xorg-server-common xorg-setxkbmap xorg-xhost xorg-xkbcomp xorg-xmodmap xorg-xrdb xorg-xset xproto xsane xsane-gimp xvidcore xz yelp yelp-xsl zenity zim zip zlib zvbi

  • [SOLVED] - [Gnome 3] GDM error dialog "failed to start session GNOME"

    Hi,
    Just installed Gnome 3 from testing.
    First boot crashed, but that was a missing library for splashy, so removed splash from my grub boot line.
    Now the system boots to GDM. I can start my Xfce session without any issues, but if I select Gnome, I get a dialog "Failed to start session GNOME".
    Following is my GDM greeter log:
    gnome-session[2208]: WARNING: Failed to start app: Unable to start application: Failed to execute child process "/usr/lib/at-spi/at-spi-registryd" (No such file or directory)
    (gnome-settings-daemon:2215): Gtk-WARNING **: gtk_window_set_wmclass: shouldn't set wmclass after window is realized!
    ** (process:2228): DEBUG: Greeter session pid=2228 display=:0 xauthority=/var/run/gdm/auth-for-gdm-RuDxNi/database
    gnome-settings-daemon: xcb_io.c:140: dequeue_pending_request: Assertion `req == dpy->xcb->pending_requests' failed.
    Failed to play sound: File or data not found
    gnome-session[2208]: WARNING: Application 'gnome-settings-daemon.desktop' killed by signal
    (polkit-gnome-authentication-agent-1:2229): Gdk-WARNING **: gdk_xsettings_watch_cb(): Couldn't find window to unwatch
    (gnome-power-manager:2226): Gdk-WARNING **: gdk_xsettings_watch_cb(): Couldn't find window to unwatch
    (gnome-settings-daemon:2234): Gtk-WARNING **: gtk_window_set_wmclass: shouldn't set wmclass after window is realized!
    gdm-simple-greeter[2228]: Gtk-WARNING: gtkwidget.c:6778: widget not within a GtkWindow
    gdm-simple-greeter[2228]: WARNING: Unable to read from file /etc/arch-release
    Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x1000007 (Login Wind)
    Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    gdm-simple-greeter[2228]: Gdk-WARNING: gdk_xsettings_watch_cb(): Couldn't find window to unwatch
    Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x1000007 (Login Wind)
    Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    (gnome-settings-daemon:2234): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    All help greatly appreciated.
    Cheers.
    Last edited by Padfoot (2011-04-08 23:38:59)

    I just remembered to do that.....
    Think I have found my problem.
    The Arch Wiki for Gnome 3 has the line for installing to a new system
    # pacman -Syu testing/gnome
    This installs gnome 3, but does not include gnome-shell or gnome-panel
    Just installing them now. Will report back shortly.
    Maybe the Wiki should be updated to reflect this, or the package testing/gnome updated to depend on gnome-shell and gnome-panel.
    Cheers.

  • (solved) removing gnome-mime-data and chemical-mime-data

    Hi. I  would like to remove gnome-mime-data. I executed the command #pacman -Rs gnome-mime-data. The result warned that chemical-mime-data depends on gnome-mime-data. So I have to execute the command #pacman -Rsc gnome-mime-data to get rid of gnome-mime-data but also of chemical-mime-data. If I remove both do I run the risk of making the entire system crash?
    I have kde installed. I forget to edit /etc/pacman.conf to IgnoreGroup = gnome before running #pacman -Syu. so now I would like to get rid some gnome stuff I found on the system. I have absolutely nothing against gnome. I just want to run only kde.
    Thanks for your attention.
    Last edited by cezarrangel (2014-06-21 13:18:32)

    You don't have to have chemical-mime-data.  You must've install some chemistry related software. 
    Read up mime types so that you're more familiar with them.  Basically, chemistry-mime-data would allow you to double-click a protein databank (pdb) file in a file manager and launch pymol automatically, for example.
    https://wiki.archlinux.org/index.php/De … op_entries

  • (SOLVED) Double-click in k3b using gnome as DE

    Hello!
    Ive been running Gnome as DE for a few months after years using KDE. All fine. As usual, i've tried not mixing qt-gtk apps. As now i'm with gnome, no kdelibs :-) but, with brasero i can't. I like it, but i can't burn at 2x, only at 1x. I've tried with the 2 differents backends, but nothing. So, i tried k3b. Perfect, it burns at 2x. So, i'll keept it. The "problem" is that k3b works with a single click (KDE default), instead the double-click i like.
    And i don't know how to change that behaviour.
    I've tried executing some /opt/kde/bin apps, but they don't start.
    So, how can i change it without instaling kdebase or similar? anything in .kderc?
    Thanks!!
    Last edited by dienadel (2009-03-06 16:02:39)

    The problem is that as k3b is still kde3 dependant, it only installs kdelibs v3, and there is no systemsetting executable in /opt/kde/bin. kdebase3 doesn't exists anymore, so, how can be this changed?
    Here is the content of /opt/kde/bin:
    total 3968
    -rwxr-xr-x 1 root root 118 dic 10 22:15 checkXML
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 cupsdconf
    -rwxr-xr-x 1 root root 9760 dic 10 22:35 cupsdoprint
    -rwxr-xr-x 1 root root 135760 dic 10 22:35 dcop
    -rwxr-xr-x 1 root root 4984 dic 10 22:35 dcopclient
    -rwxr-xr-x 1 root root 110792 dic 10 22:35 dcopfind
    -rwxr-xr-x 1 root root 50384 dic 10 22:35 dcopidl
    -rwxr-xr-x 1 root root 60640 dic 10 22:35 dcopidl2cpp
    -rwxr-xr-x 1 root root 344 sep 10 2005 dcopidlng
    -rwxr-xr-x 1 root root 5000 dic 10 22:35 dcopobject
    -rwxr-xr-x 1 root root 135776 dic 10 22:35 dcopquit
    -rwxr-xr-x 1 root root 4648 dic 10 22:35 dcopref
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 dcopserver
    -rwxr-xr-x 1 root root 7408 dic 10 22:35 dcopserver_shutdown
    -rwxr-xr-x 1 root root 13168 dic 10 22:35 dcopstart
    lrwxrwxrwx 1 root root 12 dic 10 22:34 filesharelist -> fileshareset
    -rwsr-xr-x 1 root root 11003 oct 1 2006 fileshareset
    -rwxr-xr-x 1 root root 1219 sep 10 2005 imagetops
    -rwxr-xr-x 1 root root 2422448 oct 22 09:19 k3b
    -rwxr-xr-x 1 root root 173752 dic 10 22:35 kab2kabc
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 kaddprinterwizard
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 kbuildsycoca
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 kcmshell
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 kconf_update
    -rwxr-xr-x 1 root root 91216 dic 10 22:35 kconfig_compiler
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 kcookiejar
    -rwxr-xr-x 1 root root 20776 dic 10 22:35 kde-config
    -rwxr-xr-x 1 root root 20328 dic 10 22:35 kde-menu
    -rwxr-xr-x 1 root root 4680 dic 10 22:35 kded
    -rwxr-xr-x 1 root root 49432 dic 10 22:35 kdeinit
    -rwxr-xr-x 1 root root 12760 dic 10 22:35 kdeinit_shutdown
    -rwxr-xr-x 1 root root 12760 dic 10 22:35 kdeinit_wrapper
    -rwxr-xr-x 1 root root 11600 dic 10 22:35 kdesu_stub
    -rwxr-xr-x 1 root root 30280 dic 10 22:35 kdontchangethehostname
    -rwxr-xr-x 1 root root 18296 dic 10 22:35 kdostartupconfig
    -rwxr-xr-x 1 root root 38064 dic 10 22:35 kfile
    lrwxrwxrwx 1 root root 7 dic 10 22:34 kfmexec -> kioexec
    -rwsr-xr-x 1 root root 10617 dic 10 22:35 kgrantpty
    -rwxr-xr-x 1 root root 9528 dic 10 22:35 khotnewstuff
    -rwxr-xr-x 1 root root 16688 dic 10 22:35 kinstalltheme
    -rwxr-xr-x 1 root root 4712 dic 10 22:35 kio_http_cache_cleaner
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 kio_uiserver
    -rwxr-xr-x 1 root root 34360 dic 10 22:35 kioexec
    -rwxr-xr-x 1 root root 7264 dic 10 22:35 kioslave
    -rwxr-xr-x 1 root root 4696 dic 10 22:35 klauncher
    -rwxr-xr-x 1 root root 8072 dic 10 22:35 kmailservice
    -rwsr-xr-x 1 root root 11789 dic 10 22:35 kpac_dhcp_helper
    -rwxr-xr-x 1 root root 32840 dic 10 22:35 ksendbugmail
    -rwxr-xr-x 1 root root 12744 dic 10 22:35 kshell
    -rwxr-xr-x 1 root root 6888 dic 10 22:35 kstartupconfig
    -rwxr-xr-x 1 root root 8992 dic 10 22:35 ksvgtopng
    -rwxr-xr-x 1 root root 15368 dic 10 22:35 ktelnetservice
    -rwxr-xr-x 1 root root 12952 dic 10 22:35 ktradertest
    -rwxr-xr-x 1 root root 10144 dic 10 22:35 kunittestmodrunner
    -rwxr-xr-x 1 root root 12760 dic 10 22:35 kwrapper
    -rwxr-xr-x 1 root root 9856 dic 10 22:35 lnusertemp
    -rwxr-xr-x 1 root root 16400 dic 10 22:35 make_driver_db_cups
    -rwxr-xr-x 1 root root 15856 dic 10 22:35 make_driver_db_lpr
    -rwxr-xr-x 1 root root 32208 dic 10 22:35 makekdewidgets
    -rwxr-xr-x 1 root root 50328 dic 10 22:35 meinproc
    -rwxr-xr-x 1 root root 971 sep 10 2005 preparetips
    -rwsr-xr-x 1 root root 11254 dic 10 22:35 start_kdeinit
    -rwxr-xr-x 1 root root 5536 dic 10 22:35 start_kdeinit_wrapper

  • Monodevelop Stetic Designer Not Working

    Just installed monodevelop 5.0.1:
    Mono 3.10.0 (tarball Mon Oct  6 20:46:04 UTC 2014) (64-bit)
        GTK+ 2.24.25 (Raleigh theme)
    I have no DE and am using spectrwm WM.
    monodevelop works generally, except for the stetic designer.
    I'm trying to use gtk# and have the following packages installed:
    mono 3.10.0-1
    mono-addins 1.1-1
    monodevelop 5.0.1-1
    monodevelop-debugger-gdb 5.0.1-1
    art-sharp 2.24.2-4
    gconf-sharp 2.24.2-4
    gconf-sharp-peditors 2.24.2-4
    gnome-sharp 2.24.2-4
    gnome-vfs-sharp 2.24.2-4
    gtk-sharp-2 2.12.22-1
    libgnome-sharp 2.24.2-4
    I can't open it by clicking on the "designer" tab, only by opening the window in the "User Interface" branch of the solution tree. Once it's open, I can edit a window's properties, but I can't add any widgets to the window - drag and drop doesn't work.
    I've tried running from the cmd line and had no messages.
    A web search threw up a similar issue on a Linux Mint forum thread from four years ago, that had no response.
    Any suggestions as to how I should debug this?
    Edit: search result clarification.
    Last edited by skanky (2014-11-08 22:33:28)

    Your GTK2 theme may be something that you want to play with, but I've never experienced anything other that look & feel issues with mine (currently Clear Looks phenix).
    We need to loby the maintainer of The official package to update that package.
    The offical release is bound to have fewer (if any) issues. I'm running 5.7 from github without issue.
    I've posted my PKGBUILD here.
    pacman -Qi $(pacman -Qsq mono) | grep -Ei "(name|version)"
    Name           : art-sharp
    Version        : 2.24.2-4
    Name           : gconf-sharp
    Version        : 2.24.2-4
    Name           : gconf-sharp-peditors
    Version        : 2.24.2-4
    Name           : gnome-vfs-sharp
    Version        : 2.24.2-4
    Name           : libgnome-sharp
    Version        : 2.24.2-4
    Name           : mono
    Version        : 3.10.0-1
    Name           : mono-addins
    Version        : 1.1-1
    Name           : mono-tools
    Version        : 3.10-1
    Name           : monodevelop-git
    Version        : r32430.4504f30-1
    Name           : ttf-google-fonts
    Version        : 20131228-1
    Name           : webkit-sharp
    Version        : 0.3-5
    Name           : xsp
    Version        : 3.0.11-1
    Last edited by bartonc (2014-11-29 08:49:51)

  • [Solved] something wants to install most of Gnome....

    Just went to do an update, and got a bit of a shock. Something has suddenly added a whole slew of gnome dependencies. This is the list of stuff that I never had installed before (and really don't want installed now...):
    gnome-desktop-1:3.8.1-1 gnome-dictionary-3.6.0-2 gnome-font-viewer-3.8.0-1
    gnome-icon-theme-3.8.0-1 gnome-icon-theme-symbolic-3.8.0.1-1 gnome-keyring-3.8.1-1
    gnome-screenshot-3.8.1-1 gnome-search-tool-3.6.0-2 gnome-system-log-3.8.1-1
    gnome-system-monitor-3.8.0-1 gobject-introspection-1.36.0-1
    lib32-pango-1.34.0-1 libgee-0.10.1-1 libgee06-0.6.8-1 libgnome-keyring-3.8.0-1
    libsoup-gnome-2.40.3-1 [removal] libtracker-sparql-0.16.0-4 libusbx-1.0.15-1
    Going through my installed packages, these are the only bits of gnome that I currently have installed (I use Xfce):
    gnome-keyring
    gnome-system-monitor
    gnome-utils
    libreoffice-gnome
    Something has changed, and I really don't want to install most of gnome. So, how do I track down what has added all this bloat?
    Searched the wiki and the forum, but either the topic hasn't come up, or I'm using the wrong search terms....
    Paul.
    Last edited by toothandnail (2013-04-22 20:23:27)

    Trilby wrote:I'd suspect libreoffice-gnome.  Why use that at all if you don't use gnome?  Libreoffice-gnome depends on gconf, which depends on gtk3, which depends on much of gnome.
    I'm not sure - think it may have been my fault. I'll have to check and remove it if I can't find any reason for it being installed.
    EDIT: my suspicion is wrong, it's gnome-utils.  Much easier to check with `pacman -S <pkg>` then just say no to install after it lists dependencies.  Gnome-utils isn't even a package, it's a metapackage that includes all kinds of gnome stuff ... again why have this installed if you don't use gnome?
    I'd just come to the same conclusion. I have no memory of installing it, though I must have pulled it in at some stage. I'm going to remove it and see if that creates any problems....
    Paul.

  • Monodevelop Install error

    Hi all, while trying to install Monodevelop 0.15-1 i got this:
    root /home/spookykid # pacman -S monodevelop
    resolving dependencies... done.
    looking for inter-conflicts... done.
    Targets: libgdiplus-1.2.4-1 mono-1.2.4-1 xulrunner-1.8.1.6-1 gtk-sharp-2-2.10.0-1 gecko-sharp-2.0-0.12-1 gtksourceview-1.8.5-2 gtksourceview-sharp-2.0-0.10-5 xsp-1.2.4-1
    monodoc-1.2.4-1 boo-0.7.6.2237-1 gtkhtml-3.14.3-1 gnome-sharp-2.16.0-2 monodevelop-0.15-1
    Total Package Size: 48.90 MB
    Proceed with installation? [Y/n]
    :: Retrieving packages from extra...
    libgdiplus 306.3K 178.0K/s 00:00:02 [###################################################################################################################################] 100%
    mono 25.2M 232.2K/s 00:01:51 [###################################################################################################################################] 100%
    xulrunner 10.4M 230.1K/s 00:00:46 [###################################################################################################################################] 100%
    gtk-sharp-2 774.7K 203.0K/s 00:00:04 [###################################################################################################################################] 100%
    gecko-sharp-2.0 67.4K 92.5K/s 00:00:01 [###################################################################################################################################] 100%
    gtksourceview 516.3K 199.5K/s 00:00:03 [###################################################################################################################################] 100%
    gtksourceview-sharp-2.0 23.4K 50.1K/s 00:00:00 [###################################################################################################################################] 100%
    xsp 215.6K 158.9K/s 00:00:01 [###################################################################################################################################] 100%
    monodoc 6.2M 223.2K/s 00:00:28 [###################################################################################################################################] 100%
    gtkhtml 928.1K 206.3K/s 00:00:04 [###################################################################################################################################] 100%
    gnome-sharp 305.0K 125.8K/s 00:00:02 [###################################################################################################################################] 100%
    :: Retrieving packages from community...
    boo 834.9K 210.8K/s 00:00:04 [###################################################################################################################################] 100%
    monodevelop 3.2M 211.8K/s 00:00:15 [###################################################################################################################################] 100%
    checking package integrity... done.
    cleaning up... done.
    (13/13) checking for file conflicts [###################################################################################################################################] 100%
    error: could not prepare transaction
    error: failed to commit transaction (conflicting files)
    /usr/share/gtksourceview-1.0/language-specs/boo.lang exists in both 'gtksourceview' and 'boo'
    errors occurred, no packages were upgraded.
    on a fresh Arch install I appreciate any help possible. Thank you in advance.

    Thank you for the answer, I'll wait for the solution .

  • Change a package to become a dependency of another

    i was wondering if i could change a package to be a dependency, Well, i know i could use abs to change PKGBUILD.
    But yesterday gnome was upgraded on my machine, and i got an error with a package. I suspected it was because gnome was running, and was a little bit quick just to kill X and install the package explicit. Now i didn't get any error messages, but the package was no longer a dependency of gnome. Could i change that one package to become a dependency of gnome once again?

    bender02 wrote:As far as I understood the first three posts, that was exactly the point. That's why I posted the 'language remark', since I gathered that OP wanted to 'have the reason to be installed as a dependency' and not really change the dependency list of anything. But again, maybe I'm wrong.
    I interpreted the thread's title and the last line of his post to mean that he wanted it to be handled as if it were a true dependency of gnome (as he claims it used to be):
    jerryluc wrote:Could i change that one package to become a dependency of gnome once again?
    Only the OP really knows what he wanted though (and maybe not even him, depending on how philosophical you want to get ).

  • Networkmanager applet without KDE or Gnome

    I'm looking for a NetworkManager applet that will not depend on Gnome or KDE (GTK or Qt only is ok) to use for my awesome desktop.
    Supporting NM 0.7 if possible.

    Well, wicd might be an alternative... I wished it would support PPP, VPNs etc. like the NM 0.7 does now.
    I'm using Knetworkmanager now, the KDE3 version (it was removed from Arch but I had it installed before that), but I'd like to get rid of KDE3 apps.
    Gnome-network-manager OTOH has Gnome dependencies I'd like to get rid-of too (Gconf, Orbit2).

Maybe you are looking for

  • Not able to show data of prior three quarters,periods along with QTD , MTD

    My requirement is when user selects a date then we have to show data in the report for three ago quarters data and QTD, three ago periods data and MTD. eg: let the user selects a date in the 2010 Q 2(May-21-2010) then report should show 2010 Q 1, 200

  • Problem in using the itouch while it's charging.

    Hi, I've got a problem while using my Itouch4g, when it is charging. While charging and operating the Itouch, the screen wiggles like the icons do when you want to either shift or delete them! Can't chat or play games while the Itouch is charging. Is

  • Existing "Publisher" application

    Is there a simple "microsoft publisher" made in flash. I need to allow clients to produca a very simple graphic via a web interface: Upload some images: Add some borders: Add text boxes & change font etc. Save the finished image as a jpg. Any help ap

  • Getting a error when submitting Time card by Self Service Time responsibili

    *"Online retrieval of absences for Mr. Atul Agarwal has failed. Please Contact your System Administrator. "* When trying to submit a Time Card I am getting the above error. Can someone pls help???

  • VPN Prob..

    I have a Cisco PIX 515E firewall which I have config.. VPN on it, the VPN has been working with no prob.. for the past 3 years now, now I am getting a prob.. when I connect to the VPN it connect but I can't ping any server any more, when I look in th