Sponsored Content
Full Discussion: System Panel disappear.
Operating Systems Linux System Panel disappear. Post 302858135 by Aia on Sunday 29th of September 2013 12:34:39 AM
Old 09-29-2013
Press Alt + F2
At the Run Application box enter gnome-terminal

Code:
cd ~/.gconf/apps/panel
rm -rf general
killall gnome-session

That will kick you out of gnome.
Login again and the default panel will be restored.

Last edited by Aia; 09-29-2013 at 01:48 AM.. Reason: Better explanation
 

8 More Discussions You Might Find Interesting

1. Solaris

NFS file/dir disappear issue

We have bunch of Sun Sparc workstations(solaris 7 & 8) connecting to a linux file server with NFS exports. Recently we upgraded our file server from fedora core1 to redhat enterprise linux 4. And since then we are experiencing a nightmare of file/dir missing. It happens randomly, couple of times... (1 Reply)
Discussion started by: motor98
1 Replies

2. Filesystems, Disks and Memory

Automounted filesystems disappear

We have a Slackware 9.1 box that our ASP controls. We use it to see the logging of our Weblogic-clusters. All the logging is auto-mounted in /rmt which is fine, as long as you know the names of the mountpoints. When you don't access the mountpoints for a certain period of time, the mountpoint... (0 Replies)
Discussion started by: indo1144
0 Replies

3. Shell Programming and Scripting

Make the typed text disappear...

Hi all... I-m quite a new user of UNIX and i was trying to write a simple program and my problem is the following:how can i make a typed letter disappear (as we see in the MORE command, when we type <space>, b, q etc...) i know that for typing some text that has to be read it's used the structure:... (0 Replies)
Discussion started by: Cellofan
0 Replies

4. UNIX and Linux Applications

mysql table disappear

I have set a mysql file to excute everyday morning to generate a html file displayng 2 tables from the database. Sometime they cannot be shown, and it shows the tables are not existed. I have not drop any table, and those 2 tables are not used by any other excution. Anybody know what is happening?... (0 Replies)
Discussion started by: c203040
0 Replies

5. AIX

Parent directory seems to disappear if child fails rename

If I have a file/folder that a user does not have permission to and I try to rename it, it removes the entire parent folder. At that point it is only visible in a ls. (Not a ls -l, file, more, cd). It happens on every filesystem. This is Aix 5.3 $ cd test $ ls -la total 0 drwxr-xr-x 2 root ... (4 Replies)
Discussion started by: scriptr2be
4 Replies

6. SuSE

SLES 11 SP1 X windows login screen disappear ..

Dear All I have a problem (please look the attachment picture.) My SLEL 11 SP1 use run-level 5, after I reboot the server. the Ctrl+Alt F7 console only display the wallpaper... (It should display a lprompt to ask username and password, please look the attachment picture. and the... (0 Replies)
Discussion started by: nnnnnnine
0 Replies

7. Red Hat

Make a disk disappear from fdisk output

Hello, 1 ) Fdisk -l # Displays all the disk with partition table information My Query ) A ) How can i make one disk ex: /dev/sdd not visible in fdisk -l output ? B) From where fdisk -l collect and display the information ? (8 Replies)
Discussion started by: saurabh84g
8 Replies

8. Shell Programming and Scripting

Help: run with another user, env disappear

#!/bin/sh PATH_1=$PATH echo "PATH_1 is " $PATH_1 function user_func (){ whoami export PATH=$PATH_1:/usr/local/bin echo "PATH is" $PATH exit } export -f user_func su -m hadoop -c 'user_func' from out put, PATH is not set with PATH_1 append ( it's not another user to run the... (5 Replies)
Discussion started by: yanglei_fage
5 Replies
panel(3X)																 panel(3X)

NAME
panel - panel stack extension for curses SYNOPSIS
#include <panel.h> cc [flags] sourcefiles -lpanel -lncurses PANEL *new_panel(WINDOW *win) int bottom_panel(PANEL *pan) int top_panel(PANEL *pan) int show_panel(PANEL *pan) void update_panels(); int hide_panel(PANEL *pan) WINDOW *panel_window(const PANEL *pan) int replace_panel(PANEL *pan, WINDOW *window) int move_panel(PANEL *pan, int starty, int startx) int panel_hidden(const PANEL *pan) PANEL *panel_above(const PANEL *pan) PANEL *panel_below(const PANEL *pan) int set_panel_userptr(PANEL *pan, const void *ptr) const void *panel_userptr(const PANEL *pan) int del_panel(PANEL *pan) DESCRIPTION
Panels are curses(3X) windows with the added feature of depth. Panel functions allow the use of stacked windows and ensure the proper por- tions of each window and the curses stdscr window are hidden or displayed when panels are added, moved, modified or removed. The set of currently visible panels is the stack of panels. The stdscr window is beneath all panels, and is not considered part of the stack. A window is associated with every panel. The panel routines enable you to create, move, hides, and show panels, as well as position a panel at any desired location in the stack. Panel routines are a functional layer added to curses(3X), make only high-level curses calls, and work anywhere terminfo curses does. FUNCTIONS
new_panel(win) allocates a PANEL structure, associates it with win, places the panel on the top of the stack (causes it to be displayed above any other panel) and returns a pointer to the new panel. void update_panels() refreshes the virtual screen to reflect the relations between the panels in the stack, but does not call doupdate() to refresh the physical screen. Use this function and not wrefresh or wnoutrefresh. update_panels() may be called more than once before a call to doupdate(), but doupdate() is the function responsible for updating the physical screen. del_panel(pan) removes the given panel from the stack and deallocates the PANEL structure (but not its associated window). hide_panel(pan) removes the given panel from the panel stack and thus hides it from view. The PANEL structure is not lost, merely removed from the stack. show_panel(pan) makes a hidden panel visible by placing it on top of the panels in the panel stack. See COMPATIBILITY below. top_panel(pan) puts the given visible panel on top of all panels in the stack. See COMPATIBILITY below. bottom_panel(pan) puts panel at the bottom of all panels. move_panel(pan,starty,startx) moves the given panel window so that its upper-left corner is at starty, startx. It does not change the position of the panel in the stack. Be sure to use this function, not mvwin(), to move a panel window. replace_panel(pan,window) replaces the current window of panel with window (useful, for example if you want to resize a panel; if you're using ncurses, you can call replace_panel on the output of wresize(3X)). It does not change the position of the panel in the stack. panel_above(pan) returns a pointer to the panel above pan. If the panel argument is (PANEL *)0, it returns a pointer to the bottom panel in the stack. panel_below(pan) returns a pointer to the panel just below pan. If the panel argument is (PANEL *)0, it returns a pointer to the top panel in the stack. set_panel_userptr(pan,ptr) sets the panel's user pointer. panel_userptr(pan) returns the user pointer for a given panel. panel_window(pan) returns a pointer to the window of the given panel. DIAGNOSTICS
Each routine that returns a pointer returns NULL if an error occurs. Each routine that returns an int value returns OK if it executes suc- cessfully and ERR if not. COMPATIBILITY
Reasonable care has been taken to ensure compatibility with the native panel facility introduced in SVr3.2 (inspection of the SVr4 manual pages suggests the programming interface is unchanged). The PANEL data structures are merely similar. The programmer is cautioned not to directly use PANEL fields. The functions show_panel() and top_panel() are identical in this implementation, and work equally well with displayed or hidden panels. In the native System V implementation, show_panel() is intended for making a hidden panel visible (at the top of the stack) and top_panel() is intended for making an already-visible panel move to the top of the stack. You are cautioned to use the correct function to ensure compati- bility with native panel libraries. NOTE
In your library list, libpanel.a should be before libncurses.a; that is, you want to say `-lpanel -lncurses', not the other way around (which would give you a link error using GNU ld(1) and some other linkers). FILES
panel.h interface for the panels library libpanel.a the panels library itself SEE ALSO
curses(3X) AUTHOR
Originally written by Warren Tucker <wht@n4hgf.mt-park.ga.us>, primarily to assist in porting u386mon to systems without a native panels library. Repackaged for ncurses by Zeyd ben-Halim. panel(3X)
All times are GMT -4. The time now is 08:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy