Rc.conf and modules

Hello gentlemen,
I recently re-installed Arch on my PC and noticed that the modules section in rc.conf is empty. My previous Arch installation rendered several modules that were automatically loaded which was reflected in the modules section. Did I miss something?
Everything works as a charm though and I manually added the modules I wanted to start.

Mektub wrote:
new2arch,
when you have MOD_AUTOLOAD="yes" in /etc/rc.conf, the needed modules should automatically load.
You can always explicitly load (or not) specific ones.
F.e., I have:
MODULES=(!snd-pcsp)
Mektub
Mektub - I don't recall how that particular line in rc.conf looks like in my newly built system but I'll check it out later. I also don't remember if I had to explicitly change "AUTOLOAD=NO" into "YES" when I first installed Arch about a year ago, but on my laptop it says "yes" and there are a bunch of modules present.
I've disabled the system beeps in rc.conf, and also enabled fuse so I guess modules are autoloaded but by udev and those aren't being shown i rc.conf.

Similar Messages

  • Rc.conf and module parameters.. how?

    Im setting up my joystick which is 2 axis 6 button, the standard 'analog' module loads up as a 4 axis 4 button where 2 buttons are displayed as analog...
    I have it working perfect with
    modprobe analog map=gamepad
    is it possable to add the parameter in rc.conf?
    would it be as simple as MODULES=(joydev analog map=gamepad)?

    cheers tomk for pointing me in the right direction.
    got it sorted. Ive never had to edit the modprobe.conf in the past so it was a 'aaaaah thats what it does' kinda moment... simple really if you know where to look.
    cheers

  • Please help!  Strange problem with HTTPD.Conf and OC4J (I think)

    Hi,
    We have been trying to configure the 10g "infrastructure" Apache server/instance to work with our own authentication module, and as part of this, we need to configure a directory alias containing some of our JSPs. To do this, the only thing that we did was that we took the standard HTTPD.CONF file that got installed with the 10g AS installation, and added a small section at the end.
    However, we are finding that if our addition to the HTTPD.CONF is included, instead of the JSPs in our aliased directory being processed, Apache seems to be just serving the JSPs as text pages :(..
    If we remove the section at the end of the HTTPD.CONF, and point a browser to the unaliased path, the JSPs get processed correctly.
    I was wondering if anyone here might take a look at our HTTPD.CONF below, and tell me if you can see something there that might be causing this behavior? The section that we added is at the very end. We think that the problem might be something like the "order" of the directives, etc. in the HTTPD.CONF file may be such that the alias is taking priority ahead of the OC4J, or something like that.
    Thanks in advance, and apologies for the long message.
    Jim
    =====================================================
    ServerType standalone
    ServerRoot "/orad59/10gAS/infrastructure/Apache/Apache"
    PidFile /orad59/10gAS/infrastructure/Apache/Apache/logs/httpd.pid
    ScoreBoardFile /orad59/10gAS/infrastructure/Apache/Apache/logs/httpd.scoreboard
    Timeout 300
    KeepAlive On
    MaxKeepAliveRequests 100
    KeepAliveTimeout 15
    MinSpareServers 5
    MaxSpareServers 20
    StartServers 5
    MaxClients 150
    MaxRequestsPerChild 0
    LoadModule onsint_module libexec/mod_onsint.so
    LoadModule mmap_static_module libexec/mod_mmap_static.so
    LoadModule vhost_alias_module libexec/mod_vhost_alias.so
    LoadModule env_module libexec/mod_env.so
    LoadModule define_module libexec/mod_define.so
    LoadModule config_log_module libexec/mod_log_config.so
    LoadModule agent_log_module libexec/mod_log_agent.so
    LoadModule referer_log_module libexec/mod_log_referer.so
    LoadModule mime_magic_module libexec/mod_mime_magic.so
    LoadModule mime_module libexec/mod_mime.so
    LoadModule negotiation_module libexec/mod_negotiation.so
    LoadModule status_module libexec/mod_status.so
    LoadModule info_module libexec/mod_info.so
    LoadModule includes_module libexec/mod_include.so
    LoadModule autoindex_module libexec/mod_autoindex.so
    LoadModule dir_module libexec/mod_dir.so
    LoadModule cgi_module libexec/mod_cgi.so
    LoadModule asis_module libexec/mod_asis.so
    LoadModule imap_module libexec/mod_imap.so
    LoadModule action_module libexec/mod_actions.so
    LoadModule speling_module libexec/mod_speling.so
    LoadModule userdir_module libexec/mod_userdir.so
    LoadModule alias_module libexec/mod_alias.so
    LoadModule access_module libexec/mod_access.so
    LoadModule auth_module libexec/mod_auth.so
    LoadModule anon_auth_module libexec/mod_auth_anon.so
    LoadModule dbm_auth_module libexec/mod_auth_dbm.so
    LoadModule digest_module libexec/mod_digest.so
    LoadModule proxy_module libexec/libproxy.so
    LoadModule cern_meta_module libexec/mod_cern_meta.so
    LoadModule expires_module libexec/mod_expires.so
    LoadModule headers_module libexec/mod_headers.so
    LoadModule usertrack_module libexec/mod_usertrack.so
    LoadModule unique_id_module libexec/mod_unique_id.so
    LoadModule setenvif_module libexec/mod_setenvif.so
    LoadModule perl_module libexec/libperl.so
    LoadModule fastcgi_module libexec/mod_fastcgi.so
    <IfDefine SSL>
    LoadModule ossl_module libexec/mod_ossl.so
    </IfDefine>
    LoadModule wchandshake_module libexec/mod_wchandshake.so
    ExtendedStatus On
    Port 7777
    Listen 7777
    User oracle
    Group dba
    ServerAdmin [email protected]
    ServerName ge1ssd04.test.com
    DocumentRoot "/orad59/10gAS/infrastructure/Apache/Apache/htdocs"
    <Directory />
    Options FollowSymLinks MultiViews
    AllowOverride None
    </Directory>
    <Directory "/orad59/10gAS/infrastructure/Apache/Apache/htdocs">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    <IfModule mod_userdir.c>
    UserDir public_html
    </IfModule>
    <IfModule mod_dir.c>
    DirectoryIndex index.html
    </IfModule>
    AccessFileName .htaccess
    <Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    </Files>
    UseCanonicalName On
    <IfModule mod_mime.c>
    TypesConfig /orad59/10gAS/infrastructure/Apache/Apache/conf/mime.types
    AddEncoding x-compress Z
    AddEncoding x-gzip gz tgz
    AddLanguage ar .ar
    AddLanguage da .dk .da
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fi .fi
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage es .es_ES .es
    AddLanguage he .he .iw
    AddLanguage hu .hu
    AddCharset ISO-8859-8 .iso8859-8
    AddLanguage it .it
    AddLanguage ja .ja
    AddCharset ISO-2022-JP .jis
    AddLanguage ko .ko
    AddLanguage kr .kr
    AddCharset ISO-2022-KR .iso-kr
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt_BR .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage sk .sk
    AddLanguage sv .sv
    AddLanguage th .th
    AddLanguage tr .tr
    AddLanguage cz .cz .cs
    AddLanguage ro .ro
    AddLanguage ru .ru
    AddLanguage zh-cn .zh_CN
    AddLanguage zh-tw .zh_TW
    AddCharset Big5 .Big5 .big5
    AddCharset WINDOWS-1251 .cp-1251
    AddCharset CP866 .cp866
    AddCharset ISO-8859-5 .iso-ru
    AddCharset KOI8-R .koi8-r
    AddCharset UCS-2 .ucs2
    AddCharset UCS-4 .ucs4
    AddCharset UTF-8 .utf8
    <IfModule mod_negotiation.c>
    LanguagePriority ar en da nl et fi fr de el it ja ko kr no pl pt pt-br ro ru ltz ca es sk sv th tr zh-cn zh-tw zh-cn
    </IfModule>
    AddType application/x-tar .tgz
    </IfModule>
    DefaultType text/plain
    <IfModule mod_mime_magic.c>
    MIMEMagicFile /orad59/10gAS/infrastructure/Apache/Apache/conf/magic
    </IfModule>
    HostnameLookups Off
    ErrorLog "|/orad59/10gAS/infrastructure/Apache/Apache/bin/rotatelogs /orad59/10gAS/infrastructure/Apache/Apache/logs/error_log 43200"
    LogLevel warn
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%{Referer}i -> %U" referer
    LogFormat "%{User-agent}i" agent
    CustomLog "|/orad59/10gAS/infrastructure/Apache/Apache/bin/rotatelogs /orad59/10gAS/infrastructure/Apache/Apache/logs/access_log 43200" common
    ServerSignature On
    <IfModule mod_alias.c>
    Alias /icons/ "/orad59/10gAS/infrastructure/Apache/Apache/icons/"
    Alias /jservdocs/ "/orad59/10gAS/infrastructure/Apache/Jserv/docs/"
    Alias /javacachedocs/ "/orad59/10gAS/infrastructure/javacache/javadoc/"
    <IfModule mod_perl.c>
    Alias /perl/ "/orad59/10gAS/infrastructure/Apache/Apache/cgi-bin/"
    </IfModule>
    <Directory "/orad59/10gAS/infrastructure/Apache/Apache/icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    ScriptAlias /cgi-bin/ "/orad59/10gAS/infrastructure/Apache/Apache/cgi-bin/"
    <Directory "/orad59/10gAS/infrastructure/Apache/Apache/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    </IfModule>
    <IfModule mod_autoindex.c>
    IndexOptions FancyIndexing
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    ReadmeName README
    HeaderName HEADER
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    </IfModule>
    <IfModule mod_setenvif.c>
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
    </IfModule>
    <Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost ge1ssd04.test.com ge1ssd04
    </Location>
    SetEnv PERL5LIB "/orad59/10gAS/infrastructure/perl/lib/5.6.1:/orad59/10gAS/infrastructure/perl/lib/site_perl/5.6.1"
    <IfModule mod_perl.c>
    PerlModule Apache
    PerlModule Apache::Registry
    <Location /perl>
    SetHandler perl-script
    PerlHandler Apache::Registry
    AddHandler perl-script .pl
    Options +ExecCGI
    PerlSendHeader On
    </Location>
    </IfModule>
    <DirectoryMatch /WEB-INF/>
    Order deny,allow
    Deny from all
    </DirectoryMatch>
    <IfModule mod_fastcgi.c>
    Alias /fastcgi/ "/orad59/10gAS/infrastructure/Apache/fastcgi/"
    ScriptAlias /fcgi-bin/ "/orad59/10gAS/infrastructure/Apache/Apache/fcgi-bin/"
    <Directory "/orad59/10gAS/infrastructure/Apache/Apache/fcgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    SetHandler fastcgi-script
    <IfModule mod_ossl.c>
    SSLOptions +StdEnvVars
    </IfModule>
    </Directory>
    </IfModule>
    PassEnv ORACLE_HOME
    PassEnv LD_LIBRARY_PATH
    PassEnv NLS_LANG
    PassEnv TNS_ADMIN
    <IfModule mod_oprocmgr.c>
    <Location /oprocmgr-service>
    SetHandler oprocmgr-service
    Order deny,allow
    Deny from all
    Allow from localhost ge1ssd04.test.com ge1ssd04
    </Location>
    <Location /oprocmgr-status>
    SetHandler oprocmgr-status
    Order deny,allow
    Deny from all
    Allow from localhost ge1ssd04.test.com ge1ssd04
    </Location>
    </IfModule>
    include "/orad59/10gAS/infrastructure/Apache/Apache/conf/mod_oc4j.conf"
    include "/orad59/10gAS/infrastructure/Apache/Apache/conf/dms.conf"
    LoadModule rewrite_module libexec/mod_rewrite.so
    include "/orad59/10gAS/infrastructure/Apache/Apache/conf/ssl.conf"
    include "/orad59/10gAS/infrastructure/Apache/Apache/conf/mod_osso.conf"
    include "/orad59/10gAS/infrastructure/Apache/Apache/conf/oracle_apache.conf"
    # MY ADDITIONS TO HTTPD.CONF GO BELOW HERE....
    LoadModule my_auth_module /opt/myagent/apache/lib/libmy_apache_agent_mod_ssl.so
    AddModule my_apache_mod.c
    <IfModule my_apache_mod.c>
         MYAgentRoot /opt/myagent/apache
    </IfModule>
    <IfModule my_apache_mod.c>
    <Location />
    AuthType Basic
    Require valid-user
    AuthName MYAUTH
    </Location>
    </IfModule>
    <IfModule my_apache_mod.c>
    Alias /mydir/ "/orad59/10gAS/infrastructure/j2ee/OC4J_SECURITY/applications/sso/web/jsp/myagentdir/"
    <Directory "/orad59/10gAS/infrastructure/j2ee/OC4J_SECURITY/applications/sso/web/jsp/myagentdir/">
    AuthType Basic
    Require valid-user
    AuthName MYAUTH
    </Directory>
    </IfModule>

    Hi,
    I wanted to post what we found on this.
    As indicated in my original msg, we had an Alias directory in the httpd.conf. However, after thinking about the problem a bit, I think that the Alias was not the right thing to do.
    The Alias tells Apache to map a URL fragment to a FILESYSTEM location. Well, obviously, Apache only SERVES pages... it doesn't process JSPs.
    We switched to using a Redirect directive instead of the Alias, and things worked a little better, but we've run into a bit of a problem with "Redirect looping", but that's a different story :)...
    Jim

  • How can I disable those drivers and modules ?

    this is my
      cat  /proc/bus/input/devices
    $ cat /proc/bus/input/devices
    I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
    N: Name="AT Translated Set 2 keyboard"
    P: Phys=isa0060/serio0/input0
    S: Sysfs=/devices/platform/i8042/serio0/input/input0
    U: Uniq=
    H: Handlers=kbd event0
    B: EV=120013
    B: KEY=4 2000000 3803078 f800d001 feffffdf ffefffff ffffffff fffffffe
    B: MSC=10
    B: LED=7
    I: Bus=0010 Vendor=001f Product=0001 Version=0100
    N: Name="PC Speaker"
    P: Phys=isa0061/input0
    S: Sysfs=/devices/platform/pcspkr/input/input1
    U: Uniq=
    H: Handlers=kbd event1
    B: EV=40001
    B: SND=6
    I: Bus=0019 Vendor=0000 Product=0005 Version=0000
    N: Name="Lid Switch"
    P: Phys=PNP0C0D/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    U: Uniq=
    H: Handlers=event2
    B: EV=21
    B: SW=1
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=PNP0C0C/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
    U: Uniq=
    H: Handlers=kbd event3
    B: EV=3
    B: KEY=100000 0 0 0
    I: Bus=0019 Vendor=0000 Product=0003 Version=0000
    N: Name="Sleep Button"
    P: Phys=PNP0C0E/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4
    U: Uniq=
    H: Handlers=kbd event4
    B: EV=3
    B: KEY=4000 0 0 0 0
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=LNXPWRBN/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    U: Uniq=
    H: Handlers=kbd event5
    B: EV=3
    B: KEY=100000 0 0 0
    I: Bus=0019 Vendor=0000 Product=0006 Version=0000
    N: Name="Video Bus"
    P: Phys=LNXVIDEO/video/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
    U: Uniq=
    H: Handlers=kbd event6
    B: EV=3
    B: KEY=3e000b 0 0 0 0 0 0 0
    I: Bus=0011 Vendor=0002 Product=000f Version=0000
    N: Name="FSPPS/2 Sentelic FingerSensingPad"
    P: Phys=isa0060/serio1/input0
    S: Sysfs=/devices/platform/i8042/serio1/input/input7
    U: Uniq=
    H: Handlers=mouse0 event7
    B: EV=7
    B: KEY=670000 0 0 0 0 0 0 0 0
    B: REL=143
    I: Bus=0003 Vendor=1c4f Product=0002 Version=0110
    N: Name="USB USB Keykoard"
    P: Phys=usb-0000:00:1d.1-2/input0
    S: Sysfs=/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/input/input8
    U: Uniq=
    H: Handlers=kbd event8
    B: EV=120013
    B: KEY=10000 7 ff800000 7ff febeffdf f3cfffff ffffffff fffffffe
    B: MSC=10
    B: LED=7
    I: Bus=0003 Vendor=1c4f Product=0002 Version=0110
    N: Name="USB USB Keykoard"
    P: Phys=usb-0000:00:1d.1-2/input1
    S: Sysfs=/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.1/input/input9
    U: Uniq=
    H: Handlers=kbd event9
    B: EV=1f
    B: KEY=837fff 2c3027 bf004444 0 0 1 c04 b27c000 267bfa d941dfed 9e0000 0 0 0
    B: REL=40
    B: ABS=1 0
    B: MSC=10
    I: Bus=0003 Vendor=093a Product=2511 Version=0111
    N: Name="USB OPTICAL MOUSE"
    P: Phys=usb-0000:00:1d.2-2/input0
    S: Sysfs=/devices/pci0000:00/0000:00:1d.2/usb4/4-2/4-2:1.0/input/input10
    U: Uniq=
    H: Handlers=mouse1 event10
    B: EV=17
    B: KEY=70000 0 0 0 0 0 0 0 0
    B: REL=103
    B: MSC=10
    $ ca /proc/buvim /proc/bus/input/devices
    $ cat /proc/bus/input/devices
    I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
    N: Name="AT Translated Set 2 keyboard"
    P: Phys=isa0060/serio0/input0
    S: Sysfs=/devices/platform/i8042/serio0/input/input0
    U: Uniq=
    H: Handlers=kbd event0
    B: EV=120013
    B: KEY=4 2000000 3803078 f800d001 feffffdf ffefffff ffffffff fffffffe
    B: MSC=10
    B: LED=7
    I: Bus=0010 Vendor=001f Product=0001 Version=0100
    N: Name="PC Speaker"
    P: Phys=isa0061/input0
    S: Sysfs=/devices/platform/pcspkr/input/input1
    U: Uniq=
    H: Handlers=kbd event1
    B: EV=40001
    B: SND=6
    I: Bus=0019 Vendor=0000 Product=0005 Version=0000
    N: Name="Lid Switch"
    P: Phys=PNP0C0D/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    U: Uniq=
    H: Handlers=event2
    B: EV=21
    B: SW=1
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=PNP0C0C/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
    U: Uniq=
    H: Handlers=kbd event3
    B: EV=3
    B: KEY=100000 0 0 0
    I: Bus=0019 Vendor=0000 Product=0003 Version=0000
    N: Name="Sleep Button"
    P: Phys=PNP0C0E/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4
    U: Uniq=
    H: Handlers=kbd event4
    B: EV=3
    B: KEY=4000 0 0 0 0
    I: Bus=0019 Vendor=0000 Product=0001 Version=0000
    N: Name="Power Button"
    P: Phys=LNXPWRBN/button/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    U: Uniq=
    H: Handlers=kbd event5
    B: EV=3
    B: KEY=100000 0 0 0
    I: Bus=0019 Vendor=0000 Product=0006 Version=0000
    N: Name="Video Bus"
    P: Phys=LNXVIDEO/video/input0
    S: Sysfs=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
    U: Uniq=
    H: Handlers=kbd event6
    B: EV=3
    B: KEY=3e000b 0 0 0 0 0 0 0
    I: Bus=0011 Vendor=0002 Product=000f Version=0000
    N: Name="FSPPS/2 Sentelic FingerSensingPad"
    P: Phys=isa0060/serio1/input0
    S: Sysfs=/devices/platform/i8042/serio1/input/input7
    U: Uniq=
    H: Handlers=mouse0 event7
    B: EV=7
    B: KEY=670000 0 0 0 0 0 0 0 0
    B: REL=143
    I: Bus=0003 Vendor=1c4f Product=0002 Version=0110
    N: Name="USB USB Keykoard"
    P: Phys=usb-0000:00:1d.1-2/input0
    S: Sysfs=/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/input/input8
    U: Uniq=
    H: Handlers=kbd event8
    B: EV=120013
    B: KEY=10000 7 ff800000 7ff febeffdf f3cfffff ffffffff fffffffe
    B: MSC=10
    B: LED=7
    I: Bus=0003 Vendor=1c4f Product=0002 Version=0110
    N: Name="USB USB Keykoard"
    P: Phys=usb-0000:00:1d.1-2/input1
    S: Sysfs=/devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.1/input/input9
    U: Uniq=
    H: Handlers=kbd event9
    B: EV=1f
    B: KEY=837fff 2c3027 bf004444 0 0 1 c04 b27c000 267bfa d941dfed 9e0000 0 0 0
    B: REL=40
    B: ABS=1 0
    B: MSC=10
    I: Bus=0003 Vendor=093a Product=2511 Version=0111
    N: Name="USB OPTICAL MOUSE"
    P: Phys=usb-0000:00:1d.2-2/input0
    S: Sysfs=/devices/pci0000:00/0000:00:1d.2/usb4/4-2/4-2:1.0/input/input10
    U: Uniq=
    H: Handlers=mouse1 event10
    B: EV=17
    B: KEY=70000 0 0 0 0 0 0 0 0
    B: REL=103
    B: MSC=10
    I want to disable the drivers of
    FSPPS/2 Sentelic FingerSensingPad
    and
    N: Name="USB USB Keykoard"
    H: Handlers=kbd event9
    How can I do this? Thank you!

    slytux wrote:Search for the loaded modules using lsmod
    Remove them with rmmod or blacklist them in /etc/modprobe.d/modprobe.conf
    $> lsmod
    Module Size Used by
    fuse 56432 3
    ipv6 245073 12
    joydev 7631 0
    snd_seq_dummy 1079 0
    i915 283884 3
    b44 24725 0
    snd_intel8x0m 9344 1
    snd_intel8x0 22230 2
    snd_seq_oss 25040 0
    snd_seq_midi_event 4496 1 snd_seq_oss
    usbhid 32137 0
    snd_seq 41688 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    ssb 38660 1 b44
    drm_kms_helper 23055 1 i915
    snd_ac97_codec 87943 2 snd_intel8x0m,snd_intel8x0
    drm 142903 3 i915,drm_kms_helper
    snd_seq_device 4369 3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_pcm_oss 33630 0
    snd_mixer_oss 14654 2 snd_pcm_oss
    ac97_bus 762 1 snd_ac97_codec
    hid 60496 1 usbhid
    mmc_core 52845 1 ssb
    snd_pcm 59168 4 snd_intel8x0m,snd_intel8x0,snd_ac97_codec,snd_pcm_oss
    firewire_ohci 23260 0
    sr_mod 13217 0
    intel_agp 24075 2 i915
    yenta_socket 18785 0
    pcmcia 31744 1 ssb
    i2c_i801 6946 0
    i2c_algo_bit 4183 1 i915
    pcmcia_rsrc 9240 1 yenta_socket
    iTCO_wdt 8677 0
    snd_timer 15455 2 snd_seq,snd_pcm
    tifm_7xx1 3526 0
    firewire_core 42849 1 firewire_ohci
    ideapad_acpi 2820 0
    uhci_hcd 19059 0
    ehci_hcd 32812 0
    rfkill 12854 1 ideapad_acpi
    sg 20996 0
    tifm_core 3713 1 tifm_7xx1
    video 15857 1 i915
    pcmcia_core 9745 3 yenta_socket,pcmcia_rsrc,pcmcia
    container 1913 0
    iTCO_vendor_support 1433 1 iTCO_wdt
    output 1416 1 video
    usbcore 115770 4 usbhid,uhci_hcd,ehci_hcd
    i2c_core 15634 5 i915,drm_kms_helper,drm,i2c_i801,i2c_algo_bit
    snd 43283 14 snd_intel8x0m,snd_seq_oss,snd_intel8x0,snd_seq,snd_ac97_codec,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer
    cdrom 31410 1 sr_mod
    soundcore 4929 2 snd
    agpgart 22816 2 drm,intel_agp
    mii 3198 1 b44
    button 3746 1 i915
    processor 22776 1
    psmouse 49765 0
    crc_itu_t 1053 1 firewire_core
    ac 2329 0
    battery 7847 0
    wmi 6951 0
    thermal 9690 0
    pcspkr 1359 0
    evdev 6660 9
    serio_raw 3566 0
    snd_page_alloc 5949 3 snd_intel8x0m,snd_intel8x0,snd_pcm
    ext4 288101 2
    mbcache 4298 1 ext4
    jbd2 58372 1 ext4
    crc16 1053 1 ext4
    sd_mod 24384 4
    ata_piix 17935 3
    libata 140500 1 ata_piix
    scsi_mod 106987 4 sr_mod,sg,sd_mod,libata
    Which one shoud be  rmmoded?

  • Daemons and modules loaded at boot problem

    Hi all, i have a problem with my booting time and modules / daemons loaded at boot
    This is my bootchart:
    [IMG=http://img195.imageshack.us/img195/4701/bootchartpw.th.png][/IMG]
    This is my rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="it_IT.utf8"
    HARDWARECLOCK="localtime"
    USEDIRECTISA="no"
    TIMEZONE="Europe/Rome"
    KEYMAP="it"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(lib80211_crypt_tkip wl !snd-pcsp !pcspkr)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="neplero"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    eth0="dhcp"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng netfs crond hal !dbus !bluetooth @alsa)
    How can i modify my modules loaded and daemons to lower some boot time.
    And why is that bluetooth is still loaded even if it's !bluetooth? And is it possible to background ntfs-3g?
    Thanks all for advices!

    Please clarify what you mean. If the bluetooth service is started, then there is a bug or something very very odd. IF on the contrary you mean that the bluetooth-related modules are loaded by udev, this is perfectly normal: udev autoloads modules according to your hardware, not to your services. You need to blacklist the loaded bluetooth-related kernel modules (check them with 'lsmod') and to blacklist them in the MODULES array.
    Last edited by patroclo7 (2010-01-30 19:14:51)

  • RC.CONF Daemon & Module Order?

    Hello,
      I haven't found much related to the topic from some searches I have conducted, but I have been wondering.  Is there a prefered order to items within the Daemon and Module lines within rc.conf?  If so, could someone please provide a link to the page/document?  Thanks.

    the default order is good to start with. The only thing you have to worry about is the fact that certain daemons require another to be started first. For example, dbus needs to load before hal and ivman needs to load after both. You really need to know and understand the daemon in order place it properly, but if you're using them already it shouldn't be hard.
    The rest is personal preference.

  • [Problem] Xorg.conf and Razer DeathAdder Mouse

    First of all, Hy everyone Its my first time on Arch, and after a lot of reading and reading, and some more reading, i managed to install it with windows xp on a dual boot. After installing xorg with pacman, and configuring my xorg.conf look like this:
    Section "ServerLayout"
    Identifier "Layout[all]"
    Screen 0 "aticonfig-Screen[0]" 0 0
    InputDevice "Keyboard[0]" "CoreKeyboard"
    InputDevice "Mouse[1]" "CorePointer"
    Option "Clone" "off"
    Option "Xinerama" "off"
    Option "AIGLX" "on"
    EndSection
    Section "Files"
    InputDevices "/dev/gpmdata"
    InputDevices "/dev/input/mice"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/URW"
    FontPath "/usr/share/fonts/Speedo"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/uni:unscaled"
    FontPath "/opt/kde3/share/fonts"
    EndSection
    Section "Module"
    Load "dbe"
    Load "type1"
    Load "freetype"
    Load "extmod"
    Load "glx"
    Load "dri"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "on"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard[0]"
    Driver "kbd"
    Option "Protocol" "Standard"
    Option "XkbLayout" "pt-latin1.map.gz"
    Option "XkbModel" "logitech"
    Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll"
    Option "XkbRules" "xfree86"
    Option "XkbVariant" "basic,extended"
    EndSection
    Section "InputDevice"
    Identifier "Mouse[1]"
    Driver "mouse"
    Option "Name" "Razer DeathAdder"
    Option "corepointer"
    Option "Protocol" "ExplorerPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/input/mice"
    Option "Buttons" "7"
    Option "ButtonsMapping" "1 2 3 6 7"
    Option "Resolution" "900"
    Option "SampleRate" "1000"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]"
    Driver "fglrx"
    Option "XAANoOffscreenPixmaps" "on"
    Option "VideoOverlay" "off"
    Option "OpenGLOverlay" "off"
    Option "TexturedVideo" "on"
    Option "Textured2D" "on"
    Option "TexturedXrender" "off"
    Option "UseFastTLS" "1"
    Option "BackingStore" "on"
    Option "mtrr" "on"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]"
    Device "aticonfig-Device[0]"
    Monitor "aticonfig-Monitor[0]"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1680x1050_60" "1152x864_75" "1024x768_85" "800x600_100" "640x480_100"
    EndSubSection
    EndSection
    Section "DRI"
    Group "Video"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "RENDER" "Enable"
    Option "DAMAGE" "Enable"
    Option "Composite" "Enable"
    EndSection
    The problem is, when i do :
    X -config /root/X11/xorg.conf
    i see a black screen with the cross pointer of the mouse, but i cant move the mouse, and i cant quit from with tried CTRL+ALT+BACKSPACE, nothing, i do ALT+F2, and open a new shell, and then i dot ALT+F1 to return to the old one, and i see some erros, like, device "mouse" not found device "kbd" not found.. :S
    Then i tried
    Cat /dev/input/mice
    and i move the mouse, and click, and everything seems to work just fine.
    Sorry if this in the wrong section, or the problem itself is dumb, but i tried everything belive me. If someone could help, i would apreciate. Btw, not an english person, i have a very bad english indeed lol
    Tks in advance
    Last edited by Camelon (2008-07-31 20:58:16)

    i have a nvidia 6600 and a deathadder, i'll post my xorg.conf and see you you can get something useful:
    #===============================
    #ecra, output devices
    #===============================
    Section "Monitor"
    Identifier "Default Monitor"
    HorizSync 30.0 - 70.0
    VertRefresh 50.0 - 160.0
    Option "DPMS"
    Option "DPI" "96 x96"
    EndSection
    Section "Device"
    Identifier "Default nvidia Device"
    Driver "nvidia"
    EndSection
    Section "Screen"
    Identifier "Default Ecra"
    Device "Default nvidia Device"
    Monitor "Default Monitor"
    Option "RenderAccel" "true"
    Option "AddARGBGLXVisuals" "true"
    Option "TripleBuffer" "true"
    Option "NoLogo" "true"
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    #===============================
    #rato, teclado, input devices
    #===============================
    Section "InputDevice"
    Identifier "Rato"
    Option "Device" "/dev/input/mouse_udev"
    Driver "mouse"
    Option "Resolution" "1800"
    Option "SampleRate" "1000"
    Option "ButtonMapping" "1 2 3 6 7"
    EndSection
    Section "InputDevice"
    Identifier "Teclado"
    Driver "kbd"
    Option "XkbLayout" "pt"
    EndSection
    #===========================
    #wacom bamboo tablet
    #===========================
    Section "InputDevice"
    Identifier "stylus"
    Driver "wacom"
    Option "Device" "/dev/input/wacom"
    Option "Type" "stylus"
    Option "USB" "on"
    EndSection
    Section "InputDevice"
    Identifier "eraser"
    Driver "wacom"
    Option "Device" "/dev/input/wacom"
    Option "Type" "eraser"
    Option "USB" "on"
    EndSection
    Section "InputDevice"
    Identifier "pad"
    Driver "wacom"
    Option "Device" "/dev/input/wacom"
    Option "Type" "pad"
    Option "USB" "on"
    EndSection
    #=====================
    #the server layout
    #=====================
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Default Ecra"
    InputDevice "Teclado" "CoreKeyboard"
    InputDevice "Rato" "CorePointer"
    InputDevice "stylus" "SendCoreEvents"
    InputDevice "eraser" "SendCoreEvents"
    InputDevice "pad"
    EndSection
    and i think i have some udev rules to create those mouse links:
    /etc/udev/rules.d/10-local.rules:
    KERNEL=="event*", SYSFS{idVendor}=="056a", NAME="input/%k", SYMLINK="input/wacom"
    KERNEL=="mouse*", SYSFS{idProduct}=="0007", NAME="input/%k", SYMLINK="input/mouse_udev"
    you can try something like this. hope it helps

  • Error while creating DB CONSOLE conf and rep using EMCA

    Dears,
    I have 10g R1 database and used to have a db console for DEMO database.
    I deleted that using EMCA -X DEMO...deletion was successful.
    Now i;m trying to create the em db console conf and rep again using EMCA...when i finish entering parameters it gives me this error:
    SEVERE: Database instance unavailable. Fix the error(s) and run EM Configuration Assistant again in standalone mode !!!!!!
    By the way EMDROOT is set to ORACLE_HOME, Database is up and running...listening port is right...Just want to make sure of one thing please which is related to passwords...when he requested passwords for
    Password for dbsnmp:
    Password for sysman:
    Password for sys:
    Is it here asking for original passwords for dbsnmp, sysman or just to reset them?
    The detailed log file:
    ==============
    CONFIG: No value was set for the parameter AGENT_PORT
    Feb 13, 2008 8:25:14 AM oracle.sysman.emcp.EMConfig perform
    CONFIG: Passed parameter check
    Feb 13, 2008 8:25:14 AM oracle.sysman.emcp.EMConfig initSQLEngine
    CONFIG: SQLEngine connecting with SID: demo, oracleHome: /oracle/product/10.1.0/db_1, and user: SYS
    Feb 13, 2008 8:25:15 AM oracle.sysman.emcp.EMConfig initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Feb 13, 2008 8:25:15 AM oracle.sysman.emcp.EMConfig checkConfiguration
    CONFIG: ORA-01034: ORACLE not available
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01034: ORACLE not available
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1418)
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeQuery(SQLEngine.java:651)
    at oracle.sysman.emcp.EMConfig.checkConfiguration(EMConfig.java:1041)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:271)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:692)
    at oracle.sysman.emcp.EMConfigAssistant.performSetup(EMConfigAssistant.java:641)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:340)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:180)
    Feb 13, 2008 8:25:15 AM oracle.sysman.emcp.EMConfig checkConfiguration
    EVERE: Database instance unavailable. Fix the error(s) and run EM Configuration Assistant again in standalone mode !!!
    Cheers,
    Firas

    I restarted the database and then tried,still getting the same errors.I am trying to configure the EM on an EBS Database(Oracle 10g), and I find that there is no user sysman, is this causing the errors?
    $ emca -config dbcontrol db -repos create
    INFO: This operation is being logged at /vis_ora_home/vis_db/VIS/db/tech_st/10.2.0//cfgtoollogs/emca/emca_2009-02-24_05-29-41-PM.log.
    Feb 24, 2009 5:30:17 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Database instance unavailable.
    Refer to the log file at /vis_ora_home/vis_db/VIS/db/tech_st/10.2.0//cfgtoollogs/emca/emca_2009-02-24_05-29-41-PM.log for more details.
    Could not complete the configuration. Refer to the log file at /vis_ora_home/vis_db/VIS/db/tech_st/10.2.0//cfgtoollogs/emca/emca_2009-02-24_05-29-41-PM.log for more details.
    Edited by: orarup on Feb 24, 2009 8:29 PM

  • Setting global umask via NSUmask or /etc/launchd.conf and /etc/launchd-user.conf broken?

    The procedure to change the default global umask from 0022 to 0002, so that most files created by one user on a machine will be read-write by other users in the same group, seems to have been broken or to have been changed in OS X Lion from OS X Snow Leopard.  What worked as far back as OS X 10.4 and was officially documented was done from Terminal: "defaults write /Library/Preferences/.GlobalPreferences NSUmask 2" (with a sudo, if not logged in as 'root').
    Another way documented in various places and which I actually used through OS X 10.6 was also done via Terminal. Two files were created: /etc/launchd.conf (for system-wide global umask) or /etc/launchd-user.conf (for user-specific global umask).  The contents of each were simply the single umask command, "umask 002" or ("umask u=rwx,g=rwx,o=rx", I can't remember which variant I used - they're functionally the same, though).
    No matter which method I use, the 2nd or the 1st, the global umask no longer changes.
    Does anyone know whether this has been deliberately hobbled under OS X Lion, requiring purchase of OS X Lion Server?  Is this an OS X Lion bug?  Or, am I looking at something wrong?

    See this support article, which was written for OS X Server, but seems applicable to  Mac OS X client versions as well:
    Mac OS X Server v10.5, 10.6: Setting a custom umask
    The excerpt below describes the use of /etc/launchd-user.conf, and strongly cautions against using /etc/launchd.conf.
    Umask for user applications
    In Mac OS X v10.5.3 and later, you can create the file /etc/launchd-user.conf with the contents "umask nnn". Do not include the quotation marks and replace nnn with the desired umask value, such as 027 or 002.
    This will set the user's umask for all applications they launch, such as Finder, TextEdit, or Final Cut Pro, and control the permissions set on new files created by any of these applications.
    Umask for system processes
    In Mac OS X v10.4 and later, create the file /etc/launchd.conf with the contents "umask nnn". Do not include the quotation marks and replace nnn with the desired umask value, such as 027 or 002.
    This will set the umask for all processes. Changing this value is strongly discouraged because it changes the permissions on files used by the system software. If the permissions are too restrictive, dependent software may not work. If the permissions are too open, they may introduce security issues.

  • Strange behaviour when setting client_info and module in v$session

    Hello,
    I've tried to set the CLIENT_INFO field in V$SESSION using DBMS_APPLICATION_INFO.SET_CLIENT_INFO but found a strange behaviour.
    Normally the forms modules seems to set the field MODULE in V$SESSION to its name. If I use DBMS_APPLICATION_INFO.SET_CLIENT_INFO the CLIENT_INFO field is set correctly but the MODULE field is set to 'frmweb.exe' instead of the forms modules name.
    I also tried to set the MODULE using DBMS_APPLICATION_INFO.SET_MODULE but then strangely the MODULE and MODULE_HASH field of the original frmweb.exe (the main applet?) entry and the entry for the forms module were the same (set to the new module name). From now on every newly opened module had 'frmweb.exe' as the module entry until I closed the forms application.
    Example:
    Entries in V$SESSION:
    -- After start of forms application there is only one entry for the process:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         frmweb.exe        854945150
    -- When a new forms module is opened it looks like this:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         frmweb.exe        854945150
    1596:7204         my_module         1929284615
    -- When the modified forms module that sets the client_info/module is opened this happens:
    PROCESS           MODULE            MODULE_HASH            CLIENT_INFO
    1596:7204         mod_module        3097977240
    1596:7204         mod_module        3097977240             my client info
    1596:7204         my_module         1929284615As one can see the entry of the forms application seems to be overriden (at least the MODULE and MODULE_HASH fields) but the CLIENT_INFO only changes for one of the entries?
    The following code is responsible for the changes of CLIENT_INFO and MODULE:
        -- get client info
        client_info :=
            webutil_clientinfo.get_ip_address
            || ' (' ||
            webutil_clientinfo.get_user_name
            || ')'
        -- set client info
        DBMS_APPLICATION_INFO.SET_CLIENT_INFO(client_info);
        -- get module (set action to '')
        DBMS_APPLICATION_INFO.SET_MODULE(name_in('system.current_form'),''); I really don't understand, why it does not work properly.
    Any help is appreciated!
    Thanks in advance.

    This was an application module pooling, activation / passivation issue.
    After view objects had been set-up correctly, the problem disappeared.

  • Why not .conf and .env info in the database instead of files

    Can someone explain to me why Oracle has chosen to store the information for the applicationserver in textfiles ( configuration files (.conf) and environment files (.env)) instead of the database?
    1. A connection to the database is needed anyway.
    2. Indexing of database tables can be used for better performance.
    3. Easier GUI to manage the data.
    4. No difficult filesystem structure.
    Mathieu

    Can someone explain to me why Oracle has chosen to store the information for the applicationserver in textfiles ( configuration files (.conf) and environment files (.env)) instead of the database?
    1. A connection to the database is needed anyway.
    2. Indexing of database tables can be used for better performance.
    3. Easier GUI to manage the data.
    4. No difficult filesystem structure.
    Mathieu

  • Could any one tell me what is the difference between swfloader and module loader?

    Hi  All,
                          Could any one tell me what is the difference between SWFLoader and Module Loader in Flex3 in detail?

    Hi,
    ModuleLoader is a kind of strange API that is really just intended to look like SwfLoader for modules that contain a single visual component, and hides most of the module loading infrastructure, which is all about class factories.
    What I mean by "only loaded once" is that if you have several places in the code that call the ModuleManager.getModule("url").load() call, it will only ever get loaded over the wire and interpreted once, subsequent "loads" will just re-dispatch pseudo-load events to the new client.  In other words, the class factory is a singleton for a given url. Unloading is a totally different story.  As you note, not everything is truly unloadable, because there may be lots of references to stuff in
    the module that will keep it alive and un-GC'ed.
    I suggest playing with the low-level API so that you understand the backing implementation, and this should help you understand the limits of ModuleLoader.
    The main difference between modules and applications is that modules have lower overhead, and they only ever get loaded once, no matter how many times you load them. If you're using the ModuleLoader API, keep in mind that you're losing about half the functionality of the module system.  I will assume that you are, because otherwise it would be obvious where to expose methods.  You might want to play around with the lower level ModuleManager API just to get a hang of what's going on - ModuleLoader is a pretty thin veneer over the lower API.                
                    Basically, what you want to do is to have your module implement an interface, say IModuleWhatever.
    Also try and refer to this link which was previously discussed in this forum..
    http://forums.adobe.com/message/74404
    Thanks,
    Bhasker

  • Need of identifiers and modules in communication channel

    hi xi people.
    i just want to know about the need of identifiersw and moduled in CC.
    bcos i havent deal with these.
    can any one tell me please.
    waiting for u rr answer.
    regards.
    seeta ram.

    Seetaram,
    You will go with modules when the XI standard adapters doesnot fullfill your requirements. You will develop modules using Netweaver Developer studio (usually) and deploy it in the J2EE engine. Once when you deployed you can use them like the standard adapters. Check the other post reply on how to create a adapter module.
    Also Except for Sender SOAP adapters, you can use Modules for rest of the adapters. Check this help for further information:
    http://help.sap.com/saphelp_nw04/helpdata/en/8b/895e407aa4c44ce10000000a1550b0/content.htm
    Identifiers are used to identify objects uniquely. It has Agency, Identification Scheme and Name/Value. Check this help for additonal information on this:
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/36bf393a06ec4fbd079233c3fcdea2/content.htm
    ---Satish

  • Using Labview 5.1 to run SSR board and modules

    I am having trouble programming Labview 5.1 to run SSR modules on a SSR series backplane. Running Windows NT4, PCI-5042E multifunction I/O board. Labview will talk to the 5B board and modules. But I have not be able to use the SSR's. What am I missing?
    Attachments:
    CHECK_VALVE_STAND.pdf ‏199 KB

    Greetings,
    What behavior are you seeing? What behavior are you expecting? Which VIs are you using in LabVIEW to control the SSR modules? Can you control the SSR modules from your DAQ board's test panel in Measurement & Automation Explorer?
    Spencer S.

  • What are the differences between component and module

    hey guys... i was just wondering if someone could enlighten me on the differences of components and modules?
    im creating a new project in flex, and not sure which one to use.. or even if it matters... lol
    my login is going to have a login at the begining, and once the login is entered correctly, it goes to a panel selection window, where teh customer will select the panel they have in their house... and once that happens, i'll have a datagrid on the left side of the screen and multiple viewstacks with images which display to the right...
    so if any one has a suggestion, i'll greatly appretiate it

    I'll answer my own question since there were no replies yet. Others may want to know the answers to the same question. Most of my questions are answered on this link:
    http://www.videohelp.com/forum/archive/diference-betwen-mov-dv-files-and-dv-file s-t362973.html
    Any other comments always appreciated.

