Double Buffer Extension libdbe.so for conky

Hallo
I am running conky, which is said to require DBE. The very same issue has already been posted here (https://bbs.archlinux.org/viewtopic.php?id=164293), but the topic was not continued.
I searched but could not find any hints where to find this module. It is not in /usr/lib/xorg/modules/extensions/. I did not find a package that contains it.
I need it as I am having the issues with flickering as described in the Arch wiki on conky (https://wiki.archlinux.org/index.php/co … flickering).
Can anybody advise?
Lokesh

Hi,
Just to be sure, have you installed the opensource video driver for intel ?
https://www.archlinux.org/packages/?nam … ideo-intel

Similar Messages

  • Double buffer for different components.

    Currently I'm working on a project where I have a JPanel inside of a JFrame. The panel takes up a portion of the frame and on other side I have a JButton and two JTextfields. My double buffer method works fine for the JPanel but every time it's repainted the other components in my JFrame look like they need to be buffered. What would be the best way to fix this? I think I just need to re-add the other components whenever the Panel is repainted but I run into a lot of problems if that's the case.

    We can't see your code so we'll take your word for it. But if I use Swing components they typically don't 'need buffering' by which I assume you mean that they flicker? So the problem is when you combine your code with Swing so you'll have to debug that yourself or show some code (preferrably as SSCCE).

  • What is the best way to double buffer in this case and how to do it....

    currently I have
    public class Frame1 extends JFrame{
    //inside this class I call up circle class, rectangle class, etc.... to draw
    }I am making a "paint" program, and I have individual classes to handle the paint methods heres an example:
    abstract public class Shape {
        public Shape() {
        public abstract void draw(Graphics g, Color c, int x, int y, int width,int height);
    }and then....
    public class Circle extends Shape{
        public Circle() {
        public void draw(Graphics g, Color c, int oldx, int oldy, int newx, int newy) {
            g.setColor(c);
            g.drawOval(Math.min(oldx, newx), Math.min(oldy, newy), Math.abs(oldx - newx), Math.abs(oldy - newy));
    }There is also a Rectangle class, line class.... etc! So my question to you is the following... what is the best way to implement double buffer in the individual classes? And how to do it?? And also.... the drawings should be kept inside a jPanel.
    Any bit of help is much appreciated Thank you!!

    You don't need to do double-buffering. Swing
    components are double-buffered by default. Just make
    sure you override paintComponent() and not paint().
    And even if you had to, why would there be any
    difference in implementation for your classes whether
    they paint to on- or off-screen graphics?I need to override paintComponent()? what if I don't...
    I am using JBuilder2005 and they automate somethings for me. So thats how they did it when they created the application they did this....
    public class Frame1 extends JFrame{
    /*** all my code here***/
    public class Application1 {
        boolean packFrame = false;
         * Construct and show the application.
        public Application1() {
            Frame1 frame = new Frame1();
            // Validate frames that have preset sizes
            // Pack frames that have useful preferred size info, e.g. from their layout
            if (packFrame) {
                frame.pack();
            } else {
                frame.validate();
            // Center the window
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            Dimension frameSize = frame.getSize();
            if (frameSize.height > screenSize.height) {
                frameSize.height = screenSize.height;
            if (frameSize.width > screenSize.width) {
                frameSize.width = screenSize.width;
            frame.setLocation((screenSize.width - frameSize.width) / 2,
                              (screenSize.height - frameSize.height) / 2);
            frame.setVisible(true);
            try {
                jbInit();
            } catch (Exception ex) {
                ex.printStackTrace();
         * Application entry point.
         * @param args String[]
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    try {
                        UIManager.setLookAndFeel(UIManager.
                                                 getSystemLookAndFeelClassName());
                    } catch (Exception exception) {
                        exception.printStackTrace();
                    new Application1();
        private void jbInit() throws Exception {
    }

  • Double file extensions keep showing up when saving a file in Illustrator CS3???

    I just installed the CS3 suite and when I am saving files in illustrator I keep getting double file extensions. For example if I save a file named "filename" as a .eps file it shows up in the save window with filename.eps.eps Also, if I click through the possible file types to save it keeps adding them one after the other so if I click. say pdf eps and ai the file in the "Save As:" window looks like this " filename.pdf.eps.ai.ai" Any ideas why this is happening? I keep having to mouse click in the "Save As:" box and delete the extra extension. This is really annoying!!
    I am running the design premium CS3 on OSX 10.5 on a mac pro.
    Thanks.

    >Wade... I've seen it... and reported it originally to Adobe. I've since realized it's a 10.5.1 issue. It doesn't happen with 10.4.11, just 10.5.1
    I've seen extra periods (.) and extra extensions.
    then you and Dave have the same conflict with a third party software, corrupt font, corrupt preference or the like because it is not happening o my Mac Pro and I have the same model Mac as you do and I am working fine in 10.5.1 and only problem I have had with AI CS 3 is when I tried to place a 3D CAD file with the extension .dxf which is not really supported.
    I have not seen this even once. Would you like to see screen shots, it honestly is not a 10.5.1 or Illustrator issue on its own. This has to be user specific.

  • Need to output 8 channels using double buffer

    Hi,
    I need to ouput 8 channels to the DAQ card.
    I am getting an array 8 bytes of data every 10 milliseconds.
    Each byte corresponds to a channel.
    I am using your WFMDoubleBuffer.c code.
    The changes I have made are :
    1. Changed the buffer from 32K to 16 bytes. I am assuming 8 bytes with double buffer = 16 bytes
    2. I'm not sure about updateRate, so I set it to 1.0
    Result : I get an error from WFM_Group_Control(). It says "The operation could not complete within the time limit", error = -10800
    I have attached the file for your reference.
    Please help me.
    Thanking you in anticipation
    Chandra
    Attachments:
    WFMdoubleBuf.C ‏8 KB

    Chandra,
    The timeout error here is slightly misleading. The reason this is happening is caused by a few things. By default, the card to setup to transfer data when the onboard FIFO is full, and so your half buffer must be the same size or large than your FIFO unless you have regeneration turned on. Regeneration will cause your buffer to be copied as many times as possible into the FIFO until it is full. Your 6713 has an AO FIFO size of 16,384. So your buffer size must be twice this, so that your half buffer is >= 16384. Where is your data coming from at these 10 ms intervals, from a program or another device? This could affect what method would be the best solution.
    If you want to keep working on this, let�s stick to one channel, I sent you an email, did you get
    it?
    Kevin R
    Applications Engineer
    National Instruments

  • Where can I find the update "Adobe Extension Manager CS5" for Windows? HELP!!!

    Where can I find the update "Adobe Extension Manager CS5" for Windows? HELP!!!

    Hi Piotrmp006,
    You can download the Extension Manager CS5 for Windows from the below mentioned link.
    Download the Extension Manager
    Download Extension Manager CS5 installer and save it on your machine.
    Double-click the installer to begin the installation process.
    Adobe - Exchange : Download the Adobe Extension Manager
    Let me know if you need more help.
    Thanks!
    Eshant

  • When i save any image from any website then there is no option showing in the save as box like saves as .jpg etc. In this case I manually add the extension of image for example .jpg .gif etc. Please solve my problem :(

    When i save any image from any website then there is no option showing in the save as box like saves as .jpg etc. In this case I manually add the extension of image for example .jpg .gif etc. Please solve my problem :(

    I'm guessing your problem is caused by code validation errors: orphaned division tags for example, or mismatched code and document type (i.e.  XHTML /> mixed with HTML > style closures).
    Start by using the code validation tools below and fix any reported.  You'll need an Internet connection for this:
    HTML Validator - http://validator.w3.org 
    CSS Validator - http://jigsaw.w3.org/css-validator/  
    HTML & CSS Tutorials - http://w3schools.com/
    If this doesn't solve the problem, you will need to post a URL to your live page so we can see your code and images working together.   Or at the very least copy and paste your HTML and CSS code into a reply using double arrows >> Syntax Highlighting > Plain.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Double Buffer

    Hi all,
    I've just written this Digital Clock in Java and I'm trying to add a double buffer to it to stop it flickering however I get 4 errors when I try to compile it. Here is the code:
    (START OF CODE)
         import java.awt.*; //puts in abstract windows toolkit to get output on screen
         import java.util.*;
         import java.applet.Applet;
         import java.awt.event.*;
         //<applet code="DigitalClock.class" width=400 height=400></applet> //displays applet without needing to create HTML file
         public class DigitalClock extends Applet implements ActionListener, Runnable //listen for action events
         Image myimage,buffer;
         Graphics doublebuffer;
         private javax.swing.Timer timer; //implements timer
         public void init() {
    timer = new javax.swing.Timer(1000, this);
    timer.setInitialDelay(0);
    timer.start();
         buffer = createImage(width,height);
         doublebuffer = buffer.getGraphics();
         public void paint(Graphics g) //states that the code below will paint objects onto the applet
         g.setColor (Color.white); //sets colour to white
         g.drawRect(130, 78, 120, 30); //rectangle shape surrounding digital clock
         g.setColor (Color.darkGray); //sets colour to grey
         g.fillRect(132, 80, 117, 27); //fills rectangle from code 2 lines up with colour grey
         setBackground(Color.black); //specifies background colour as black
         Calendar myCal = new GregorianCalendar();
         myCal.set(1956, Calendar.MARCH, 17); //
         of myCal.setTime(myCal2.getTime());
         myCal.setTime(new Date());
         int year = myCal.get(Calendar.YEAR); int mnth = myCal.get(Calendar.MONTH) + 1;
         int DATE = myCal.get(Calendar.DATE); System.out.println(DATE + "." + mnth + "." + year);
         myCal.add(Calendar.YEAR, 1);
         DATE myDate = myCal.getTime(); System.out.println(myDate);
         GregorianCalendar cal = new GregorianCalendar(); //tells program to implement the a new Gregorian Calemder in order to display a date or time
         doublebuffer.setFont(new Font("Arial", Font.BOLD,20)); //sets font to arial, bold style, and size 20
         doublebuffer.setColor (Color.white); //sets colour to white
    doublebuffer.drawString(cal.get(Calendar.HOUR_OF_DAY) + " : " + //examines windows clock to get current hour
    cal.get(Calendar.MINUTE) + " : " + //examines windows clock to get current minute
    cal.get(Calendar.SECOND), 140, 100); //examines windows clock to get current second
         doublebuffer.setFont(new Font("Arial", Font.BOLD,15)); //sets the font to arial, bold style, and size 15
         doublebuffer.drawString("By Darren Cole", 130, 270); //adds words in pink as string and specifies coardinates
         doublebuffer.drawString("Last Modified: 03/04/03", 110, 290); //adds words in pink as string and specifies coardinates
         doublebuffer.drawLine(90, 60, 130, 77); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.drawLine(210, 60, 250, 77); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.drawLine(90, 60, 210, 60); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.drawLine(90, 90, 130, 107); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.drawLine(90, 60, 90, 90); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.setColor (Color.darkGray); //sets colour to dark grey
         doublebuffer.fillRect(129, 62, 83, 16);
         g.drawImage(buffer,0,0,this);
         public void actionPerformed(ActionEvent e) //tells program that there is an action event specified in the code below
         repaint(); //keeps repainting the digital clock graphics as the time changes i.e. keeps looping the code over
    (END OF CODE)
    What am I doing wrong here? Also I've tried to implement the date as well using a GregorianCalendar. How would I actually make the date appear on the page?
    Thanks,
    Darren

    Most of that doesn't matter now because I've now put in a simplercode for the date but it still doesn't display. But now I get 10 errors. The new code is:
    (START OF CODE)
    import java.awt.*; //puts in abstract windows toolkit to get output on screen
         import java.util.*;
         import java.applet.Applet;
         import java.awt.event.*;
         //<applet code="DigitalClock.class" width=400 height=400></applet> //displays applet without needing to create HTML file
         public class DigitalClock extends Applet implements ActionListener, Runnable //listen for action events
         Graphics doublebuffer;
         private javax.swing.Timer timer; //implements timer
         public void init() {
    timer = new javax.swing.Timer(1000, this);
    timer.setInitialDelay(0);
    timer.start();
         doublebuffer = buffer.getGraphics();
         public void paint(Graphics g) //states that the code below will paint objects onto the applet
         doublebuffer.setColor (Color.white); //sets colour to white
         doublebuffer.drawRect(130, 78, 120, 30); //rectangle shape surrounding digital clock
         doublebuffer.setColor (Color.darkGray); //sets colour to grey
         doublebuffer.fillRect(132, 80, 117, 27); //fills rectangle from code 2 lines up with colour grey
         setBackground(Color.black); //specifies background colour as black
         Calendar date = new GregorianCalendar();
         DateFormat df=DateFormat.getDateInstance(DateFormat.LONG);
         String date = df.format(new Date());
         GregorianCalendar cal = new GregorianCalendar(); //tells program to implement the a new Gregorian Calemder in order to display a date or time
         doublebuffer.setFont(new Font("Arial", Font.BOLD,20)); //sets font to arial, bold style, and size 20
         doublebuffer.setColor (Color.white); //sets colour to white
    doublebuffer.drawString(cal.get(Calendar.HOUR_OF_DAY) + " : " + //examines windows clock to get current hour
    cal.get(Calendar.MINUTE) + " : " + //examines windows clock to get current minute
    cal.get(Calendar.SECOND), 140, 100); //examines windows clock to get current second
         doublebuffer.setFont(new Font("Arial", Font.BOLD,15)); //sets the font to arial, bold style, and size 15
         doublebuffer.drawString("By Darren Cole", 130, 270); //adds words in pink as string and specifies coardinates
         doublebuffer.drawString("Last Modified: 03/04/03", 110, 290); //adds words in pink as string and specifies coardinates
         doublebuffer.drawLine(90, 60, 130, 77); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.drawLine(210, 60, 250, 77); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.drawLine(90, 60, 210, 60); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.drawLine(90, 90, 130, 107); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.drawLine(90, 60, 90, 90); //specifies coardinates for lines that give 3D effect to Digital Clock
         doublebuffer.setColor (Color.darkGray); //sets colour to dark grey
         doublebuffer.fillRect(129, 62, 83, 16);
         g.drawImage(buffer,0,0,this);
         public void actionPerformed(ActionEvent e) //tells program that there is an action event specified in the code below
         repaint(); //keeps repainting the digital clock graphics as the time changes i.e. keeps looping the code over
    (END OF CODE)
    The errors are:
    ---------- Javac ----------
    DigitalClock.java:63: 'class' or 'interface' expected
         public void actionPerformed(ActionEvent e) //tells program that there is an action event specified in the code below
    ^
    DigitalClock.java:70: 'class' or 'interface' expected
    ^
    DigitalClock.java:70: 'class' or 'interface' expected
    ^
    DigitalClock.java:8: DigitalClock should be declared abstract; it does not define run() in DigitalClock
         public class DigitalClock extends Applet implements ActionListener, Runnable //listen for action events
    ^
    DigitalClock.java:21: cannot resolve symbol
    symbol : variable buffer
    location: class DigitalClock
         doublebuffer = buffer.getGraphics();
    ^
    DigitalClock.java:37: cannot resolve symbol
    symbol : class DateFormat
    location: class DigitalClock
         DateFormat df=DateFormat.getDateInstance(DateFormat.LONG);
    ^
    DigitalClock.java:37: cannot resolve symbol
    symbol : variable DateFormat
    location: class DigitalClock
         DateFormat df=DateFormat.getDateInstance(DateFormat.LONG);
    ^
    DigitalClock.java:37: cannot resolve symbol
    symbol : variable DateFormat
    location: class DigitalClock
         DateFormat df=DateFormat.getDateInstance(DateFormat.LONG);
    ^
    DigitalClock.java:38: date is already defined in paint(java.awt.Graphics)
         String date = df.format(new Date());
    ^
    DigitalClock.java:58: cannot resolve symbol
    symbol : variable buffer
    location: class DigitalClock
         g.drawImage(buffer,0,0,this);
    ^
    10 errors
    Normal Termination
    Output completed (2 sec consumed).
    Thanks,
    Darren

  • Does a double jack extension coord affect my internet speed?

    I used to have time warner cable with 25mbps, and today I switched to verizon fios also with 25mbps.
    My internet works fine,and  I am pretty sure I didn't connect any of my phone filters to the modem.
    I used to be able to watch HD videos on youtube but now it takes forever for them to stream.
    My modem is connected to a grey extension cable(it came with the box) and that is connected to a 50 ft double jack extension coord which is then connected to a 3-jack wall adapter.
    The other 2 jacks are for 2 filters for my phones.
    Is it because of the double jack extension coord? Should I just buy an extension coord with no jacks?
    Or is it because it is just day 1.
    I can post images , if it ain't clear enough.

    Fios doesn't use a modem it uses a router. None of the cords are grey or come with filters. Sounds like you are talking about DSL if that is so post your question there.

  • Double Buffer program is slowing down, help.

    Hello, I have a small Dancing Lines program like an old Windows screensaver program and it appears to slow down after about 30 seconds to a minute. I "clear" my buffer by copying a screen sized black symbol to the buffer. If anyone has any ideas about how to make this more efficient and most importantly stop the slow down, please let me know, thanks.
    // Variables
    var x0:int;
    var y0:int;
    var x1:int;
    var y1:int;
    var x2:int;
    var y2:int;
    var x3:int;
    var y3:int;
    var dx0:int;
    var dy0:int;
    var dx1:int;
    var dy1:int;
    var dx2:int;
    var dy2:int;
    var dx3:int;
    var dy3:int;
    var counter:int = 0;
    var clearBuffer:Buffer = new Buffer();
    var drawing:Shape = new Shape();
    var color1:uint = uint(0xFFFFFF * Math.random());
    // Initialize Line Values
    x0 = int(Math.random() * 320);
    x1 = int(Math.random() * 320);
    y0 = int(Math.random() * 200);
    y1 = int(Math.random() * 200);
    x2 = x0;
    x3 = x1;
    y2 = y0;
    y3 = y1;
    // Initializing Line Velocities
    dx0 = int(Math.random() * 5);
    dx1 = int(Math.random() * 5);
    dy0 = int(Math.random() * 5);
    dy1 = int(Math.random() * 5);
    dx2 = dx0;
    dx3 = dx1;
    dy2 = dy0;
    dy3 = dy1;
    // Double Buffer Setup
    var bitmap:BitmapData = new BitmapData(stage.stageWidth,stage.stageHeight,true,0xff000000);                          
    var buffer:BitmapData = new BitmapData(stage.stageWidth,stage.stageHeight,true,0xff000000);
    var image:Bitmap = new Bitmap(bitmap);
    addChild(image);
    // Listeners
    addEventListener(Event.ENTER_FRAME,onEnterFrame);
    function onEnterFrame(event:Event):void {
         // Clear The Sreen
         buffer.draw(clearBuffer);
         // Logic
         drawing.graphics.lineStyle(1, color1);
         drawing.graphics.moveTo(x0,y0);
         drawing.graphics.lineTo(x1,y1);
         if ((x0 += dx0) >= 315 || x0 < 5)
              dx0 *= -1;
         if ((y0 += dy0) >= 195 || y0 < 5)
              dy0 *= -1;
         if ((x1 += dx1) >= 315 || x1 < 5)
              dx1 *= -1;
         if ((y1 += dy1) >= 195 || y1 < 5)
              dy1 *= -1;
         if (++counter > 50) {
              drawing.graphics.lineStyle(1, 0x000000);
              drawing.graphics.moveTo(x2,y2);
              drawing.graphics.lineTo(x3,y3);
              if ((x2 += dx2) >= 315 || x2 < 5)
                   dx2 *= -1;
              if ((y2 += dy2) >= 195 || y2 < 5)
                   dy2 *= -1;
              if ((x3 += dx3) >= 315 || x3 < 5)
                   dx3 *= -1;
              if ((y3 += dy3) >= 195 || y3 < 5)
                   dy3 *= -1;
         if (counter > 250)
              counter = 51;
         // Draw The Screen
         buffer.draw(drawing, drawing.transform.matrix);
         bitmap.draw(buffer);
    P.S. - Is there a way I can post my code in a smaller box with a scrollbar?

    Here is a fixed version:
    // Variables
    var x0:int;
    var y0:int;
    var x1:int;
    var y1:int;
    var x2:int;
    var y2:int;
    var x3:int;
    var y3:int;
    var dx0:int;
    var dy0:int;
    var dx1:int;
    var dy1:int;
    var dx2:int;
    var dy2:int;
    var dx3:int;
    var dy3:int;
    var counter:int = 0;
    var drawing:Shape = new Shape();
    var color1:uint = uint(0xFFFFFF * Math.random());
    // Initialize Line Values
    x0 = int(Math.random() * 320);
    x1 = int(Math.random() * 320);
    y0 = int(Math.random() * 200);
    y1 = int(Math.random() * 200);
    x2 = x0;
    x3 = x1;
    y2 = y0;
    y3 = y1;
    // Initializing Line Velocities
    dx0 = int(Math.random() * 5);
    dx1 = int(Math.random() * 5);
    dy0 = int(Math.random() * 5);
    dy1 = int(Math.random() * 5);
    dx2 = dx0;
    dx3 = dx1;
    dy2 = dy0;
    dy3 = dy1;
    // Double Buffer Setup
    var bitmap:BitmapData = new BitmapData(stage.stageWidth,stage.stageHeight,true,0xff000000);                         
    var buffer:BitmapData = new BitmapData(stage.stageWidth,stage.stageHeight,true,0xff000000);
    var image:Bitmap = new Bitmap(bitmap);
    addChild(image);
    // Listeners
    addEventListener(Event.ENTER_FRAME,onEnterFrame);
    function onEnterFrame(event:Event):void {
         // Logic
         drawing.graphics.lineStyle(1, color1);
         drawing.graphics.moveTo(x0,y0);
         drawing.graphics.lineTo(x1,y1);
         if ((x0 += dx0) >= 315 || x0 < 5)
              dx0 *= -1;
         if ((y0 += dy0) >= 195 || y0 < 5)
              dy0 *= -1;
         if ((x1 += dx1) >= 315 || x1 < 5)
              dx1 *= -1;
         if ((y1 += dy1) >= 195 || y1 < 5)
              dy1 *= -1;
         if (++counter > 50) {
              drawing.graphics.lineStyle(1, 0x000000);
              drawing.graphics.moveTo(x2,y2);
              drawing.graphics.lineTo(x3,y3);
              if ((x2 += dx2) >= 315 || x2 < 5)
                   dx2 *= -1;
              if ((y2 += dy2) >= 195 || y2 < 5)
                   dy2 *= -1;
              if ((x3 += dx3) >= 315 || x3 < 5)
                   dx3 *= -1;
              if ((y3 += dy3) >= 195 || y3 < 5)
                   dy3 *= -1;
         // Draw The Screen
         buffer.draw(drawing, drawing.transform.matrix);
         bitmap.draw(buffer);
         // clear drawing canvas
         drawing.graphics.clear();
    Basically you have to use the graphics.clear() function to erase any clip where you are using the drawing API. Drawing lots of vectors can be very costly performance-wise so you always want to clear your graphics when you are finished. Drawing over the vectors with a rectangle has no effect except to increase the load even more. However when dealing with bitmap objects you can safely draw as much as you want for as long as you wish with no performance hit. Thats why what you were trying to do with that "clearBuffer" was not doing anything. Also, setting the counter to 51 when it got to 250 was doing nothing whatsoever. Not sure what that was for. The code should work fine now.

  • HT1222 My mouse pointer in finder is not working by double clicking on the application.I have to double click and select open for opening the application.Can you suggest me some settings to fix this problem?

    My mouse pointer in finder is not working by double clicking on the application.I have to double click and select open for opening the application.Can you suggest me some settings to fix this problem?

    Hi,
    Try this ... reboot your Mac and see if double clicking works again.
    Also, you can just select the Application you like to open and hold down the Command+O to open.
    Also, did you check your setting for the mouse in system preferences.
    Dimaxum

  • I want to reinstall my operating system,How can I back up all my add ons, extensions and personas for reinstallation when Im done?

    I want to reinstall my operating system,How can I back up all my add ons, extensions and personas for reinstallation when Im done?
    Im using fire ftp,downthem all,wot , antiporn pro,and various personas.
    I dont want to renstall them all one at a time, rather I would like to ireinstall a back up like I do with my bookmarks,
    Is this possible??

    See this support article. <br />
    https://support.mozilla.com/en-US/kb/Backing+up+your+information

  • Missing extensions/plug-ins for Safari.

    So, I recently had a virus/malware scare and to take care of it (which I did) I got rid of all extensions/plug ins for Safari.
    I've currently only got Adobe Flash Player, and nothing else which is really hindering me. I've looked all over but I can't find out what the plug-ins or extensions I need are.
    The most recent issue was something about Audio Midi when I couldn't play an audio thing online while looking for guitar chords stuff.
    After that gave it a shot by asking Apple, but the closest Apple store is too far to be worth driving to and I can't afford $50 or however much it is to get the info/links/whatever I need.

    There's no need to install Safari extensions if you don't wan to, however, there might want to check out the extensions gallery. You may find something useful.
    From your Safari menu bar click Safari > Safari Extensions ...
    To avoid malware, open System Preferences > Security & Privacy > General
    Make sure:  Mac App Store and identified developers  is selected.
    If that area is grayed out, click the padlock icon to proceed.

  • Vista & Outlook 2007: Sync with second XP & Outlook 2003 - The passed buffer is too small for the reply data

    Dear Community,
    I'm synchronising my T3 with two PCs. One with Vista & Outlook 2007 and the other with XP & Outlook 2003. Both with the latest conduit & Hotsync Manager versions installed for each OS based on the availability on the Palm Website. 
    My problem is that when I synchronise the T3 with either PC and then try to sync it with the other I'm receiving the following error message for the Calendar:
    Outlook Calendar
    The passed buffer is too small for the reply data.
    OLERR:0D-0008
    OLERR:0D-0004
    OLERR:0D-0001
    - Slow Sync
    Outlook Calendar synchronization failed
     The second time the sync is successful but takes a long time and the actual problem is that it creates duplicates for records previously changed on either PC - but with a sync in between those changes, i.e. no conflict in the sense that the same record was changed in both environments since the last sync. I have configured the conflict handling to establish a hierarchy PC1-T3-PC2 but try to avoid them by synchronising as often as possible.
    Has anyone come across that problem or any ideas? Can you somehow adjust the buffer size for the sync? I have been using Lotus Organiser & then the various Outlook versions for a number of years.
    Thank you
    Rainer
    Post relates to: Tungsten T3
    Post relates to: Tungsten T3

    As they say on TV, "Doh"!!!
    I figured out the problem. I started the Sync tool, selected "Settings", then "Mcrosoft Outlook" tab and then "Select Folders" button. I browsed to the proper folders in Outlook (Calendar, Tasks, etc). Select OK enough times and retried the sync.
    It worked.

  • Using Sothink video downloader, normally video files are save in FLV extension. Now for whatever reason suddenly my video files are save in .ebm extension. "Save file Type As" is peg only on .EBM extension

    Using Sothink video downloader, normally by default my video files are save in FLV extension. Now for whatever reason suddenly my video files are save in .ebm extension & I can't open my video file. "Save file Type As" -to select file extension does not seem to work -

    It's a WEBM video file. My solution was to rename the file to have .webm extension, and play it with the latest VLC Player (2.1, but I think any from 1.1 and upper will solve it too). Just associate .ebm with VLC didn't work. I had to rename the files so VLC knew exactly what that thing was.
    By the way, it worked the same way with a .eam file (!), I just renamed the extension to .webm.

Maybe you are looking for

  • How to use one query results in another query

    hi, in help.sap I have founded that using variable type replacement path I can use one query results in another query. It is wrote there that I have to choose query name results I want to get in variable definition but I do not know where. How I can

  • Early 2011 MacBook Pro- The thermal paste discussion.

    It is my goal to clear up the questions and concerns Apple customers have been having regarding heat or fan related concerns with Early 2011 MacBook Pros. If your MacBook Pro was produced within the last few months the thermal issue has been resolved

  • Photo Booth is just a black screen sometimes?

    Sometimes when I open Photo Booth, the green light for my webcame turns on but the preview screen is just black. And when I take the pic, its all black. But if i connect my webcam throught Skype or something it never goes black. Just sometimes with P

  • Release 4.2(1) Build 15 Patch 4 - faulting module SchemeLayer.dll

    Hi All, For the last few day's I am getting the following error on one of my acs servers. "Reporting queued error: faulting application CSAdmin.exe, version 0.0.0.0, faulting module SchemeLayer.dll, version 0.0.0.0, fault address 0x0002c370" It runni

  • Is delivery functionality related to process in SAP CRM7.0 possible?

    If we have to upgrade from R/3 to CRM7, which of the following functionalities are supported both in CRM and R/3 1. You client want to add CRM to an existing R/3 landscape. As part of your analysis, you need to decide how the process flow should take