How to make radeon graphic switching settings permanent

The wiki for the Acer TimelineX gives the following lines of code for a power-saving configuration:
#mount -t debugfs none /sys/kernel/debug
#modprobe radeon
#echo ON > /sys/kernel/debug/vgaswitcheroo/switch
#echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
This works perfectly for my purposes -- to reduce fan noise -- but how do I make these settings permanent? Is there any downside (performance-wise) to adding the debugfs to /etc/fstab? The radeon module is already loaded, so what remains to know is what to do about the echo ON / echo OFF lines. Should I put them in a startup file, or is there another way to set them by default?
Last edited by eyolf (2011-12-23 08:41:44)

No, I haven't measured it. I was just wondering about the necessity of having a debug file system mounted and running just in order to stop some activity. Seems rather roundabout to me. That's also why I wondered if there is some other way to do this: as a permanent setting rather than as a command to be run at boot/login time.

Similar Messages

  • Need direction on how to make motion graphics -AF CS5

    I didn’t know how to word the header for my question so I’ll try to clarify it here. I’m new to AF so please bear with me. In the Adobe tutorial at the link below, he animates a flower. The flower is in front of a colored background and there are some added text that animate as well. I understand about layers but my question is, can I make a graphic like the one in the tutorial in Photoshop CS5 and import it into AF? I just ordered a copy of PS CS5 and have not gotten a chance to work with PS. When I searched the net about my question, I found many links describing how to make web graphics. Would I be making the same thing and saving them not as a web graphic? If I can make something similar to the flower in the tutorial, then I can go from there. I guess what is confusing for me is that the background and flower assets are mp4 (mpeg) video. I thought it would be two graphics in 2 layers, plus additional text as more layers. http://tv.adobe.com/watch/learn-after-effects-cs5/gs05-working-with-layers/

    Thank you Kevin.  I'll kinda figured that would be the be the steps but wasn't real sure. Once I get going in PS, I'll better understand how to do things.
    Wow, lots to learn.

  • Can't figure out how to make a graphic expand in an animated gif (CS4)

    I'm trying to make an animated gif where two of my graphics expand to the outer edges of the picture. However all that I can manage to accomplish is to have the opacity fade in or out. Is it possible to make a graphic expand in CS4?
    Thanks for any help!

    I'm not very familiar with animation using Photoshop. I have a small amount of experience using Illustrator, but not much. I'm not sure what a normal timeline is.
    What I'm trying to do should be very simple. I want to emulate a tv screen flickering on, using 2 white bars that expand outwards from the center of a blackish background.

  • How to make Illustrator remember color settings?

    Hello!
    The quick color selector in the main toolbar (fill and stroke) always resets their thumbnail sizes whenever I quit Illustrator.
    I use a 27" monitor and prefer large thumbnails in my fill and stroke palette in the toolbar - but is there no way to make Illustrator "save" the settings when I change it to large thumbnails?

    Can't help you but just to confirm that this is the case (I'm using CS5 Win7). No way to make Illustrator remember the settings - they programmed it as bad as it is and I don't think there is a way at least using the UI.
    You can use this link to post a feature request http://forums.adobe.com/community/illustrator/illustrator_feature_requests although I think this can be considered as a bug.
    by the way, it is called the Control panel which by default is the horizontal bar under the main menu - the Toolbar is the vertical bar with tools on the left side.
    Alternatively meanwhile you can increase the size of the swatches in the Swatches panel which luckily Illustrator remembers.

  • How to make the changes to be permanent when a session is executed successfully ?

    Hi Everyone,
    I am new to ODI.
    I am learning how to create interfaces for the data flow between two Oracle databases !
    Now I started by developing a simple interface of loading data from EMPLOYEES table of HR schema to another table created by me EMPLOYEES_TGT in the same schema.
    When I dragged and dropped the source and target tables in the mapping tab it showed do you want to map automatically. I selected Yes and then When i executed the project I got errors and I have manually changed the code in the session. One session is executed correctly after changing the code in the sessions, when I start the same project once again it is throwing the same errors. How can I make the changes of the code that I changed in the previous session permanent to that interface ?
    Could anyone please guide me how to overcome this problem ? How can i make the changes permanent when one session has completed execution ?
    Thanks& Regards,
    Anvesh

    Hi Raghunar,
    The following is the code generated by default with the interface:
    insert /*+ append */ into HR.I$_EMPLOYEES_TGT
      EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    select
    EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    from (
    select 
      EMPLOYEES.EMPLOYEE_ID EMPLOYEE_ID,
      EMPLOYEES.FIRST_NAME FIRST_NAME,
      EMPLOYEES.LAST_NAME LAST_NAME,
      EMPLOYEES.EMAIL EMAIL,
      EMPLOYEES.PHONE_NUMBER PHONE_NUMBER,
      EMPLOYEES.HIRE_DATE HIRE_DATE,
      EMPLOYEES.JOB_ID JOB_ID,
      EMPLOYEES.SALARY SALARY,
      EMPLOYEES.COMMISSION_PCT COMMISSION_PCT,
      EMPLOYEES.MANAGER_ID MANAGER_ID,
      EMPLOYEES.DEPARTMENT_ID DEPARTMENT_ID,
      'I' IND_UPDATE
    from HR.EMPLOYEES   EMPLOYEES
    where (1=1)
    ) S
    where NOT EXISTS
      ( select 1 from HR.EMPLOYEES_TGT T
      where 
      and ((T.EMPLOYEE_ID = S.EMPLOYEE_ID) or (T.EMPLOYEE_ID IS NULL and S.EMPLOYEE_ID IS NULL)) and
      ((T.FIRST_NAME = S.FIRST_NAME) or (T.FIRST_NAME IS NULL and S.FIRST_NAME IS NULL)) and
      ((T.LAST_NAME = S.LAST_NAME) or (T.LAST_NAME IS NULL and S.LAST_NAME IS NULL)) and
      ((T.EMAIL = S.EMAIL) or (T.EMAIL IS NULL and S.EMAIL IS NULL)) and
      ((T.PHONE_NUMBER = S.PHONE_NUMBER) or (T.PHONE_NUMBER IS NULL and S.PHONE_NUMBER IS NULL)) and
      ((T.HIRE_DATE = S.HIRE_DATE) or (T.HIRE_DATE IS NULL and S.HIRE_DATE IS NULL)) and
      ((T.JOB_ID = S.JOB_ID) or (T.JOB_ID IS NULL and S.JOB_ID IS NULL)) and
      ((T.SALARY = S.SALARY) or (T.SALARY IS NULL and S.SALARY IS NULL)) and
      ((T.COMMISSION_PCT = S.COMMISSION_PCT) or (T.COMMISSION_PCT IS NULL and S.COMMISSION_PCT IS NULL)) and
      ((T.MANAGER_ID = S.MANAGER_ID) or (T.MANAGER_ID IS NULL and S.MANAGER_ID IS NULL)) and
      ((T.DEPARTMENT_ID = S.DEPARTMENT_ID) or (T.DEPARTMENT_ID IS NULL and S.DEPARTMENT_ID IS NULL))
    I modified the code to the following :
    insert /*+ append */ into HR.I$_EMPLOYEES_TGT
      EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    select
    EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    from (
    select 
      EMPLOYEES.EMPLOYEE_ID EMPLOYEE_ID,
      EMPLOYEES.FIRST_NAME FIRST_NAME,
      EMPLOYEES.LAST_NAME LAST_NAME,
      EMPLOYEES.EMAIL EMAIL,
      EMPLOYEES.PHONE_NUMBER PHONE_NUMBER,
      EMPLOYEES.HIRE_DATE HIRE_DATE,
      EMPLOYEES.JOB_ID JOB_ID,
      EMPLOYEES.SALARY SALARY,
      EMPLOYEES.COMMISSION_PCT COMMISSION_PCT,
      EMPLOYEES.MANAGER_ID MANAGER_ID,
      EMPLOYEES.DEPARTMENT_ID DEPARTMENT_ID,
      'I' IND_UPDATE
    from HR.EMPLOYEES   EMPLOYEES
    where (1=1)
    In the same way for other steps in the same session I got some errors and I fixed them by changing the code. But the problem is that where can I change this so that it will be a permanent solution.
    Thanks,
    Anvesh

  • How to make a Root Switch in STP

    I have got 6509 as main & 3750 as standby, running hsrp, enabled STP also, now my question is, how do i make my 6509 as root switch & what benefit do i get once if i make it as root?
    following are the summary
    6509
    Cat6509> (enable) sh spantree summary
    MAC address reduction: disabled
    Root switch for vlans: none.
    Global loopguard is disabled on the switch.
    Global portfast is disabled on the switch.
    BPDU skewing detection disabled for the bridge.
    BPDU skewed for vlans: none.
    Portfast bpdu-guard disabled for bridge.
    Portfast bpdu-filter disabled for bridge.
    Uplinkfast disabled for bridge.
    Backbonefast disabled for bridge.
    3750
    Cisco3750-Standby#sh spanning-tree summary
    Switch is in pvst mode
    Root bridge for: none
    Extended system ID is enabled
    Portfast Default is disabled
    PortFast BPDU Guard Default is disabled
    Portfast BPDU Filter Default is disabled
    Loopguard Default is disabled
    EtherChannel misconfig guard is enabled
    UplinkFast is disabled
    BackboneFast is disabled
    Configured Pathcost method used is short

    The final topology computed by the spanning tree will look like a star centered on the root bridge. You'd rather make sure your root (and even a secondary root, in case of failure of the primary) are located in something that looks like the center of your network. If most of the traffic goes to a default gateway or to some servers from edge bridges, the root must be close to this point. Letting STP decide where you root bridge is not a good idea because you don't want the traffic between two of your core switches to go through an access switch for instance;-) Also, if a switch with a default configuration is inserted in your network, you don't want it to be a possible root because it could cause a complete reconvergence of your bridged domain. It is thus better (and so simple) to configure a root bridge.
    As already mentioned, just reducing the priority to low value is enough to select a root bridge.
    Regards,
    Francois

  • How to make a graphic rotate using FCP7

    I am trying to apply a basic transition/effect to a graphic on my project within FCP7. I want to make an icon rotate like this: http://www.ita.doc.gov/hrm/awards/images/bronze.gif but without the "shine", just a simple rotation on itself.
    Is this possible from within FCP7? If so, how do I do it?
    I looked online but couldnt find exactly what I wanted.

    Hi,
    just saw this post.
    I have made some slight changes to the code of Basic 3D and I have here for you and everyone who needs it a version called Basic3D plus.
    It comes with a checkbox that allows you to animate automatically the Y rotation (no need to keyframe anything), then you can decide the speed by changing (increasing/decreasing) the Y axis Angle values. The higher the faster, the lower the slower.
    Uncheck the box and the Y axis angle will work as normal again.
    I tested it quickly and it should work for you all too.
    This version of Basic 3D can be downloaded here:
    http://www.videonline.co.uk/Forums/Basic3Dplus.zip
    After downloading the plug-in drag it to Macintosh HD / Library / Application Support / Final Cut Pro System Support / Plugins folder. Finally restart Final Cut Pro and the Basic3D plus should show up in the effects menu > Perspective Folder
    Best wishes,
    Luca

  • How to Make a File or Folder Permanently Visible? How Do I Accomplish This?

    Somehow, my Time Machine harddrive has disappeared from my desktop. I was wondering how I would go about to make (and keep) this permanently visible?

    Hold down the Control key when you click on the icon for the File or Folder and select "Remove from Sidebar"

  • How to make these graphics from a flash game (link supplied)

    http://marketplace.tutsplus.com/item/design-and-develop-a-flash-shooting-gallery-game/full _screen_preview/132245
    Hi - I have seen this game and I like the shooter cross hair and the letters - enter your name - just wondering how you create them. I'm a neewbie.

    Before deciding that "InDesign IS software to create any epub with", make sure to read the "General EPubs" thread (http://forums.adobe.com/thread/848122?tstart=0).
    Lots of opinions in there, the most prevailing seems to be that InDesign is currently NOT "software to create epubs with" (which, in my experienced opinion, is true) BUT nevertheless it SHOULD be (which is ... debatable ...).
    (Why? Because primarily, and by design, and intention, InDesign is Document Layout software. Counter-argument: "but an e-pub is also a document!" Sure, but so is a JPEG image -- and using InDesign to create or edit JPEGs with is using the wrong tool. InDesign is great at creating Old Style "tree killer" documents. Its epub export options are not meant -- one hopes! -- to be used out of the box, but merely to facilitate a translation from a "killer tree" document towards an epub. Everything else should be fixed, enhanced, made mobi/kindle/ibooks friendly (etc.) using the appropriate software, and lots of background knowledge.)

  • How to make file associations in XFCE permanent

    Hi,
    I have a problem with file associations in XFCE (Thunar, actually), because I can't make it permanent. After setting up, they work fine, but they change to default values after some time.
    Anyone with same problem?:|

    is it all file associations? maybe updating certain programs would do it or thunar itself but i seriously doubt it because config should still be the same

  • How to make the TV Guide Mode Permanent or your default

    Click "Menu" on your remote
    Scroll to "Settings" and click OK 
    Scroll to "Television" and click right arrow
    Scroll to "Last Viewed Guide State" and click right arrow
    Scroll to "Enable" and click OK
    Click "Guide" on your remote,
    Click "Options on your remote
    Scroll to the  the guide Mode you want,
    It will now be permanently your default

    Bloodangel05 wrote:
    Very good guide-They didnt sticky it
    Nope, but I've bookmarked it for future reference

  • How to make iPhone side switch vibrate or silent?

    I rarely use the ringer on my iPhone. I frequently need to switch between silent and vibrate though. Can I make this easier by making the side switch vibrate and silent rather than silent and ringer?

    No, you can't change the function of that switch. Sorry.

  • How to make this graphic

    This artwork caught my eye this morning on Behance.com. You can also find it at:
    http://www.behance.net/gallery/UNICEF-ZEROawards/15165783
    Despite years of experience with Illustrator and other vector drawing programs, I'm stumped. Blends, envelopes, warp effects, clipping masks all have given me crude and unsatisfactory approximations. Can anyone discern how it's been constructed? C'mon, make me feel less inadequate….
    Thanks in advance.

    Hmm. Well, I'm not one to look for one-stop, automated solutions, I assure you, but doesn't this have the look of some clever sequence of digital operations? So beautifully orderly and symmetrical but with decidedly complex patterns. Considerably more detailed, more intricate (and more perfect) than the lovely Coca Cola project.
    Somehow I think I'm just not "seeing" the techniques underlying the art. But maybe you're right, Monika. Maybe a manual arrangement by a gifted artist with an excellent eye.

  • How to make "show all menu items" permanent?

    Does anyone know a preference setting in CS4 to make "show all menu items" enabled all the time?  I use certain menu items regularly which require the extra step of chosing "show all menu items" before they will appear in the menu.  I would love to change this irriating setting.  I have searched preferences over and over and I know there must be one that addresses it, but I cannot spot it.

    The essentials workspace should show all the menu items:
    Window>Workspace>Essentials.
    If you want a different layout or to add panels to the workspace, rearrange/add
    to the workspace (panels) and then save a new workspace under a different name.
    Window>Workspace>Save Workspace.
    MTSTUNER

  • How to make  program control switch between 2 computers

    Hi all,
    I Am a student, I have a question.
    I want to write a networking program which should run on 2 computers by switching once for every 5 seconds. That is, the program should run on a computer for 5 seconds and the same control should be executed on some other computer. The program(which keeps switching between the 2 computers ) keeps sending and receiving some information to the 3rd computer all the time using UDP.
    Can some one help me the steps or idea in coding this program .
    Thank you,
    Ravi

    You should take a look at http://www.greenteatech.com/, particularly the GT Native Execution Tool

Maybe you are looking for

  • When I try to adjust the date and time of an event by selecting Photos from iPhoto, the year I enter is altered.

    I have images in iPhoto from an older digital camera which did not record the date and time.  In iPhoto, with an event selected, I have tried to adjust the date and time by choosing Photo.  When I adjust the date and check Modify original files, it m

  • What are the benefits of having two video cards?

    I currently have a PNY Nvidio quadro FX 3800 video card installed.  I have another card that is not installed.  It is an EVGA E-GEforce 8800GT.  I only want to run two monitors.  I am thinking with two video cards I will have live preview on screen d

  • Running flash objects in forms 6i

    Dear all, I am trying to run a flash object (.swf) file in my forms. My version of oracle forms 6i is Forms [32 Bit] Version 6.0.8.11.3 (Production) I created a new forms then placed an active X control Then by selecting its properties i select Shock

  • Imac randomly shuts off

    Hey so my imac will randomly shut down. I will be using it for about an hour just surfing the web and it shuts off with no warning or anything. I turn it back on and maybe another hour and a half later shuts off again. I am trying to update to the 10

  • Cursor not fetching the latest value in the loop.

    Hi! I'm facing a peculear problem. I've a procedure which will check the total number of records in a loop. It will fetch that value. If that value mathced with certain condition then the outer loop execution need to stop. Here is my script - <<Outer