Maybe you are looking for

  • IPod not recognized in 'My Computer' and in iTunes for Windows 7

    I have stopped the services to the ipod and mobile devices and restarted the services.  I have uninstalled and reinstalled itunes.  My ports are fine and I have tried all gthree ports.  I also switched the cable and yet it's still not recognizing ipo

  • How to return the correct row of data using diffferent conditions?

    I am having some problems with an sql query and I hope someone can help please? The data I am using is customers with multiple transactions. If a customer contains one transaction where the transaction type = 'W' then I need to set the output value t

  • Generating an HTML report from two tabs.

    Hi Guys, and sorry if the title is not clear. My situation is like this: I have two tabs for two different conditions. In the first tab, I want generate part of my HTML report regarding the first tab. Then, in the second tab, I want add more details

  • Re: OLE Intergration

    Tom, I have tried connecting to Microsoft Excel as an OLE automation server. I used both in-place-activation with Forte's OLE Field and dynamically communicating with Excel using OLE automation. That worked fine, but I find it quite difficult to get

  • MSI N770 Lightning vs MSI N760 Hawk

    Hi guys. I don't know which graphic card should I get. Originally I wanted to get XFX or Asus R9 280,but they both s**k. So I decided to think about opposite "camp" and go with NVidia based cards. Now,I heard a lot of good things about N760 Hawk,a lo