Sponsored Content
Full Discussion: Alsa Boot Script
Top Forums Shell Programming and Scripting Alsa Boot Script Post 302875447 by wisecracker on Tuesday 19th of November 2013 01:59:30 PM
Old 11-19-2013
Hi Azrael...

I have been doing a bit of lateral thinking here and came up with an idea...

You say that you enable alsa at the command line so I assume a terminal rather than
a console.

Maybe your script to enable alsa requires a small delay inside a terminal to do its job.
(I once had a similar problem with Caldera 7 and had to use a batch file from a Windows
boot to enable the sound card before LinLoad.)

Why not try this idea out, assuming you have xterm:-
Code:
#!/bin/bash --posix
> /tmp/alsaboot.sh
chmod 755 /tmp/alsaboot.sh
echo "#!/bin/bash" >> /tmp/alsaboot.sh
echo "echo alsactl init" >> /tmp/alsaboot.sh
echo "echo 'All your base belong to us...'" >> /tmp/alsaboot.sh
echo "sleep 5" >> /tmp/alsaboot.sh
xterm -e /tmp/alsaboot.sh &

You WILL have to edit this script at line 5 to remove the second echo to use but just check
that this idea works first before removing it.

It does work on the OSX 10.7.5, default bash terminal...

Just an idea that reminded me of my traumas with Caldera 7.
 

We Also Found This Discussion For You

1. Slackware

HD-Audio: ALSA settings not persistent across reboots.

Hi: The OS is Slackware 14.0. When, after 14.0 install I first ran alsamixer, I got an error message and it quit. After some googling, I created /etc/modprobe.d/alsa.conf with these lines: alias snd-card-0 snd_hda_intel alias sound-slot-0 snd_hda_intel options snd_hda_intel... (0 Replies)
Discussion started by: stf92
0 Replies
ALSACTL(1)						      General Commands Manual							ALSACTL(1)

NAME
alsactl - advanced controls for ALSA soundcard driver SYNOPSIS
alsactl [options] [store|restore|init] <card # or id or device> DESCRIPTION
alsactl is used to control advanced settings for the ALSA soundcard drivers. It supports multiple soundcards. If your card has features that you can't seem to control from a mixer application, you have come to the right place. COMMANDS
store saves the current driver state for the selected soundcard to the configuration file. restore loads driver state for the selected soundcard from the configuration file. If restoring fails (eventually partly), the init action is called. init tries to initialize all devices to a default state. If device is not known, error code 99 is returned. If no soundcards are specified, setup for all cards will be saved or loaded. OPTIONS
-h, --help Help: show available flags and commands. -d, --debug Use debug mode: a bit more verbose. -v, --version Print alsactl version number. -f, --file Select the configuration file to use. The default is /var/lib/alsa/asound.state. -F, --force Used with restore command. Try to restore the matching control elements as much as possible. This option is set as default now. -g, --ignore Used with store and restore commands. Do not show 'No soundcards found' and do not set an error exit code when soundcards are not installed. -P, --pedantic Used with restore command. Don't restore mismatching control elements. This option was the old default behavior. -I, --no-init-fallback Don't initialize cards if restore fails. Since version 1.0.18, alsactl tries to initialize the card with the restore operation as default. But this can cause incompatibility with the older version. The caller may expect that the state won't be touched if no state file exists. This option takes the restore behavior back to the older version by suppressing the initialization. -r, --runstate Save restore and init state to this file. The file will contain only errors. Errors are appended with the soundcard id to the end of file. -R, --remove Remove runstate file at first. -E, --env #=# Set environment variable (useful for init action or you may override ALSA_CONFIG_PATH to read different or optimized configuration - may be useful for "boot" scripts). -i, --initfile #=# The configuration file for init. By default, PREFIX/share/alsa/init/00main is used. FILES
/var/lib/alsa/asound.state (or whatever file you specify with the -f flag) is used to store current settings for your soundcards. The set- tings include all the usual soundcard mixer settings. More importantly, alsactl is capable of controlling other card-specific features that mixer apps usually don't know about. The configuration file is generated automatically by running alsactl store. Editing the configuration file by hand may be necessary for some soundcard features (e.g. enabling/disabling automatic mic gain, digital output, joystick/game ports, some future MIDI routing options, etc). SEE ALSO
amixer(1), alsamixer(1), aplay(1) BUGS
None known. AUTHOR
alsactl is by Jaroslav Kysela <perex@perex.cz> and Abramo Bagnara <abramo@alsa-project.org>. This document is by Paul Winkler <zarmzarm@erols.com>. 15 May 2001 ALSACTL(1)
All times are GMT -4. The time now is 01:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy