MINT gnome power manager problems


 
Thread Tools Search this Thread
Operating Systems Linux MINT gnome power manager problems
# 1  
Old 05-23-2010
MINT gnome power manager problems

Version: Linux Mint 9 Isadora

I'm having problems with the MINT gnome power manager. I just finished installing Linux Mint 9 Isadora on my system and every time I try to log into Mint I get this message "The config defaults for gnome power manager have not been installed correctly. Please contact your computer Administrator." I have no clue what this means or how to fix it. I haven't been able to find anything useful on google.
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Backup & restore Gnome Desktop and all settings in Gnome

Hi I'm looking for scripts to backup & restore Gnome Desktop and all settings in Gnome. (0 Replies)
Discussion started by: ccc
0 Replies

2. Solaris

RAID manager or veritas volume manager

Can somebody kindly help me to determine which one i should choose to better manipulate OS volume. RAID manager or veritas volume manager? Any critical differences between those two? Thanks in advance. (5 Replies)
Discussion started by: beginningDBA
5 Replies

3. Debian

gnome file manager configuration question

Is there a way to configure the gnome file manager to open each directory in the same window instead of opening a new one? (Debian 5.0.0) (5 Replies)
Discussion started by: snorkack59
5 Replies

4. Solaris

Application Manager Problems

I am running Solaris 10 on a v440 server The user rebooted the computer and now when they open the application manager everything is missing. Desktop_Tools Desktop_Controls ectra... I checked the symbolic links and everything appears to be there. i even tried to cp -r... (2 Replies)
Discussion started by: deaconf19
2 Replies

5. UNIX Desktop Questions & Answers

Setting window manager manually for GNome

So, I just finished building a FreeBSD box from the ground up using only the ports collection and got my box up and running with XFree86 4.1.0 and KDE 2.2. Some of the tools that I installed required GNome so I installed GNome 1.4 as well. When I fire up GNome I get informed that my window... (1 Reply)
Discussion started by: auswipe
1 Replies
Login or Register to Ask a Question
mp(3)							     Library Functions Manual							     mp(3)

NAME
madd, msub, mult, mdiv, gcd, invert, rpow, msqrt, mcmp, min, omin, fmin, m_in, mout, omout, fmout, m_out, sdiv, itom - Performs multiple precision integer arithmetic LIBRARY
Object Code Library (libmp.a) SYNOPSIS
#include <mp.h> #include <stdio.h> typedef struct mint { int len; short *val; } MINT; madd( MINT *a, MINT *b, MINT *c ); msub( MINT *a, MINT *b, MINT *c ); mult( MINT *a, MINT *b, MINT *c ); mdiv( MINT *a, MINT *b, MINT *q, MINT *r ); pow( MINT *a, MINT *b, MINT *m, MINT *c ); gcd( MINT *a, MINT *b, MINT *c ); invert( MINT *a, MINT *b, MINT *c ); rpow( MINT *a, int n, MINT *c ); msqrt( MINT *a, MINT *b, MINT *r ); mcmp( MINT *a, MINT *b ); move( MINT *a, MINT *b ); min( MINT *a ); omin( MINT *a ); fmin( MINT *a, FILE *f ); m_in( MINT *a, int n, FILE *f ); mout( MINT *a ); omout( MINT *a ); fmout( MINT *a, FILE *f ); m_out( MINT *a, int n, FILE *f ); sdiv( MINT *a, short n, MINT *q, short *r ); *itom( short n ); DESCRIPTION
These functions perform arithmetic on integers of arbitrary length. The integers are stored using the defined type MINT. Pointers to a MINT can be initialized using the itom() function, which sets the initial value to n. After that, space is managed automatically by the routines. The madd(), msub() , and mult() functions assign to c the sum, difference, and product, respectively, of a and b. The mdiv() function assigns to q and r the quotient and remainder obtained from dividing a by b. The sdiv() function is like the mdiv() function except that the divisor is a short integer n and the remainder is placed in a short integer whose address is given as r. The msqrt() function produces the integer square root of a in b and places the remainder in r. The rpow() function calculates in c the value of a raised to the (``regular'' integral) power n, while the pow() function calculates this with a full multiple precision exponent b and the result is reduced modulo m. The gcd() function returns the greatest common denominator of a and b in c, and the invert() function computes c such that a*c mod b = 1, for a and b relatively prime. The mcmp() function returns a negative, zero, or positive integer value when a is less than, equal to, or greater than b, respectively. The move() function copies a to b. The min() and mout() functions do decimal input and output while the omin() and omout() functions do octal input and output. More gener- ally, the fmin() and fmout() functions do decimal input and output using file f, and m_in() and m_out do input and output with arbitrary radix n. On input, records should have the form of strings of digits terminated by a newline; output records have a similar form. NOTES
Programs which use the multiple-precision arithmetic library must be compiled with -lmp. delim off mp(3)