
piemont ha scritto:Ciao a tutti, come già segnalato in precedenza all'uscita delle versioni Beta2 ed RC (credevo fosse solo un problema dovuto al fatto che non erano versioni stabili) della nuova versione di Ubuntu Lucid Lynx, anche nella LTS purtroppo non appare l'icona della rete tra le icone di notifica, dopo quella degli aggiornamenti è stata nascosta anche questa? Come si fa a riattivarla? Anche perchè con la internet key l'icona era comodissima per una connessione veloce, qualcuno può aiutarmi? Grazie

piemont ha scritto:no, cosa devo mettere?


piemont ha scritto:negativo non compare
woodcutter ha scritto:piemont ha scritto:negativo non compare
tu quindi hai aggiunto la voce nm-applet nelle applicazioni all'avvio, ma nonostante questo non compare l'icona del network manager?
se da terminale digiti nm-applet, cosa restituisce?
È già in esecuzione una istanza di nm-applet.
** (nm-applet:2336): WARNING **: <WARN> constructor(): Couldn't initialize the D-Bus manager.
piemont ha scritto:
- Codice: Seleziona tutto
È già in esecuzione una istanza di nm-applet.
** (nm-applet:2336): WARNING **: <WARN> constructor(): Couldn't initialize the D-Bus manager.
: il network manager funziona ed è già avviato, ma tu non lo puoi usare perchè non è presente l'icona nella barra di sistema.
piemont ha scritto:già fatto ma l'icona non appare comunque


piemont ha scritto:no, cosa devo mettere?
)piemont ha scritto:no, cosa devo mettere?



piemont ha scritto:c'è ti allego anche lo screenshot così puoi controllare se c'è qualcos'altro che manca ::)
#!/usr/bin/python
import os.path
import sys
import time
import gconf
def msg(type, primary, secondary=""):
sys.stderr.write("[%s] %s: %s\n" % (os.path.basename(sys.argv[0]),
type, primary))
if secondary:
sys.stderr.write("%s\n\n" % secondary)
def error(primary, secondary=""):
msg("ERROR", primary, secondary)
def info(primary, secondary=""):
msg("INFO", primary, secondary)
def log_excepthook(exc_type, exc_obj, exc_tb):
import traceback
l = traceback.format_exception(exc_type, exc_obj, exc_tb)
error("exception","".join(l))
def associate_schemas_in_dir(client, engine, profile_dir, schema_dir):
"""
helper that takes a gconf schema dir and creates a new profile dir
based on the schema, useful for e.g. adding a applet to the panel
"""
for e in client.all_entries(schema_dir):
schema_key = os.path.basename(e.get_key())
key = os.path.join(profile_dir, schema_key)
engine.associate_schema(key, e.get_key())
client.suggest_sync()
if __name__ == "__main__":
sys.excepthook = log_excepthook
info("started")
if not os.path.exists("/usr/lib/indicator-applet/indicator-applet"):
info("no indicator applet binary installed, exiting")
sys.exit(0)
engine = gconf.engine_get_default()
client = gconf.client_get_for_engine(engine)
#info("engine",engine)
#info("client",client)
# make sure this is auto-run only once
client.set_bool("/apps/panel/need_add_indicator_applet_lucid", False)
#info("set /apps/panel/need_add_indicator_applet_lucid to false")
# search for the notification area applet
active_applets=client.get_list("/apps/panel/general/applet_id_list",
gconf.VALUE_STRING)
applets = client.all_dirs("/apps/panel/applets")
notification_pos = None
notification_panel = None
notification_right_stick = False
for d in applets:
#info("looking at: %s" % d)
applet_id = os.path.basename(d)
if (client.get_string(os.path.join(d,"bonobo_iid")) == "OAFIID:GNOME_IndicatorApplet") and applet_id in active_applets:
info("Already has a indicator applet",
"Your panel already has a indicator applet")
sys.exit(0)
if (client.get_string(os.path.join(d,"bonobo_iid")) == "OAFIID:GNOME_NotificationAreaApplet"):
notification_pos = client.get_int(os.path.join(d,"position"))
notification_panel = client.get_string(os.path.join(d,"toplevel_id"))
notification_right_stick = client.get_bool(os.path.join(d,"panel_right_stick"))
# check if we found the notification area
if (notification_pos is None or
notification_pos == 0 or
notification_panel is None):
error("Could not find notification area",
"Please add the indicator applet manually")
sys.exit(1)
info("New post: ", notification_pos)
info("New panel: ", notification_panel)
# create a new indicator applet
applet_name = "applet_indicator_auto_added"
new_applet_name = os.path.join("/apps/panel/applets/",applet_name)
associate_schemas_in_dir(client, engine, new_applet_name,
"/schemas/apps/panel/objects")
client.set_string(os.path.join(new_applet_name, "bonobo_iid"),
"OAFIID:GNOME_IndicatorApplet")
client.set_string(os.path.join(new_applet_name, "toplevel_id"),
notification_panel)
client.set_string(os.path.join(new_applet_name, "object_type"),
"bonobo-applet")
client.set_bool(os.path.join(new_applet_name, "panel_right_stick"),
notification_right_stick)
# position depends on if tray_applet is right stick or not
if notification_right_stick:
notification_pos += 1
else:
notification_pos -= 1
client.set_int(os.path.join(new_applet_name, "position"),
notification_pos)
l=client.get_list("/apps/panel/general/applet_id_list", gconf.VALUE_STRING)
l.append(applet_name)
client.set_list("/apps/panel/general/applet_id_list", gconf.VALUE_STRING, l)
client.suggest_sync()
# show nice information
info("Configuration updated",
"Your panel configuration is updated. ")


zifino ha scritto:Ciao,anche ha me dava questo problema ma dopo un aggiornamento di oggi tutto funziona bene provate ad aggiornare![]()


piemont ha scritto:già fatto non è cambiato nulla, magari dai un occhiata al file postato in precedenza e confrontalo con il tuo per vedere se ci sono differenze, grazie

Torna a Installazione e aggiornamento del sistema operativo
Visualizzano questa sezione: 0 utenti registrati e 2 ospiti