[solved]script fails when changing profile through powerdevil.

i use ondemand governor and i want to change up_threshold value.
Whenever i change profile through powerdevil up_threshold gets its default vaule of 80.
what i did was to create a script named threshold containing the lines:
#!/bin/bash
sudo sh -c 'echo 50 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold'
i have also set through /etc/sudoers that this script is passwordless for my user.
if i run the script, it successfully changes the value. It also runs successfully if i put it in startup.
My problem is that it fails to run when i choose it to run when a profile loads through powerdevil. I am refering to the feature shown below :
at first i thought that this function has a problem. so i chose to run kate, and when i changed profile, kate started immediately. So i guess that there is a problem with my script.
Any ideas?
Last edited by mechmg93 (2009-10-20 20:14:30)

I hope someone reads this thread also its already marked as solved...
Anyway, i would like to use CPU frequency scaling, but in the powermanagement settings,
i cant shoose anything for frequency scaling.
What do i have to do to be able to set "ondemand" or "always lowest frequency"?
Wich daemons and/or modules do i have to activate to change the frequency policy?
Would be very nice if someone could help me.

Similar Messages

  • Script fails when passing values from pl/sql to unix variable

    Script fails when passing values from pl/sql to unix variable
    Dear All,
    I am Automating STATSPACK reporting by modifying the sprepins.sql script.
    Using DBMS_JOB I take the snap of the database and at the end of the day the cron job creates the statspack report and emails it to me.
    I am storing the snapshot ids in the database and when running the report picking up the recent ids(begin snap and end snap).
    From the sprepins.sql script
    variable bid number;
    variable eid number;
    begin
    select begin_snap into :bid from db_snap;
    select end_snap into :eid from db_snap;
    end;
    This fails with the following error:
    DB Name DB Id Instance Inst Num Release Cluster Host
    RDMDEVL 3576140228 RDMDEVL 1 9.2.0.4.0 NO ibm-rdm
    :ela := ;
    ERROR at line 4:
    ORA-06550: line 4, column 17:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    ( - + case mod new not null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev sum variance
    execute forall merge time timestamp interval date
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string> pipe
    The symbol "null" was substituted for ";" to continue.
    ORA-06550: line 6, column 16:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    ( - + case mod new not null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev su
    But when I change the select statements below the report runs successfully.
    variable bid number;
    variable eid number;
    begin
    select '46' into :bid from db_snap;
    select '47' into :eid from db_snap;
    end;
    Even changing the select statements to:
    select TO_CHAR(begin_snap) into :bid from db_snap;
    select TO_CHAR(end_snap) into :eid from db_snap;
    Does not help.
    Please Help.
    TIA,
    Nischal

    Hi,
    could it be the begin_ and end_ Colums of your query?
    Seems SQL*PLUS hs parsing problems?
    try to fetch another column from that table
    and see if the error raises again.
    Karl

  • [Workaround] LCD brightness get 100% when changes profile energy

    Hi:
    I'm running arch in a Vaio FZ-21Z with KDE. When the profile energy changes brightness change to 100%.
    I have a 'nvclock -S 50' set at kde startup init and it's OK but the problem is profile change
    There is any config file to set brightness at kde power-manager?
    Thanks.
    Last edited by SpongeBob (2010-10-15 15:54:13)

    Well..
    At the end I found a workaround to solve this problem. It's very obvious and dirty but it works.
    In Powermanagement->Edit Profiles->CPU&System there is a line to put a command when the profile loads, so I type this command:
    smartdimmer -s 20 (o whatever value what you want)
    I'm still having the problem with fullscreen flashvideos raise to100% brightness, but for now I can change energy profiles without problems.
    Regards
    Last edited by SpongeBob (2010-10-15 15:53:06)

  • Generated Script fails when attempting to drop Foreign Key Constraint

    I made some changes to my database.  I used the generate script process to generate a drop and create script to these tables.  The generated script first ran Alter Table Drop Constraints to drop the Foreign Key constraints and then did Drop tables
    and then did create table to construct the script with the proper changes.
    However, when we attempted to run the script, all of the Drop constraint statements failed reporting that there was no such constraint.  Then the drop table scripts failed because of the existence of the very foreign key constraints  that SQL Server
    had just stated did not exist.
    BOL states that the statement "DROP { [ CONSTRAINT ] constraint_name | COLUMN column_name } " is  "Used in a CHECK, FOREIGN KEY, UNIQUE, or PRIMARY KEY constraint."  So why couldn't I drop those specified Foreign
    Key constraints in a script generated by SQL Server itself.
    Edward R. Joell MCSD MCDBA

    Are you sure there are no Constraints on other tables which are causing your issue?
    If a foreign key from table abc refences table def it will cause the drop to fail.
    If your script is already attempting to drop such constraints, have you checked that they are dropping from the correct table (and not the table that would be the target of the drop)?
    I discovered two things yesterday and one thing today about generated scripts.
    When you generated a script to drop and create a set of tables and you mark it to include foreign keys, the generated script will first create a set a scripts to drop the foreign keys , then will create a set of statements for each table that will,
    first, again drop the same foreign keys that it did earlier, then drop the table.  If there is no "if exists" statement for each statement, the drop constraint will fail.
    The script generated by the generate scripts wizard, even when you set the Drop and Create option in the advanced tab, unlike the scripts generated when you right click a table and select Drop and Create from the context menu, does not by default create
    an "If Exists" statement before the attempt to drop anything.
    You can make the generate Scripts wizard generate an "if exists" statement by changing the "Include if NOT EXISTS" option on the advanced tab to true. However, while the script generator will find all of the foreign keys that show that
    table as the parent_id, it will not show the FK constraints on tables which are not being dropped and created.  Nor can you find them by querying the sys.foreign_keys view using the standard type of Foreign Key "If Exists" statement because
    it would do a query like
    SELECT *
    FROM sys.foreign_keys
    WHERE object_id = OBJECT_ID(N'[dbo].[FK_prc_ContractSubLines_prc_PRSubLines]')
    AND parent_object_id = OBJECT_ID(N'[dbo].[prc_ContractSubLines]')
    And the script generator does not care even if you show an option like "Generate Scripts For Dependent Objects", it will not generate a drop script for the foreign constraints on other tables that reference your table.  I have not even found
    a way to get back the results of a query on the sys.foreign_keys view that will show those keys that reference your table. The only thing I been able to do is to open the table in design and check out the list of relationships in your table and see open each
    relationship and see which table is the "foreign key table" rather than the primary key table. This will make writing drop and create scripts very very long and tedious. As you would have to  create addional Alter tables scripts to do a drop
    and create foreign keys on each table referencing yours and manually place them into your scripts at correct locations. This is almost as bad as the Oracle SQL Developer's generate script results which (at least in 2010) so screws up the order of the generated
    script that it is trying to create foreign keys on tables it has not created yet.
    So Patrick I see that you thought about the foreign keys on other tables.  I wish I had read your post before spending the morning troubleshooting this issue based on this morning's script that ran and crashed embarrassingly. 
    I would like to know if someone has a query to reveal all of the foreign keys that reference your table from another table using the sys views.  As it is I have to open each table in design to get a list of FKs that reference it.
    Edward R. Joell MCSD MCDBA

  • Run script failed when compile for device

    Hello,
    I run a perl script at build time, in order to insert svn revision of my code into info.plist (CFBundleVersion)
    It is working except when I build for the device.
    I got a codesign error.
    myApp.app: object file format invalid or unsuitable
    Do you have an idea ?
    Thanks a lot.
    Thierry

    Yes.
    OK, I know it's not supposedly a 'supported' development platform for iPhone but it's been doing me just fine so far.
    I managed to figure out (through endless googling) that there is no NSPoint or NSRect on iPhone (or the associated methods), you have to use CGRect and CGPoint instead (which apparently are identical internally).
    http://www.iphonexe.com/blog/?p=3

  • [SOLVED]Get [FAIL] when loading user specified modules.

    That is it, when the system is booting i get a [FAIL] message when loading user specified modules after upgrading udev, and the kmod new module handling or something as say in the news. I dont have a modprobe.conf or a modprobe.conf.pacsave file either and creating a modprobe.conf file doesn't solve the problem. The strange thing is that the modules are loaded anyways. I mean the ones that are specified in rc.conf. I dont know if the system [FAIL] to load that modules or others...The system works fine for now too.
    Thanks.
    PD: sorry if you notice my poor english.
    Last edited by Hyugga (2012-01-22 23:09:02)

    I had the same problem and removing the governor performance from rc.conf solved the problem. I tried however to remove both governors and only leave powernow-k8 (this is the only one that works for me) leaving rc.conf like this:
    MODULES=(brcmsmac powernow-k8)
    When I boot the laptop and check which governors are available and being used I get the following:
    [netlak@soulrebel ~]$ cpufreq-info
    cpufrequtils 008: cpufreq-info (C) Dominik Brodowski 2004-2009
    Report errors and bugs to [email protected], please.
    analyzing CPU 0:
    driver: powernow-k8
    CPUs which run at the same hardware frequency: 0
    CPUs which need to have their frequency coordinated by software: 0
    maximum transition latency: 8.0 us.
    hardware limits: 800 MHz - 2.10 GHz
    available frequency steps: 2.10 GHz, 1.50 GHz, 800 MHz
    available cpufreq governors: performance
    current policy: frequency should be within 800 MHz and 2.10 GHz.
    The governor "performance" may decide which speed to use
    within this range.
    current CPU frequency is 2.10 GHz.
    This like as if the ondemand governor would not be available but when unplugging the laptop and check again I get this:
    [netlak@soulrebel ~]$ cpufreq-info
    cpufrequtils 008: cpufreq-info (C) Dominik Brodowski 2004-2009
    Report errors and bugs to [email protected], please.
    analyzing CPU 0:
    driver: powernow-k8
    CPUs which run at the same hardware frequency: 0
    CPUs which need to have their frequency coordinated by software: 0
    maximum transition latency: 8.0 us.
    hardware limits: 800 MHz - 2.10 GHz
    available frequency steps: 2.10 GHz, 1.50 GHz, 800 MHz
    available cpufreq governors: ondemand, performance
    current policy: frequency should be within 800 MHz and 2.10 GHz.
    The governor "ondemand" may decide which speed to use
    within this range.
    current CPU frequency is 800 MHz.
    This shows that the ondemand module can be autoloaded when needed, so I leave rc.conf only with powernow-k8.
    Thanks for your help.

  • How to solve : Conversion failed when converting date and/or time from character string

    hi there
    my query :
    cmd = new SqlCommand("SELECT RTRIM(invoiceNo) as [Order No.],RTRIM(InvoiceDate) as [Order Date],RTRIM(SubTotal) as [SubTotal],RTRIM(VATPer) as [Vat+ST %],RTRIM(VATAmount) as [VAT+ST Amount],RTRIM(DiscountPer) as [Discount %],RTRIM(DiscountAmount) as [Discount Amount],RTRIM(GrandTotal) as [Grand Total],RTRIM(TotalPayment) as [Total Payment],RTRIM(PaymentDue) as [Payment Due] from Invoice_Info where InvoiceDate between @d1 and @d2 order by InvoiceDate desc", con);
    cmd.Parameters.Add("@d1", SqlDbType.DateTime, 30, "InvoiceDate").Value = dtpInvoiceDateFrom.Value.Date;
    cmd.Parameters.Add("@d2", SqlDbType.DateTime, 30, "InvoiceDate").Value = dtpInvoiceDateTo.Value.Date;
    i use date timepicker / vs2010 / sql server 2008 r2 
    tnx

    i change the type of my column(InvoiceDate column) to isDate but it doesnt work and error again ....
    What exactly does this mean? What was the data type before the change? What is it now? Can you show us the CREATE TABLE statement for the table?
    i want send my source code /database for you and you chek it plz
    Generally, you should not expect people to solve problem over mail. You can upload code and database to Dropbox, Skydrive or similar service if you people to look at it.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • [SOLVED] makepkg fails when building libdivecomputer-git from AUR.

    I'm not sure where to start debugging this failure as I'm a newb when it comes to compiling packages.
    Can anyone point me in the right direction?
    [dan@arch libdivecomputer-git]$ makepkg -s PKGBUILD
    ==> Determining latest git revision...
    -> Version found: 20120714
    ==> Making package: libdivecomputer-git 20120714-1 (Sat Jul 14 13:43:22 EST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    ==> Extracting Sources...
    ==> Starting build()...
    ==> Connecting to GIT server....
    Cloning into 'libdivecomputer'...
    remote: Counting objects: 3995, done.
    remote: Compressing objects: 100% (1563/1563), done.
    remote: Total 3995 (delta 3240), reused 2983 (delta 2429)
    Receiving objects: 100% (3995/3995), 739.19 KiB | 59 KiB/s, done.
    Resolving deltas: 100% (3240/3240), done.
    ==> GIT checkout done or server timeout
    ==> Starting make...
    Cloning into '/home/dan/libdivecomputer-git/src/libdivecomputer-build'...
    done.
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
    libtoolize: copying file `m4/libtool.m4'
    libtoolize: copying file `m4/ltoptions.m4'
    libtoolize: copying file `m4/ltsugar.m4'
    libtoolize: copying file `m4/ltversion.m4'
    libtoolize: copying file `m4/lt~obsolete.m4'
    configure.ac:25: installing './config.guess'
    configure.ac:25: installing './config.sub'
    configure.ac:21: installing './install-sh'
    configure.ac:21: installing './missing'
    examples/Makefile.am: installing './depcomp'
    automake: warnings are treated as errors
    /usr/share/automake-1.12/am/ltlibrary.am: warning: 'libdivecomputer.la': linking libtool libraries using a non-POSIX
    /usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac'
    src/Makefile.am:4: while processing Libtool library 'libdivecomputer.la'
    autoreconf: automake failed with exit status: 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    Last edited by bergersau (2012-07-18 03:57:09)

    You may want to notify the maintainer by posting a comment on https://aur.archlinux.org/packages.php?ID=52648

  • How do I solve "import failed" when trying to import folders to the organizer?

    When I try to import folders to the organizer I get an "import failed" message.  Then it says that files or folders selected did not contain any supported file types or they are already in the catalog.  I don't think it can be the latter because I just installed it today and haven't been able to import any files or folders.  Can anyone give me troubleshooting ideas; I can't find any in the help menus.  Thanks a bunch!!

    The JPG data might be corrupted just enough for PSE to choke on the image, although other programs can open the image OK.  Try opening one of the images in XnView, for instance, and saving that image; which will re-write the JPG data correctly.  Then see if Organizer can import it.
    Ken

  • The Federation Configuration Assistant failed when changing Transient Data

    We are trying to set the Transient Data in store to RDBMS. The Federation Configuration Assistant failed during that. We are using OC4j. Here is the information from logs.
    === ODM Data Collection ===
    10/01/06 15:06:25: INFO oracle.security.fed.admin.install.InstallLog - Initializing
    10/01/06 15:06:26: INFO oracle.security.fed.admin.install.InstallLog - Processing J2EE Descriptors
    10/01/06 15:06:26: INFO oracle.security.fed.admin.install.InstallLog - Unzipping the OIF files
    10/01/06 15:06:29: INFO oracle.security.fed.admin.install.InstallLog - Modifying the J2EE Descriptors
    10/01/06 15:06:30: INFO oracle.security.fed.admin.install.InstallLog - Building the OIF Application file
    10/01/06 15:06:33: INFO oracle.security.fed.admin.install.InstallLog - OIF Application file built
    10/01/06 15:06:33: INFO oracle.security.fed.admin.install.InstallLog - Locating the SQL scripts
    10/01/06 15:06:33: INFO oracle.security.fed.admin.install.InstallLog - Connecting to the RDBMS
    10/01/06 15:06:34: INFO oracle.security.fed.admin.install.InstallLog - Reading the SQL statements
    10/01/06 15:06:35: INFO oracle.security.fed.admin.install.InstallLog - RDBMS Initialization for ShareID complete
    10/01/06 15:06:35: INFO oracle.security.fed.admin.install.InstallLog - Processing J2EE ShareID Descriptors
    10/01/06 15:06:35: INFO oracle.security.fed.admin.install.InstallLog - Unzipping the ShareID files
    10/01/06 15:06:36: INFO oracle.security.fed.admin.install.InstallLog - Modifying the ShareID J2EE Descriptors
    10/01/06 15:06:36: INFO oracle.security.fed.admin.install.InstallLog - Building the ShareID Application file
    10/01/06 15:06:37: INFO oracle.security.fed.admin.install.InstallLog - ShareID Application file built
    10/01/06 15:06:37: INFO oracle.security.fed.admin.install.InstallLog - Refreshing OC4J Configuration
    10/01/06 15:06:38: INFO oracle.security.fed.admin.install.InstallLog
    - An error was encountered while refreshing the OC4J configuration: null returned: 1
    null returned: 1
    at org.apache.tools.ant.taskdefs.ExecTask.runExecute(ExecTask.java:579)
    at org.apache.tools.ant.taskdefs.ExecTask.runExec(ExecTask.java:605)
    at org.apache.tools.ant.taskdefs.ExecTask.execute(ExecTask.java:438)
    at oracle.security.fed.admin.install.InstallUtils.processRefreshOC4J(Unknown Source)
    at oracle.security.fed.admin.install.OSFSInstall.processReinstall(Unknown Source)
    at oracle.security.fed.admin.install.OSFSInstall.execute(Unknown Source)
    at oracle.security.fed.admin.install.OSFSInstall.main(Unknown Source)
    10/01/06 15:06:38: INFO oracle.security.fed.admin.install.InstallLog - The Federation Configuration Assistant failed
    10/01/06 15:06:38: INFO oracle.security.fed.admin.install.InstallLog - A log of the Federation Configuration Assistant is available at /opt/oracle/oif/product/10.1.4/fed/log/federation-install.log

    Hi,
    Once again My advice is just to install AS first then Db.
    Ok about Your problem did U read pre-install steps?.
    On metalink.oracle.com U can get pre-install scripts for linux.
    What this script exactly do, it checks everything for U before installation.
    ex. file system, libraries, patches.
    Here U get the link,
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:2005961391719325579::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,283749.1,1,1,1,helvetica
    OR just go to http:// metalink.oracle.com, then search for pre-install script
    U 'll get different kinds of scripts for different OS.
    select the script which suitable for your OS.
    Run this script & check your output. if U get any error just try to repair this before U start the installation.
    Hear from U,
    Regards,
    Hamdy

  • [Solved] Xorg fails when using Vmware.

    I've recently ran into a problem with ArchLinux running as a guest in VMware,
    I'd try load xorg and it would crash so I thought I'd install another version of ArchLinux in another machine.
    All went well until I installed
    xf86-video-vmware & svga-dri & open-vm-tools and added # MODULES = (... vmwgfx ...)
    So I'm finding it hard to figure out if this is a common issue (I've googled around and couldn't find anything), or something to do with one of the packages I've installed.
    Suggestions as to what I can do to fix this problem would be appreciated,
    Thanks and have a nice day.
    ~Compulsed
    [ 132.495]
    X.Org X Server 1.12.0
    Release Date: 2012-03-04
    [ 132.495] X Protocol Version 11, Revision 0
    [ 132.495] Build Operating System: Linux 3.2.9-1-ARCH x86_64
    [ 132.495] Current Operating System: Linux NiggerVM 3.2.11-1-ARCH #1 SMP PREEMPT Thu Mar 15 09:19:02 CET 2012 x86_64
    [ 132.496] Kernel command line: root=/dev/disk/by-uuid/a9ad4c3b-f6b5-4cb3-9355-17eba48a92d7 ro
    [ 132.496] Build Date: 05 March 2012 05:59:48AM
    [ 132.496]
    [ 132.496] Current version of pixman: 0.24.4
    [ 132.497] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 132.497] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 132.498] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Mar 21 18:40:19 2012
    [ 132.539] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 132.565] (==) No Layout section. Using the first Screen section.
    [ 132.565] (==) No screen section available. Using defaults.
    [ 132.565] (**) |-->Screen "Default Screen Section" (0)
    [ 132.565] (**) | |-->Monitor "<default monitor>"
    [ 132.565] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 132.565] (==) Automatically adding devices
    [ 132.565] (==) Automatically enabling devices
    [ 132.584] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 132.584] Entry deleted from font path.
    [ 132.584] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 132.584] Entry deleted from font path.
    [ 132.585] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 132.585] Entry deleted from font path.
    [ 132.585] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 132.590] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 132.590] Entry deleted from font path.
    [ 132.590] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 132.590] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 132.590] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 132.590] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 132.591] (II) Loader magic: 0x7cef60
    [ 132.591] (II) Module ABI versions:
    [ 132.591] X.Org ANSI C Emulation: 0.4
    [ 132.591] X.Org Video Driver: 12.0
    [ 132.591] X.Org XInput driver : 16.0
    [ 132.591] X.Org Server Extension : 6.0
    [ 132.598] (--) PCI:*(0:0:15:0) 15ad:0405:15ad:0405 rev 0, Mem @ 0xd0000000/134217728, 0xd8000000/8388608, I/O @ 0x000010d0/16, BIOS @ 0x????????/32768
    [ 132.599] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 132.599] (II) LoadModule: "extmod"
    [ 132.606] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 132.619] (II) Module extmod: vendor="X.Org Foundation"
    [ 132.619] compiled for 1.12.0, module version = 1.0.0
    [ 132.619] Module class: X.Org Server Extension
    [ 132.619] ABI class: X.Org Server Extension, version 6.0
    [ 132.619] (II) Loading extension MIT-SCREEN-SAVER
    [ 132.619] (II) Loading extension XFree86-VidModeExtension
    [ 132.619] (II) Loading extension XFree86-DGA
    [ 132.619] (II) Loading extension DPMS
    [ 132.619] (II) Loading extension XVideo
    [ 132.619] (II) Loading extension XVideo-MotionCompensation
    [ 132.619] (II) Loading extension X-Resource
    [ 132.619] (II) LoadModule: "dbe"
    [ 132.619] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 132.620] (II) Module dbe: vendor="X.Org Foundation"
    [ 132.620] compiled for 1.12.0, module version = 1.0.0
    [ 132.620] Module class: X.Org Server Extension
    [ 132.620] ABI class: X.Org Server Extension, version 6.0
    [ 132.620] (II) Loading extension DOUBLE-BUFFER
    [ 132.620] (II) LoadModule: "glx"
    [ 132.620] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 132.639] (II) Module glx: vendor="X.Org Foundation"
    [ 132.639] compiled for 1.12.0, module version = 1.0.0
    [ 132.640] ABI class: X.Org Server Extension, version 6.0
    [ 132.640] (==) AIGLX enabled
    [ 132.640] (II) Loading extension GLX
    [ 132.640] (II) LoadModule: "record"
    [ 132.640] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 132.640] (II) Module record: vendor="X.Org Foundation"
    [ 132.640] compiled for 1.12.0, module version = 1.13.0
    [ 132.640] Module class: X.Org Server Extension
    [ 132.640] ABI class: X.Org Server Extension, version 6.0
    [ 132.641] (II) Loading extension RECORD
    [ 132.641] (II) LoadModule: "dri"
    [ 132.641] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 132.659] (II) Module dri: vendor="X.Org Foundation"
    [ 132.659] compiled for 1.12.0, module version = 1.0.0
    [ 132.659] ABI class: X.Org Server Extension, version 6.0
    [ 132.659] (II) Loading extension XFree86-DRI
    [ 132.659] (II) LoadModule: "dri2"
    [ 132.659] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 132.659] (II) Module dri2: vendor="X.Org Foundation"
    [ 132.659] compiled for 1.12.0, module version = 1.2.0
    [ 132.659] ABI class: X.Org Server Extension, version 6.0
    [ 132.659] (II) Loading extension DRI2
    [ 132.659] (==) Matched vmware as autoconfigured driver 0
    [ 132.659] (==) Matched vesa as autoconfigured driver 1
    [ 132.659] (==) Matched fbdev as autoconfigured driver 2
    [ 132.659] (==) Assigned the driver to the xf86ConfigLayout
    [ 132.659] (II) LoadModule: "vmware"
    [ 132.659] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
    [ 132.928] (II) Module vmware: vendor="X.Org Foundation"
    [ 132.928] compiled for 1.12.0, module version = 12.0.1
    [ 132.928] Module class: X.Org Video Driver
    [ 132.928] ABI class: X.Org Video Driver, version 12.0
    [ 132.928] (II) LoadModule: "vesa"
    [ 132.928] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 132.941] (II) Module vesa: vendor="X.Org Foundation"
    [ 132.941] compiled for 1.11.99.903, module version = 2.3.0
    [ 132.941] Module class: X.Org Video Driver
    [ 132.941] ABI class: X.Org Video Driver, version 12.0
    [ 132.941] (II) LoadModule: "fbdev"
    [ 132.962] (WW) Warning, couldn't open module fbdev
    [ 132.962] (II) UnloadModule: "fbdev"
    [ 132.962] (II) Unloading fbdev
    [ 132.962] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 132.962] (II) vmware: driver for VMware SVGA: vmware0405, vmware0710
    [ 132.962] (II) VESA: driver for VESA chipsets: vesa
    [ 132.962] (--) using VT number 7
    [ 133.004] (WW) Falling back to old probe method for vesa
    [ 133.004] drmOpenDevice: node name is /dev/dri/card0
    [ 133.020] drmOpenDevice: open result is 8, (OK)
    [ 133.040] drmOpenByBusid: Searching for BusID PCI:0:15:0
    [ 133.040] drmOpenDevice: node name is /dev/dri/card0
    [ 133.051] drmOpenDevice: open result is 8, (OK)
    [ 133.051] drmOpenByBusid: drmOpenMinor returns 8
    [ 133.051] drmOpenByBusid: drmGetBusid reports pci:0000:00:0f.0
    [ 133.051] (--) vmware(0): DRM driver version is 2.3.0
    [ 133.051] (II) vmware(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 133.051] (EE) vmware(0): Device is not screen object capable.
    [ 133.073] (WW) vmware(0): Disabling 3D support.
    [ 133.073] (WW) vmware(0): Disabling Render Acceleration.
    [ 133.073] (WW) vmware(0): Disabling RandR12+ support.
    [ 133.073] (--) vmware(0): VMware SVGA regs at (0x10d0, 0x10d1)
    [ 133.073] (II) Loading sub module "vgahw"
    [ 133.073] (II) LoadModule: "vgahw"
    [ 133.074] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 133.084] (II) Module vgahw: vendor="X.Org Foundation"
    [ 133.084] compiled for 1.12.0, module version = 0.1.0
    [ 133.084] ABI class: X.Org Video Driver, version 12.0
    [ 133.084]
    [ 133.084] Backtrace:
    [ 133.084] 0: /usr/bin/X (xorg_backtrace+0x34) [0x567da4]
    [ 133.084] 1: /usr/bin/X (0x400000+0x16b8b9) [0x56b8b9]
    [ 133.084] 2: /lib/libpthread.so.0 (0x7f1a580d3000+0xf270) [0x7f1a580e2270]
    [ 133.084]
    [ 133.084] Segmentation fault at address (nil)
    [ 133.084]
    Fatal server error:
    [ 133.084] Caught signal 11 (Segmentation fault). Server aborting
    [ 133.084]
    [ 133.084]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 133.084] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 133.084]
    [ 133.099] Server terminated with error (1). Closing log file.
    Last edited by Compulsed (2012-03-22 08:18:12)

    This may not be very helpful, but see https://bbs.archlinux.org/viewtopic.php?id=137733 and https://bugs.archlinux.org/task/28882 .

  • Fail when creating routing through bapi.

    what are the mandatrory steps to create routing using bapi fm ( bapi_routing_create )?
    when i create routing using bapi it is showing the routing is created succesfull  but it is not updating in the standard table plko .

    after bapi use commit
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

  • [SOLVED] Samba fail when in VPN

    I'm trying to use smbnetfs to automount our corporate samba shares when I'm VPNed in via VPNC. I have been unable to gain access to samba shares when physically outside of the network. If I plug in my laptop to corporate switch, shares are mounted. When I VPN in from the outside, nothing. Can someone shed some light on this? Only thing I can think of is I get a local IP assigned (192.168.80.0 subnet) when I plug in physically to the network and maybe that is causing samba to refuse connection? But when I VPN in I connect to the gateway so I should be seen as local. Not sure what to do next.
    Thanks for the help.
    Last edited by mpz (2011-09-29 18:16:14)

    As a test, I installed gvfs-smb package for Nautilus and after reboot was able to mount my share. At that point, it was clear it was doable so after some reading, mount -t cifs //<ip>/<share> did the trick
    Edit: Still does not auto-mount with smbnetfs but at least I have access to my environment
    Last edited by mpz (2011-09-29 19:01:19)

  • Insufficient priv error when executing DBMS_ERRLOG through PLSQL

    Hi,
    I shall be grateful if any one of you give me the solution at the earliest.
    I have 2 schemas like A & B those are running on Oracle 10g rel2.
    As per my buz req' I need to create DML Error log table for 'A.T1' table in B schema using DBMS_ERRORLOG package.
    I have granted direct SELECT on A.T1 to B (...not through ROLE as it doesn't work in plsql)
    The problem is when i'm running the procedure,
    DBMS_ERRLOG.CREATE_ERROR_LOG('A.T1', 'err_T1', 'B');
    in SQL*Plus of B schema, it's creating the error log table successfully.
    But the same will get failed when i run this error log procedure with in a procedure owned by B schema.
    It throws 'ORA-01031: insufficient privileges'...
    I hope this is related to privilege issue which is working fine in SQL*Plus but NOT in PLSQL stored procedure.
    Awaiting your earliest reply.
    Thanks.
    - Ela

    >I dont think it's an issue with direct privilege. Actually the
    package is working when i execute it with in a ananymous block,
    but the same get fails when execute it through procedures...
    Role privs work with anonymous PL/SQL blocks. Does not work with stored PL/SQL code.
    SQL> create user user1 identified by user1 default tablespace users quota 2M on users;
    User created.
    SQL> grant create session to user1;
    Grant succeeded.
    SQL> create role user1_role;
    Role created.
    SQL> grant create table, create procedure to user1_role;
    Grant succeeded.
    SQL> grant user1_role to user1;
    Grant succeeded.
    SQL> connect user1/user1
    Connected.
    PL/SQL procedure successfully completed.
    SQL> create table x( n number );
    Table created.
    SQL> begin
    2 execute immediate 'create table y( n number )';
    3* end;
    SQL> /
    PL/SQL procedure successfully completed.
    SQL> create or replace procedure CreateTable is
    2 begin
    3 execute immediate 'create table z( n number )';
    4* end;
    SQL> /
    Procedure created.
    SQL> exec CreateTable
    BEGIN CreateTable; END;
    ERROR at line 1:
    ORA-01031: insufficient privileges
    ORA-06512: at "USER1.CREATETABLE", line 3
    ORA-06512: at line 1
    SQL>

  • Insufficient privilege error when executing DBMS_ERRLOG through PLSQL

    Hi,
    I shall be grateful if any one of you give me the solution at the earliest.
    I have 2 schemas like A & B those are running on Oracle 10g rel2.
    As per my buz req' I need to create DML Error log table for 'A.T1' table in B schema using DBMS_ERRORLOG package.
    I have granted direct SELECT on A.T1 to B (...not through ROLE as it doesn't work in plsql)
    The problem is when i'm running the procedure,
    DBMS_ERRLOG.CREATE_ERROR_LOG('A.T1', 'err_T1', 'B');
    in SQL*Plus of B schema, it's creating the error log table successfully.
    But the same will get failed when i run this error log procedure with in a procedure owned by B schema.
    It throws 'ORA-01031: insufficient privileges'...
    I hope this is related to privilege issue which is working fine in SQL*Plus but NOT in PLSQL stored procedure.
    Awaiting your earliest reply.
    Thanks.
    - Ela

    Hi,
    It's not an issue with direct privilege. Actually the package is working when i execute it with in a ananymous block, but the same get fails when execute it through procedures...
    Even we have given COMMENT ANY TABLE priv to the schema and that too didn't work out.
    awaiting your reply.
    -Saravanan

Maybe you are looking for

  • HT1414 How can I unlock my IPod that hasn't been connected to itunes yet and is disabled

    Myt daughter lock her Ipod before I could connect it toItunes and it is now diabled can someone help me unlock it.

  • Pass parameter from SSAS to Non-SSAS based report

    Hi, I want to pass a report from my mainreport based on a SSAS cube to my subreport which is a NON-ssas cube (relationel datasource) How can achieve this when my parameter is structured like this in SSAS: [ProjID].[ProjID].&[be]&[PRJ180127-00001]    

  • FB60 - Business Place Filed

    Dear Friends, Can anyone tell me how to avoid the default Basiness Place value whneever i go to the transaction FB60? Regards, Perumal

  • Artists not saved...

    Hello there, I have Spotify Premium but I didn't know that I should connect my Iphone on Spotify every month. Now my list of all artists is erased as it was not saved. What should I do to get it back? Thank you so much for your help...

  • How do I install Speech Analysis Models for PPro CC?

    I downloaded the International English speech analysis model from here: http://www.adobe.com/uk/products/premiere/extend.displayTab3.html Which says they're for CC as well as CS6. But when I install it, I don't get the option in CC to analyze clips u