2

When I run the command nautilus &, the file browser opens correctly, but prints the following errors and doesn't return control to the terminal (e.g. what the & should do):

(nautilus:6279): GLib-GIO-CRITICAL **: g_dbus_interface_skeleton_unexport: assertion 'interface_->priv->connections != NULL' failed

(nautilus:6279): GLib-GIO-CRITICAL **: g_dbus_interface_skeleton_unexport: assertion 'interface_->priv->connections != NULL' failed

(nautilus:6279): Gtk-CRITICAL **: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed

(nautilus:6279): GLib-GObject-WARNING **: invalid (NULL) pointer instance

(nautilus:6279): GLib-GObject-CRITICAL **: g_signal_connect_object: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed

What's going on?

EDIT: To clarify, the issue is that gedit doesn't get detatched when I use the &.

Edoardo
  • 155

2 Answers2

2

Nautilus is running fine , there are some warnings but they are not a problem.

If you want it to detatch when you run it stick an & on the end

nautilus &
Amias
  • 5,246
0

You can also add the following to your .bash_alias

alias nautilus='nautilus >/dev/null 2>&1'

so that all the output is no longer visible on the command line when you call nautilus.

FvD
  • 526