Modprobe.conf and aliases/options

Is modprobe.conf the right place to put aliases an options for ArchLinux?  I see sometimes people put them in a special aliases and options file, but maybe that is for other distros.

Yes, modprobe.conf is the correct location for module options and aliases.

Similar Messages

  • Modprobe.conf install

    I have a style question on the install and remove commands in modules.conf.
    This is my modprobe.conf as of now
    # /etc/modprobe.conf (for v2.6 kernels)
    alias irda0 nsc-ircc # required for irattach
    options nsc-ircc dongle_id=0x09 io=0x2f8 irq=3
    install nsc-ircc /usr/bin/setserial /dev/ttyS1 uart none;
    /sbin/modprobe --ignore-install nsc-ircc;
    /sbin/modprobe ircomm;
    /sbin/modprobe ircomm-tty
    # Enable experimental featues, and hotkeys in ibm-acpi
    options ibm-acpi experimental=1
    install ibm-acpi /sbin/modprobe --ignore-install ibm-acpi;
    echo enable > /proc/acpi/ibm/hotkey
    I was wondering if there would be any reason why I shouldn't run services on module load, instead of rc.conf's DAEMONS array
    For example
    install snd-intel8x0 /sbin/modprobe --ignore-install snd-intel8x0;
    /etc/rc.d/alsa start
    remove snd-intel8x0 /etc/rc.d/alsa stop;
    /sbin/modprobe -r --ignore-remove snd-intel8x0
    I can think of other hardware that needs extra configuration before it's completely useful. Like soft modems, network cards, irda, etc. Also this could save on power for notebook users by turning off unused devices (such as IRDA).
    Is this the right way to use these directives? It probably me having a case of the I-just-learned-how-to syndrome, but I think this could be useful in combination with udev's RUN option, I just haven't seen it used like this before.

    Lone_Wolf wrote:
    quayrodent wrote: I guess the reason I haven't done so is because I didn't know how to pass along the extra info ($CMDLINE_OPTS && /sbin/ztcfg) or whether it was even necessary.
    That is almost exactly the purpose of modprobe.conf : setting options to be used when modules are probed.
    Ahhh, I see (I think.)  I need to leave the lines as they are in modprobe.conf, AND add them to the module lines in rc.conf.
    Cool, thanks!

  • Modprobe, alsa and rc.conf

    hi
    my modprobe.conf have
    alias snd-card-0 snd-ens1371
    alias sound-slot-0 snd-ens1371
    does i need to do something to tell to the system to use it?
    thanks

    the sound work fine with amarok.... but not in kde system
    Sound server informational message:
    Error while initializing the sound driver:
    device: default can't be opened for playback (No such file or directory)
    The sound server will continue, using the null output device
    ls -ls /dev/snd/
    0 crw-rw---- 1 root audio 116, 0 Apr 4 11:34 controlC0
    0 crw-rw---- 1 root audio 116, 32 Apr 4 11:35 controlC1
    0 crw-rw---- 1 root audio 14, 18 Apr 4 11:35 midi1
    0 crw-rw---- 1 root audio 116, 40 Apr 4 11:35 midiC1D0
    0 crw-rw---- 1 root audio 116, 24 Apr 4 11:34 pcmC0D0c
    0 crw-rw---- 1 root audio 116, 56 Apr 4 11:35 pcmC1D0c
    0 crw-rw---- 1 root audio 116, 48 Apr 4 11:35 pcmC1D0p
    0 crw-rw---- 1 root audio 116, 49 Apr 4 11:35 pcmC1D1p
    0 crw-rw---- 1 root audio 116, 1 Apr 4 11:34 seq
    0 crw-rw---- 1 root audio 116, 33 Apr 4 11:34 timer
    groups
    wheel slocate video audio floppy storage scanner camera users collinm
    arecord -l
    card 0 seem to be my webcam who have a micro...
    **** List of CAPTURE Hardware Devices ****
    card 0: U0x46d0x8ad [USB Device 0x46d:0x8ad], device 0: USB Audio [USB Audio]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 1: AudioPCI [Ensoniq AudioPCI], device 0: ES1371/1 [ES1371 DAC2/ADC]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    alsamixer seem to detect 2 sound card... my webcam and my real sound card.... is there a way to say to alsa to use my real soudn card?
    Last edited by collinm (2007-04-04 23:18:01)

  • 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

  • Alsa entries in /etc/modprobe.conf

    could someone who has all the alsa options compiled as modules post that part of their /etc/modprobe.conf? i'm only getting 3 lines and i believe there are supposed to be more, causing me to have to run alsaconf every time after booting. for some reason the other modules aren't getting written to the file. appreciate!
    # --- BEGIN: Generated by ALSACONF, do not edit. ---
    # --- ALSACONF verion 1.0.5 ---
    options snd device_mode=0666
    alias snd-card-0 snd-cs46xx
    alias sound-slot-0 snd-cs46xx
    # --- END: Generated by ALSACONF, do not edit. ---

    http://bbs.archlinux.org/viewtopic.php? … a&start=15
    look at hapy's post that is an example of everything you can load (note cmipci is HIS soundcard the rest is generic modules)
    i found this with a search

  • Kernel26, nvidia in modprobe.conf, failed to initialize

    According to this thread (at the end) http://bbs.archlinux.org/viewtopic.php?t=4067&start=15 and my own experiences :-) nvidia with kernel26 can't be initialized if it's in modprobe.conf. When starting xfree there is an error (details in the link): "(EE) NVIDIA(0): Failed to initialize the NVIDIA kernel module!". This is true for user and root. Nvidia works well only when placed in /etc/rc.conf MODULES line or when run manually with modprobe nvidia. Is this ok or maybe some bug ? I have no problem leaving nvidia in rc.conf because it's the simpliest method and works but I'd just like to know the reason 8)
    PS. Sorry If this was answered in some other thread - there are so many threads about nvidia that it's impossible to analyze them all :-)

    I think it's ok, nothing to worry about.
    The only nvidia-related line in my /etc/modprobe.conf is
    alias /dev/nvidia*   nvidia
    I think the nvidia installer put it there for me, as I can't remember inserting it myself.
    I believe /etc/modprobe.conf is just for aliasing purposes, as everything in it seems to start with the word alias ;-) Module loading when starting up should be done by /etc/rc.conf, I guess.
    Oh, and about the kernel-tainting, that's just a message to the kernel developers: "dismiss this guy's bug report" ;-) They'll immediately suspect the closed source module crashed your system, not their open source kernel. And they'll probably be right, too.

  • Has UDEV_TIMEOUT been dropped from rc.conf as an option?

    I was merging changes with a recent rc.conf.pacnew and I noticed that UDEV_TIMEOUT is not part of that file.
    I also checked with 'man rc.conf' and it's not listed there either. It that no longer a valid option in rc.conf? If so, where should that timeout be configured now?

    OK - so this is different from the timeout that I see during boot, which is 30 secs:
    Wed Jan 25 19:49:47 2012: :: Waiting for UDev uevents to be processed    [BUSY] udevd[160]: worker [187] timeout, kill it
    Wed Jan 25 19:49:47 2012: udevd[160]: seq 1347 '/devices/pci0000:00/0000:00:1c.1/0000:07:00.0' killed
    Wed Jan 25 19:49:47 2012: udevd[160]: worker [187] terminated by signal 9 (Killed)

  • What to put in modprobe.conf?

    hello
    i can't get to run network the best i got out of it was
    siocaddrt: network unreachable.
    i think it might be because i haven't added anything to modprobe.conf. however, i just don't know what to add.
    i have Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter, Copper RJ-45. i hope you know what it means...

    thanks it worked
    to be honest, i didn't really believe it would as it's my i think 4th or 5th attempt at networking in arch and every time i'd spend up to a week browsing the forums and asking at irc a lot and nothing ever helped.
    but this did. thank you once again

  • NFS v3 server, and "nolock" option

    I'm getting the following error whne trying to mount a FreeNAS share. AFAIK, it uses NFSv3 :
    mount.nfs: rpc.statd is not running but is required for remote locking.
    mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
    mount.nfs: an incorrect mount option was specified
    The wiki has conflicting advice for this. One solution is to edit /etc/conf.d/nfs-common.conf and set "NEED_STATD" to yes, while the other is to start the rpc-statd service with systemd.
    Which of these is th e correct way to go about fixing this, and are they both preferrable to just using the "nolock" option? Also, systemd throws up a failed warning half the time when starting up rpc-statd on boot.
    Any help is appreciated. thanks.

    The Solaris implementation of NFS has always been very strict.
    Other OS's? Not so much. Put an inode number larger than 32 bits while using non-large-file-aware NFSv2, like Irix would do? A Solaris host couldn't access the file. Nevermind some of the sketchy NFS sleight-of-hand Linux has been known to pull (silently truncating group membership?!?!?!).
    And NFSv4 is pretty complex, and in my experience too easy to break.
    I'd open tickets with Oracle and NetApp, and see if you can get something more out of them than pointing fingers at each other.

  • ITunes and aliases

    On my iMac, I have my HD divided into two volumes. I keep my music (and movies) on the second volume. iTunes itself is obviously on the first volume. To facilitate this, I created aliases in the iTunes Media directory on the first volume to point to the directories on the second volume. I imported all of my music, and all works fine.
    Well, all except getting new music into the library. I have both "Keep Organized" and "Copy" options checked. Whenever I try to load new music into the library, say from the Downloads directory (when I've purchased from Napster) or another directory (from Amazon, etc.), I get an error that it can't copy. I have to manually create the directories, copy the music, and then import it with the "Copy" option turned off.
    I know I can point iTunes itself to the second volume, but that means all my media (including apps, etc.) is on that drive, which I don't necessarily want.
    Shouldn't the aliases "just work"? In Finder, if I click on one of the aliases, it takes me to correct directory on the other volume. And the existing library works fine. So I know the aliases work at least in part.
    Anything obvious I should check?

    Aliases just won't work with iTunes. Neither will Unix symbolic links. I don't know what iTunes is doing, exactly, that is so broken, but that's the bottom line. As you've found, some stuff will work and other stuff will fail spectacularly.
    Years go by and iTunes fails to add the most basic, desperately needed library organization features, like storing some stuff on other volumes.
    The only way I've found to make it work is to have the second volume actually mount on a directory inside the iTunes library structure. At the moment I have an external drive that contains my entire iTunes library, which I've accomplished by having the volume mount on ~/Music/iTunes so iTunes will be none the wiser.
    The only way to do this is via the Terminal. First you have to get the volume's UUID, which you can get in Disk Utility by selecting the volume and choosing "info" from the toolbar. Copy the UUID.
    Then you have to edit the file /etc/fstab which is in a directory that's hidden from the Finder and which requires root privileges to edit. If you don't know what that means and how to do it, stop right here, because if you mess it up you're going to break your system in a way that could very well render it unbootable.
    Add a line to fstab like:
    UUID=114F5F2C-5DF3-3BC1-9A6C-372703C0171C /Users/username/Music/iTunes hfs rw 1 0
    Where the UUID string is the one for the volume, and the directory path is where you want the volume to mount in your filesystem. This directory must already exist. Now whenever the volume is mounted, instead of going into the catchall /Volumes directory, it will mount where you told it to mount. You can freely rename the volume because you're referencing it by UUID, which doesn't change. Although in this example I'm putting the entire library on the external drive, you could use this to split out only part of the library, so long as the part you want on the other volume is all under one directory.
    There is only one way to make things go horribly wrong after you do this. If you plug in and turn on the external drive, but launch iTunes before the volume is mounted, iTunes will (a) see that there is no iTunes library; then (b) create a new one. It will do this in two, separate steps. If your volume happens to get mounted after (a) but before (b), then your library file will get wiped out. Not the media files, just the library, which contains all your playlists and ratings and the like. It might sound like a rare race condition, but it's happened to me twice. So keep backups, and always make sure you allow enough time for the volume to mount before launching iTunes.

  • [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

  • Are CC and BCC options available in XML Publisher email?

    I am working in XML publisher phase 2. I want to know whether there is any way to set CC and BCC options in email outputs.
    If yes, how can I do?
    What is the way to sent same mail to multiple persons?
    Thanks in Advance
    Sudheesh Sudhakar

    Have you looked in Mail Help? When I search for Bcc there, I get an article titled “Keeping confidentiality” and another titled “Sending an email to several people” that appear to contain the information you’re looking for, including what Klaus suggested and more...

  • I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password pro

    I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password protecting the document?

    Is there a setting that needs to be set to allow the annotation features?  I set password protection to open and then password for editing and set it to Any except page extraction, but it still did not give the annotation option

  • How Do RoboHelp 9 WebHelp Generated Files Handle Map IDs and Aliases?

    The text below was written by our team's developer/architect. I am the help author who uses RoboHelp to write content and generate the help files, but I am clueless how it all gets generated and is deployed. Please help. We use RoboHelp 9. I use it in Windows XP and our app and help run on IE 7, 9, and Firefox (multiple versions).
    "Our application uses the numeric identifiers associated with the Map ID. For example, to get to the <appname>_home_page.htm file, we use the number 1053. <appname> = pecs, in this example.
    All of this is used in a call to a RoboHelp method defined in the RoboHelp_CSH.js file. The mehtod we are calling is the RH_ShowHelp() JavaScript method and the code to perform the call, when you click on Page Help, is this:
    RH_ShowHelp(0, ''/pecsHelp/index.htm>pecsHelp',HH_HELP_CONTEXT,topic);
    Topic is translated to the Map ID number for the page help. HH_HELP_CONTEXT is defined in the RoboHelp_CSH.js file. This method translates into a URL and from what I have seen, the URL that gets generated is this:
    http://{server}[:port]/pecsHelp/index.htm/{server}[:port]/pecsHelp/index.htm#<id=1053>>pecsHelp
    Server and port get replaced with the appropriate values. I have no clue how id=1053 is supposed to get translated to mean "pecs_home_page.htm". If you check the PECS_help.h file, you will see the following entry:
    #define PECS_Home_Page1 1053
    Then in the RoboHelp alias file (PECS 3.0.ali), the following line is in the file:
    <alias name="PECS_Home_Page1" link="pecs_home_page.htm"> </alias>
    But both of these files are used during the WebHelp generation process and I don't know how the WebHelp generated files handle the Map ID and aliases."

    You need to assign the numbers you find in the pecs_help.h file to topics in your help. You do this in Context Sensitive Help > Map Files > All Map IDs. (From RH7, but I assume the location is similar in RH9.) This creates the entries in the .ali file.
    Peter Grainge suggests a couple of sites to read for a greater understanding here:
    http://www.grainge.org/pages/authoring/calling_webhelp/using_map_ids.htm
    (Although the second  site is based on RH X5, the basic concepts and procedures should be very similar. )
    HTH,
    Amber

  • How to restrict 'Broadcast and Export' option of BW report through web.

    Helllo,
    Please anyone let me know, how NOT to give/allow "Broadcast and Export' option in BW report, when accessed through Web.
    Is there is any Auhtorization object which restrictes this option.

    Hi,
    Please check this, it may help you.
    http://help.sap.com/saphelp_nw70/helpdata/en/80/1a68b4e07211d2acb80000e829fbfe/frameset.htm
    Regards,
    Madhu

Maybe you are looking for

  • Handwriting input on X60T after Win 8.1 upgrade

    Hi Folks Has anyone else had trouble getting their apps to insert handwritten text from the Tablet Input Panel?  If I use onscreen keyboards, no problem.  Only has a problem with parsed handwritting; and then only on some apps like the notes editor i

  • No graphics in the header

    Has anyone notices that you cannot put graphics and logos in the header section?

  • How to return efficiently filtered data

    Dear all, I have a database ( SQL server 2012) which is based from AW sample db where I took some sample table design to cover my issues. My database will host a big list of product organized in category and sub category. From my client application I

  • Problem saving XML Forms builder project

    Hello, I have extended my xml forms project with some functionalities and now I'm not able to save and generate it. When I'm trying to save the project saving process stops while saving 'GUIModel-Internal.xml'  which is quite big file (~4MB). I can't

  • Country not displaying in Ship-to Address

    Dear All, In the billing document SAP Script output Country is not getting display for Ship-To customer. In SAP Script form, I have two addess window, one for Sold-to and another for Ship-to. For the Ship-to Country is not getting display. Both Sold-