Scripts in /etc/profile.d seem not to work under certain circumstances

While already logged in, if I open up a terminal and run a script in /etc/profile.d/ to set environment variables, the changes don't seem to take. I can think of two examples:
1) Turning on KDE4 desktop integration in openoffice. I edited /etc/profile.d/openoffice.sh and changed OOO_FORCE_DESKTOP=KDE4, but when I ran the script I got an "export: command not found" error.
2) When replacing Sun Java with OpenJDK in order to compile and use 389-console from the AUR, I got caught up on one of the dependencies, ldapjdk (also from the AUR). The PKGBUILD for this package contains the following block of code:
which ant
if [ $? -eq 1 ]; then
. /etc/profile.d/apache-ant.sh
fi
ant dist
In theory this should work, as /etc/profile.d/apache-ant.sh contains the following two lines:
export ANT_HOME=/usr/share/java/apache-ant
export PATH=$PATH:$ANT_HOME/bin
However, upon running makepkg I got an error about "ant" not being in my path. To get around this I just edited the PKGBUILD and put the full path to ant, but this shouldn't have been necessary. The original PKGBUILD should have worked. I seem to have something out of whack and I don't quite know what. If anyone could be of assistance, it would be much appreciated.

I'm well aware of this. I never said that I started openoffice from the plasma menu. I never even started it. /etc/profile.d/openoffice.sh errored out without setting the environment variable in the current shell session. If it had worked, I would have been able to run openoffice from the terminal to test the new environment variable, which is what I was intending to do in the first place. There's no need to logout to test these sort of changes, they can be done from the terminal.
Your solution also doesn't address the problem I had in example #2, either. makepkg should be able to set environment variables in the current shell session, using the /etc/profile.d script detailed in the example. Running makepkg has nothing to do with my graphical session.
I know that logging out and back in will "fix" the problem, but that's not the point. The point is that a script which should be able to set an environment variable is not working properly.
Last edited by archtaku (2010-08-21 00:58:53)

