<span class="gmail_quote"></span>This week, I happened to take a look at this, and the only ways to get the panel at the top back (besides rebooting) are rather painful, especially if done on the Neo itself (without ssh).<br>
<br>My guess is that it disappeared when you were fiddling with the &quot;Antenna&quot; (the gsm applet) on the panel.&nbsp; This is when it happens to me.&nbsp; The problem is, this gsm applet is &quot;joined at the hip&quot; to the panel application at the top (via a shared object).&nbsp; If this applet has a problem and abnormally terminates, it brings down the panel with it.
<br><br>This seems to be all tied into the GSM functionality, which I understand is being heavily worked on so it&#39;s probably not worth directly troubleshooting for the moment.<br><br>The short and least painful answer to getting it back is to reboot.
<br><br>The simplest alternatives I can find are to ssh into the Neo (or bring up a terminal on the device - but that&#39;s about to get painful).&nbsp; Once you have a command line, you can restart the X server.&nbsp; Normally this would be as simple as:
<br><br>/etc/init.d/xserver.nodm restart<br><br>But because of Bug #605, it&#39;s a no go.&nbsp; You&#39;ll need to stop it manually and then start it up again.<br><br>To stop the X server:<br>killall xinit<br><br>Then to restart it:
<br>/etc/init.d/xserver.nodm start<br><br>You&#39;ll get a lot of garbage on your screen, but once you logout it will go away.&nbsp; You should really redirect this gunk to the console or /dev/null, but that just takes even more typing.
<br><br>The one step solution - to just restart the panel - takes more typing.&nbsp; That&#39;s why the above is easier (and reboot even easier).&nbsp; But if you insist, the command:<br><br>matchbox-panel-2 --start-applets=openmoko-panel-mainmenu,systray,startup \
<br>&nbsp; --end-applets=openmoko-panel-battery,openmoko-panel-gsm,\<br>&nbsp; openmoko-panel-gps,openmoko-panel-usb,openmoko-panel-bt,\<br>&nbsp; openmoko-panel-clock --display :0 &amp;<br><br>Will bring it back.&nbsp; (Hey - I told you it would be painful).
<br><br>I expect one of two things may happen before there is a final product.&nbsp; Either all of the applets used in this panel will need to become extremely stable so this doesn&#39;t happen.&nbsp; Or the call to the panel application itself will need to be wrapped in such a way as to restart it when it crashes (my preference).
<br><br>