Similar Messages

  • Samples Not Acquired on NI 660x or NI 6624 Devices When using pulse width, semi-period or two-edge separation buffered measurements with the NI 660x and NI 6624 on counters 0 and 1, some samples may not be acquired under certain circumstances.

    In the DAQmx 9.4 Readme the following is stated:
    Samples Not Acquired on NI 660x or NI 6624 Devices When using pulse width, semi-period or two-edge separation buffered measurements with the NI 660x and NI 6624 on counters 0 and 1, some samples may not be acquired under certain circumstances.
    Could anyone elaborate on this? I am particularly interested in knowing under what circumstances this problem arises for the 6602 PCI devices.
    How should I understand 'NI 660x and NI 6624 on counters 0 and 1'. Is it only a problem on counter 0 and 1 for the 660x or does this only apply for the 6624 devices.
    /mola 

    Are there any NI Product Support Engineers out there who has an answer to this question and who are willing to share it with me?

  • The function AirDrop on my Mac BookAir seems not to work, not detect my iPad. How to fix this?

    The function AirDrop on my Mac BookAir seems not to work, not detect my iPad. How to fix this?

    AirDrop on iOS devices (iPads, iPhones, iPod touches) can only AirDrop things with other iOS devices. AirDrop on Mac can only AirDrop things with other Macs.
    I hope this solves your question.
    Austin

  • I downloaded iMovie 11 butit seems not to work with IDVD6. Do I need to get the Newest IDVD? Which IDVD is the latest and where do i download it from?

    I downloaded iMovie11 but it seems not to work with iDVD6. Do I need to down load the latest IDVD?

    Where do I download it from?
    You need to use iDVD 09 or iDVD 11.  These are only available on disk.
    IDVD is a wonderful piece of software and well worth the low cost of $40.
    http://www.amazon.com/Apple-MC623Z-A-iLife-VERSION/dp/B003XKRZES/ref=sr_1_1?ie=U
    If you live in a state where Amazon collects sales tax you may prefer the link below.
    http://dealmac.com/lw/artclick.html?1,527850,1872219

  • My select select statement seems not to work...

    Hello experts,
    I am having trouble with my select statement below. Here is what I need to do:
    1. loop at itab it_equz.
    2. get single asset number(ANLNR) and description(SHTXT) from table ITOB where EQUNR =_equz-equnr.
    3. get single asset number(ANLN1), asset subclass(ANLN2 and subnumber(ORD42 from table ANLA where its asset(anln1) equals to the asset fetched by ITOB. (no. 2 step) and DEAKT eq '00000000'
    4. Now, I would get all fields(select single) in table ANLC where ANLN1 equals to asset fetched by ANLA and ANLN2 equals to ANLN2 fetched by ANLA and AFABE eq '01'.
    5.endloop.
    Now, the problem is that I can't seem to get the right values in table ANLC. Now, my boss said that the values that I must get in ANLC must not be deactivated. So I did that by getting the required fields(no 3 step) in table ANLA where its DEAKT is equal to '00000000'.
    Now, my select statement for ANLC seems not to work properly since I have the proper where conditions. Anyway, below is my select statement that I did:
    LOOP AT it_equz.  "no 1 step
    SELECT SINGLE anlnr shtxt FROM itob   "no 2 step
              INTO (it_itob-anlnr, it_itob-shtxt)
              WHERE equnr = it_equz_dum1-hequi.
    MOVE it_itob-anlnr TO it_finaltab-asset_dum.
                MOVE it_itob-anlnr TO it_finaltab-asset.
                MOVE it_itob-shtxt TO it_finaltab-description.
    SELECT SINGLE bukrs anln1 anln2 ord42   "no 3 step
                FROM anla                                  
                INTO (it_anla-bukrs, it_anla-anln1, it_anla-anln2,
                      it_anla-ord42)
                WHERE anln1 = it_finaltab-asset
                  AND bukrs IN r_iwerk
                  AND deakt = '00000000'.
    MOVE it_anla-ord42 TO it_finaltab-asset_sub.
                  WRITE it_finaltab-asset TO v_asset.
                  CONCATENATE v_asset '-' it_anla-anln2
                  INTO it_finaltab-asset_subnum.
    SELECT SINGLE bukrs anln1 gjahr afabe knafa kansw  "no 4 step
                              answl kaafa nafal aafav aafag
                              nafap aafap nafav nafag FROM anlc
                          INTO (it_anlc-bukrs, it_anlc-anln1, it_anlc-gjahr,
                                it_anlc-afabe, it_anlc-knafa, it_anlc-kansw,
                               it_anlc-answl, it_anlc-kaafa, it_anlc-nafal,
                               it_anlc-aafav, it_anlc-aafag, it_anlc-nafap,
                               it_anlc-aafap, it_anlc-nafav, it_anlc-nafag)
                            WHERE anln1 EQ it_finaltab-asset
                              AND anln2 EQ it_anla-anln2
                              AND bukrs EQ it_anla-bukrs
                              AND afabe EQ '01'.
    it_finaltab-accq_cost = it_anlc-kansw + it_anlc-answl.
                IF p_posdep = 'X'.
                  it_finaltab-acc_dep = it_anlc-knafa +
                                        it_anlc-nafav +
                                        it_anlc-nafag +
                                        it_anlc-kaafa +
                                        it_anlc-aafav +
                                        it_anlc-aafag.
                ELSE.
                  it_finaltab-acc_dep = it_anlc-knafa +
                                        it_anlc-nafav +
                                        it_anlc-nafag +
                                        it_anlc-kaafa +
                                        it_anlc-aafav +
                                        it_anlc-aafag +
                                        it_anlc-nafap +
                                        it_anlc-aafap.
                ENDIF.
    APPEND it_finaltab. CLEAR it_finaltab.
              APPEND it_equz_dum2. CLEAR it_equz_dum2.
              CLEAR it_itob. CLEAR it_anla. CLEAR it_anlc.
    endloop.

    Hi,
      Please avoid selection in loop. it will lead to major performance issue.
    avoid move statements ; instead use assignment.
    1st :- select the entire data into internal table
    eg:-
    SELECT anlnr shtxt FROM itob
    INTO table it_itob
    for all entries in it_equz
    WHERE equnr = it_equz-hequi.
    1st select
    2nd select.
    2nd :- now loop on ur internal table to get the desired result.
    it is good to work with internal table rather than select statements in loop.
    Regards

  • Can the new garageband open files from the previous garageband? in my case it seems not to work and I would like to know if it is possible at all...

    Can the new garageband open files from the previous garageband? in my case it seems not to work and I would like to know if it is possible at all...

    No.
    I find it extremely frustrating that Apple does not care for such an obvious bug affecting one of the basic funcionalities of AirPlay. Unless, of course, if there's something I don't know - but I've done some research and it seems that plenty of people have same issue and no solution is settled.

  • HT4437 Is it possible to zoom in photos when using airplay? It seems not to work at all. I can only zoom in if i use mirroring and even then i have to reconnect mirroring each time I chage an albumor even go from the photo to the album level.

    Is it possible to zoom in photos when using airplay? It seems not to work at all. I can only zoom in if i use mirroring and even then i have to reconnect mirroring each time I chage an albumor even go from the photo to the album level.

    No.
    I find it extremely frustrating that Apple does not care for such an obvious bug affecting one of the basic funcionalities of AirPlay. Unless, of course, if there's something I don't know - but I've done some research and it seems that plenty of people have same issue and no solution is settled.

  • Dropped my iphone and now home button doesnt work and will not charge.lower third of it seems not to work.i assume it's had it.what will i lose off it?

    dropped my iphone and now home button doesnt work and will not charge.lower third of it seems not to work.i assume it's had it.what will i lose off it?

    rbrook0113 wrote:
    I know any device could malfucntion but if it costs $40,000 to buy you could at least warn someone of the possible malfuctions. It makes the company look bad when a large amount of your devices act up and you "cant help them" if they dont pay extra. Im just saying.
    Sorry but that makes no sense at all.  How can they possible know what things will possible malfunction on your device?  Anything that they think is highly likely to malfunction they would have addressed in desiging and manufacturing the device in the first place, during development.  They've made and sold many millions of iPhones, and many of them have lasted years without any problems (I know, I've owned such iPhones personally).  So how could they possible know if yours was any more likely to develop any issues than any of those other trouble free ones?
    It's hardware - stuff sometimes breaks randomly.  No amout of money ever guarantees or even reduces the likelyhood of random product failures.
    Take it in to Apple and see about getting it fixed.

  • Export To Web feature not fully working under windows browsers

    I have a real problem and I can't figure it out for the life of me. I have a .mov file. I used QuickTime Pro to "Export To Web", and selected desktop. It then gives me a nice, neat folder with all the files I need to upload to the web.
    I uploaded the folder, and can view the movies fine using any browser on my Mac (firefox, safari, etc). I've not had any problems while on my Mac.
    However, when I go to watch the same movies using Windows, using windows version of Safari, FireFox and Internet Explorer, sometimes the movies play, and sometimes I get a QuickTime logo with a questions mark, and I get a small error icon (yellow icon) at the bottom of my status bar.
    If I refresh the page, the movie will play again.
    Why could this be happening? I have all the code included within the HEAD tags as well as the QuickTime movie code that is created during the export. I don't know why it works under Mac but in Windows it gives problems.
    Here is the link if anyone can look and see what the problem may be:
    http://www.sacredstonehealing.com/DVD/00196727-DVD-001
    The video is for my boss, and a couple people (who mostly use windows) have been complaining of the error. I was oblivious to it, as I never had the error using my Mac.
    Any help will be greatly appreciated!

    Hi Kyn- Yes, I got that same controller bar in the middle as well. Very strange. To answer your questions, for my Mac, I have "save movies in cache" checked, and 100MB cache. I don't know the settings for my Windows QuickTime.
    I think I'm just going to end up using the export "Movie To QuickTime" and choose the "fast start" option. I've never had trouble with that for Windows. I will lose the nice "Click to Play" poster screen before the movie starts, but I can live with that.
    I'll mess around with this a bit more and try different settings, but I'm gonna put up a new one using the "regular" "object", "embed" method code, and just use .mov. For the main poster, I can always insert an image at the front of the movie.
    Thanks for your reply.
    Bryan

  • Image.getScaledInstance() does not always work under Windows Vista

    Hi:
    I've run into some intermittent image scaling problems under Windows Vista (minus Aero effects) that I never experienced with the same program, same image(s), running same Java version under XP. The images I'm using are all JPEGs, and the problem appears to affect approx 1 out of 3 grayscale images (no color ones so far) w/o respect to size (ie: small ones can be problems while larger ones will work). Java -version shows 1.6.0_02-b06. I was wondering if anyone else out there has seen this, or can point out what I may be doing wrong. Sample code to duplicate follows.
    Tx,
    Jallewel
    // ===================================================================
    // Image Scaling Problem, Description & Demo Program (minus the image):
    //   Environment:  SDK/JRE: Java 1.6.0_02-b06, running under
    //        Windows Vista Home Premium (32-Bit) on Dell Inspiron w/3GB RAM
    //   ************* Symptoms ******************
    //   Problem occurs when invoking image.getScaledInstance().
    //   Problem shows up under Windows Vista, configured w/Windows Classic look
    //       & feel - that is, with Aero effects turned OFF.
    //   Problem does NOT show up under Windows XP on Dell Dimension 4500.
    //   Test across computers used same SDK/JRE, Java program, and Image.
    //   Problem ONLY appears in grayscale JPEG images, and only 1 out of 3 of those.
    //   (I can provide a problem image)
    // Results Compiling & Running This Program:
    //   C:\Users\~\VistaProblem>javac VistaProblem.java
    //   C:\Users\~\VistaProblem>java VistaProblem
    //      Uncaught error fetching image:
    //      java.lang.ClassCastException: [I cannot be cast to [B
    //        at java.awt.image.ColorModel.getAlpha(Unknown Source)
    //        at java.awt.image.ColorModel.getRGB(Unknown Source)
    //        at sun.awt.image.ImageRepresentation.convertToRGB(Unknown Source)
    //        at sun.awt.image.ImageRepresentation.setPixels(Unknown Source)
    //        at java.awt.image.AreaAveragingScaleFilter.accumPixels(Unknown Source)
    //        at java.awt.image.AreaAveragingScaleFilter.setPixels(Unknown Source)
    //        at sun.awt.image.ImageDecoder.setPixels(Unknown Source)
    //        at sun.awt.image.JPEGImageDecoder.sendPixels(Unknown Source)
    //        at sun.awt.image.JPEGImageDecoder.readImage(Native Method)
    //        at sun.awt.image.JPEGImageDecoder.produceImage(Unknown Source)
    //        at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
    //        at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
    //        at sun.awt.image.ImageFetcher.run(Unknown Source)
    import java.*;
    import java.awt.*;
    import java.io.*;
    import javax.imageio.*;
    // class VistaProblem
    public class VistaProblem extends Frame {
       private static ScrollPane sp = new ScrollPane(ScrollPane.SCROLLBARS_AS_NEEDED);
       public static ImageComponent ic;
       // Constructor
       public VistaProblem() {
          super("VistaProblem");
          add(sp, BorderLayout.CENTER);
          this.setSize(700, 520);
          setVisible(true);
         String fPathName = "./ProblemImage.jpg";
          ic = new ImageComponent(getToolkit().getImage(fPathName));
          sp.add(ic);
          sp.validate();
          ic.Scale(220, 200);
       // class ImageComponent
       class ImageComponent extends Component {
          private Image image;
          // Constructor
          ImageComponent(Image img) {
             this.image = img;
          // paint
          public void paint(Graphics g) {
             g.setColor(getBackground());
             g.drawImage(image, 10, 10, this);
             g.dispose();
          // Scale
          public void Scale (int width, int height) {
             // ***** PROBLEM LINE HERE; COMMENT OUT AND PROGRAM WORKS *****
             this.image = this.image.getScaledInstance(width, height, Image.SCALE_SMOOTH);
             repaint();
       // Main Entry Point
       public static void main(String args[]) {
          Frame f = new VistaProblem();
    } // end VistaProblem

    That does indeed appear to be a bug. I looks like it's having problems with the alpha value in the color model, so a possible workaround would be to change the color model the image uses before scaling. This may entail creating a new BufferedImage and drawing the old image into it.

  • Openbox: setxkbmap in .xinitrc seems not to work

    Hi,
    I'm running Openbox on a laptop, and I also have a USB keyboard. I'm trying to set up the keyboard layout (for both keyboards) to switch between dvorak, querty, and Spanish dvorak. The following line is in ~/.xinitrc:
    setxkbmap -layout "us,us,es" -variant "dvorak,,dvorak" -option "grp:caps_toggle"
    I also have a file called "20-keyboard-layout.conf" in /etc/X11/xorg.conf.d:
    Section "InputClass"
    Identifier "keyboard-layout"
    MatchIsKeyboard "on"
    Option "XkbLayout" "us, us, es"
    Option "XkbVariant" "dvorak, , dvorak"
    Option "XkbOptions" "grp:caps_toggle"
    EndSection
    This setup doesn't work as expected. If the USB keyboard is plugged in before I run startx, then both the laptop and USB keyboards seem to use dvorak (which is the layout specified in /etc/vconsole.conf), but they don't switch when I press capslock. If I then pull out the USB and put it back in, then the USB keyboard is able to switch layouts as expected, but the laptop keyboard is still stuck on dvorak. If, on the other hand, I manually run the aforementioned setxkbmap command from within Openbox, then both keyboards are able to switch between the layouts.
    None of this behavior changes if the setxkbmap line is removed from ~/.xinitrc. I feel like that line is being completely ignored, which is frustrating, because it makes no sense.
    I've tried Googling around and reading some of the man page for xorg.conf and various other things, to no avail. I'm relatively new to Linux--I've been using Arch for less than six months. Thanks for your help!

    Please check the <i>Page Window</i> of SAP Script for each window. I believe the overlaping is happening. Adjust the size of MAIN and MVTXT in Page Window.
    Cheers,
    Thomas.

  • Why does the highlight feature seem not to work about 1/2 the time in various ibooks.  I'm trying to take notes and about 50 pages into a book the highlight feature stopped working.

    I've long noted that the highlight feature in ibooks is clunky and fairly limited in it's note-taking features, but the last two books I've read I've had trouble getting the highlight feature to work at all.  I click and drag over text and nothing happens.  I try with command depressed and nothing happens.  If I double click a bunch it will eventually highlight one word, but nothing more.  What gives?
    Also, not to be snarky, but why can't I seem to find a button that would read text to speach for me?  How do blind people use this service, or illiterate, or dyslexic, or people like myself who can learn far more from hearing then from reading. 
    And why does the text of a book often render so that it's haf cut off of the page?

    There is a button for speech within the iBooks menu. Edit > Speech. You might be better off buying Audiobooks. You can get them from the iTunes Store or Audible.com

  • G5 doesnt boot- common tricks seem not to work

    hi,
    today I found a suspicious folder on my HD with a 3letter name I had never seen before, after seraching through it and finding several folders (share, lib, bin etc) I found an item called instanthijackserver. i moved the whole folder into the trashcan, moved a sinlge file called .raw on my desktop and then decided, to move the whole folder back on to the desktop. then my browsers startet to act up (google told me about a spelling check error when I tried to enter search words and firefox wouldn't even start), so I shut the computer down. since,
    my ppc doesnt get past the grey apple when booting, then the vents go off crazy.
    I have tried:
    -start up from Install Disk with holding C while turning on
    -holding ALT while starting, selected HD and Install Disk (after doing that i get prohibitory sign)
    -safe mode
    -single mode: can't type anything (fsck)
    -open firmware mode: can type, did the nvram and pram reset, nothing changed
    -unplugged it, took out the battery and started without, then again with
    -did the cuda reset
    nothing gets me past the grey screen
    i get the following after entering verbose mode:
    Using 2621 buffer headers and 2621 cluster IO buffer headers
    AppleKauaiATA shasta-ata features enabled
    DART enabled
    FireWire (OHCI) Apple ID 52 built-in now active, GUID 001451ff fe358888; max speed s800
    CSRHIDTransitionDriver: : probe: -v
    CSRHIDTransitionDriver: :start before command
    Security Auditing service present
    BSM Auditing present
    Disabled
    Rooting via boot-uuid from /chosen: F485CDBC-7F36-3851-9084-CB17430DAC87
    Waiting on <dict ID=“0“><key>IOProviderClass</key><string ID=“1“>IOResources</string><key>IOResourceMatch</key><string ID=“2“>boot-uuid-media</string></dict>
    Got boot device = IOService:/MacRISC4PE/ht@0,f2000000/AppleMacRiscHT/pci@9/IOPCI2PCIBridge/k2-sat a-root@C/AppleK@SATARoot/k2-sata@0/AppleK2SATA/ATADeviceNub@0/IOATABlockStorageD river/IOAtABlockStorageDeviceIOBlockStorageDri ver/Maxtor 6L250M0 Media/IOApplePartitionScheme/Untitled 3@3
    BSD root: disk0s3, major 14, minor 2
    AppleSMU: -- shutdown cause = 3
    Load of /sbin/launchd, errno 2, trying /sbin/mach_init
    Load of /sbin/launchd failed errno 2
    AppleSMU: :PMU vers = 0x000d00a0, SPU vers =0x69, SDB vers = 0x01,
    CSRHIDTransitionDriver: :stop
    IOBluetoothHCIController: :start Idle Timer Stopped
    then the fans start acting up again...
    i removed my original RAMS and put em back in, unplugged all peripherals - nothing.
    anyone witha a good idea??

    You could do that, but suggest you insure no Disk Corruuption first, this can be Done in T mode also without booting from the Install Disc...
    Try Disk Utility
    1. Insert the Tiger Mac OS X Install disc , then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, *you must select your language first.)*
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk
    If all the above fails, then it appears to be time for a relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

  • Smart folders seems not to work with star rating. Is there a fix?

    I Rate photos with a five star rating either on iPhoto or Adobe Bridge CS5. When I create a smart folder setting the search attribute to "Rating equals 5" nothing appears on the search.

    Sorry,
    I think I misunderstood your question. You were talking about smart folders in the Finder and not about smart albums in iPhoto, right?  "Rating equals 5" does not work on any of my machines, neither in Snow leopard nor in Lion. The problem seems to be how to represent the rating in the search string. If I search for "Rating is not 5" the smart folder contains plenty of pictures, also those with a rating of five. Does anyone know how the rating is coded to be used in a search string in the Finder?

  • Loading a dynamic generated profile... not really working

    Hey all - ok simple question sort of.
    I am generating a dynamic profile for the encoder.  It's to save to c:\videos on output with each user's unique id in the file name.  The user goes to a secure login, clicks the download profile link - and bam I have the XML file set to auto-open in Flash Media Encoder.  Problem is - it is not using my dynamically generated filename.  If I go to flash media encoder and OPEN Profile - and open the profile that was downloaded - all is well and the filename in the save to file is correct.  If you try to click on the profile file (xml file) or have firefox auto-open xml file into flash media encoder - it opens up the encoder but does not adjust any settings including the save to file location.
    So my question is - is it possible to start a custom profile by simply clicking on the profile xml file (default app for it is the encoder)??  I have read up on the cmd line - option but that won't be an option in this case as we just want users to download / start a recording session.
    Here is a sample of the profile generated:
    I bolded the part that gets dynamically generated....
    <?xml version="1.0" encoding="UTF-16"?>
    <flashmedialiveencoder_profile>
        <preset>
            <name>Custom</name>
            <description></description>
        </preset>
        <capture>
            <video>
            <device>Integrated Webcam</device>
            <crossbar_input>0</crossbar_input>
            <frame_rate>15.00</frame_rate>
            <size>
                <width>320</width>
                <height>240</height>
            </size>
            </video>
            <audio>
            <device>Microphone (High Definition Aud</device>
            <crossbar_input>0</crossbar_input>
            <sample_rate>22050</sample_rate>
            <channels>2</channels>
            <input_volume>75</input_volume>
            </audio>
        </capture>
        <process>
            <video>
            <preserve_aspect></preserve_aspect>
            </video>
        </process>
        <encode>
            <video>
            <format>VP6</format>
            <datarate>200;</datarate>
            <outputsize>320x240;</outputsize>
            <advanced>
                <keyframe_frequency>5 Seconds</keyframe_frequency>
                <quality>Good Quality - Good Framerate</quality>
                <noise_reduction>None</noise_reduction>
                <datarate_window>Medium</datarate_window>
                <cpu_usage>Dedicated</cpu_usage>
            </advanced>
            <autoadjust>
                <enable>false</enable>
                <maxbuffersize>1</maxbuffersize>
                <dropframes>
                <enable>false</enable>
                </dropframes>
                <degradequality>
                <enable>false</enable>
                <minvideobitrate></minvideobitrate>
                <preservepfq>false</preservepfq>
                </degradequality>
            </autoadjust>
            </video>
            <audio>
            <format>MP3</format>
            <datarate>48</datarate>
            </audio>
        </encode>
        <restartinterval>
            <days></days>
            <hours></hours>
            <minutes></minutes>
        </restartinterval>
        <reconnectinterval>
            <attempts></attempts>
            <interval></interval>
        </reconnectinterval>
        <output>
            <file>
            <limitbysize>
                <enable>false</enable>
                <size>10</size>
            </limitbysize>
            <limitbyduration>
                <enable>false</enable>
                <hours>1</hours>
                <minutes>0</minutes>
            </limitbyduration>
            <path>C:\Videos\M02634365_01_10_11_03_58_PM.flv</path>
            </file>
        </output>
        <metadata>
            <entry>
            <key>author</key>
            <value></value>
            </entry>
            <entry>
            <key>copyright</key>
            <value></value>
            </entry>
            <entry>
            <key>description</key>
            <value></value>
            </entry>
            <entry>
            <key>keywords</key>
            <value></value>
            </entry>
            <entry>
            <key>rating</key>
            <value></value>
            </entry>
            <entry>
            <key>title</key>
            <value></value>
            </entry>
        </metadata>
        <preview>
            <video>
            <input>
                <zoom>100%</zoom>
            </input>
            <output>
                <zoom>100%</zoom>
            </output>
            </video>
            <audio></audio>
        </preview>
        <log>
            <level>100</level>
            <directory>C:\Users\recordpharmacy\Videos</directory>
        </log>
    </flashmedialiveencoder_profile>

    Unfortunately no.
    Put simply, there are a few major intel-related changes going on right now, and the short story is that the intel drivers are using newer tech than Mesa and such are. However, the required packages haven't been brought up to date yet (I think they haven't been marked stable upstream and such).
    The first step however is kernel 2.6.28, which includes half of the "fix", to simplify. Now, this won't make your FPS go straight back up - you'll need to wait for newer versions of Mesa and such to be rolled out - but it's a start, especially if you don't already have 2.6.28.
    From there, I'm sure you've seen this thread which outlines what to recompile. I'll probably wait though, since 100FPS is quite an upgrade for me - I didn't have hardware rendering until a month or so ago (I think) - and my system is slow enough as it is (it can't use DDR2 RAM) for me to really bother with fast graphics anyway.
    -dav7

Maybe you are looking for