Volume too low.
Volume too low.
I've got Windows on my laptop but have been using Porteus KDE lately because videos play back smoother. The problem is that the volume is too low when using Porteus. The master is at 100%, but it's not even half as loud as when I run Windows. Other distros of Linux sound just fine.
I went into the config file and raised the value from 100% to 200%, but that didn't work. Any suggestions?
Steve S
I went into the config file and raised the value from 100% to 200%, but that didn't work. Any suggestions?
Steve S
-
- Full of knowledge
- Posts: 2564
- Joined: 25 Jun 2014, 15:21
- Distribution: 3.2.2 Cinnamon & KDE5
- Location: London
Re: Volume too low.
Try in a terminal alsamixer:which is what I'm using to try and get a reasonable volume.
Code: Select all
alsamixer
Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
Re: Volume too low.
Thanks, that did it. Even though the master was at 100, the one labeled Speaker was only about 60%.
Steve S
Steve S
-
- Full of knowledge
- Posts: 2564
- Joined: 25 Jun 2014, 15:21
- Distribution: 3.2.2 Cinnamon & KDE5
- Location: London
Re: Volume too low.
To round things off, preferred settings can be saved. In terminal under root:
If not saving Changes, then rootcopy will do the trick. Immediately after saving sound settiings, the file /var/lib/alsa/asound.state has to be copied to the rootcopy folder. Again as root:sdxy - Partition where Porteus has been installed. For example: /mnt/sdb1
Am able myself to get reasonable sound without getting into the red. However always a good idea upon starting up Porteus to check sound settings, as somewhere along the line some startup program/s clobberi them. KDE System Settings is another of these programs, which puts pcm into the red. Not very desirable if watching a late night video which starts off with an ear-splitting musical introduction.
If settings clobbered, then
Feedback was appreciated. Please append Solved to topic title, if everything has been covered.
Code: Select all
alsactl store # All that's needed if saving Changes
Code: Select all
alsactl store
cp --parents /var/lib/alsa/asound.state /mnt/sdxy/porteus/rootcopy
Am able myself to get reasonable sound without getting into the red. However always a good idea upon starting up Porteus to check sound settings, as somewhere along the line some startup program/s clobberi them. KDE System Settings is another of these programs, which puts pcm into the red. Not very desirable if watching a late night video which starts off with an ear-splitting musical introduction.
If settings clobbered, then
Code: Select all
alsactl restore
Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
- Ed_P
- Contributor
- Posts: 8658
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Re: Volume too low.
What do you suggest for this situation?Bogomips wrote:Feedback was appreciated.
Code: Select all
guest@porteus:~$ alsactl store
alsactl: state_lock:121: file /var/lib/alsa/asound.state lock error: File exists
alsactl: state_lock:121: file /var/lib/alsa/asound.state unlock error: File exists
guest@porteus:~$
-
- Full of knowledge
- Posts: 2564
- Joined: 25 Jun 2014, 15:21
- Distribution: 3.2.2 Cinnamon & KDE5
- Location: London
Re: Volume too low.
@Ed_P
For starters See man alsactl. Otherwise copy configuration file somewhere else, and use this other one as configuration file perhaps?
For starters
Code: Select all
alsactl -L store
Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
- Ed_P
- Contributor
- Posts: 8658
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Re: Volume too low.
Code: Select all
guest@porteus:~$ alsactl -L store
alsactl: invalid option -- 'L'
Usage: alsactl <options> command
global options:
-h,--help this help
-d,--debug debug mode
-v,--version print version of this program
Available state options:
-f,--file # configuration file (default /var/lib/alsa/asound.state)
-l,--lock use file locking to serialize concurrent access
-F,--force try to restore the matching controls as much as possible
(default mode)
-g,--ignore ignore 'No soundcards found' error
-P,--pedantic do not restore mismatching controls (old default)
-I,--no-init-fallback
don't initialize even if restore fails
-r,--runstate # save restore and init state to this file (only errors)
default settings is 'no file set'
-R,--remove remove runstate file at first, otherwise append errors
-p,--period # store period in seconds for the daemon command
-e,--pid-file # pathname for the process id (daemon mode)
Available init options:
-E,--env #=# set environment variable for init phase (NAME=VALUE)
-i,--initfile # main configuation file for init phase
(default /usr/share/alsa/init/00main)
-b,--background run daemon in background
-s,--syslog use syslog for messages
-n,--nice # set the process priority (see 'man nice')
-c,--sched-idle set the process scheduling policy to idle (SCHED_IDLE)
Available commands:
store <card> save current driver setup for one or each soundcards
to configuration file
restore <card> load current driver setup for one or each soundcards
from configuration file
nrestore <card> like restore, but notify the daemon to rescan soundcards
init <card> initialize driver to a default state
daemon <card> store state periodically for one or each soundcards
rdaemon <card> like daemon but do the state restore at first
kill <cmd> notify daemon to quit, rescan or save_and_quit
guest@porteus:~$ alsactl -v
alsactl version 1.0.27.2
guest@porteus:~$
Code: Select all
guest@porteus:~$ alsactl -l store
alsactl: state_lock:121: file /var/lib/alsa/asound.state lock error: File exists
alsactl: state_lock:121: file /var/lib/alsa/asound.state unlock error: File exists
-
- Full of knowledge
- Posts: 2564
- Joined: 25 Jun 2014, 15:21
- Distribution: 3.2.2 Cinnamon & KDE5
- Location: London
Re: Volume too low.
Try running under root, as you do not have write access to /var/lib/alsa/asound.state. 8)
Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
- Ed_P
- Contributor
- Posts: 8658
- Joined: 06 Feb 2013, 22:12
- Distribution: Cinnamon 5.01 ISO
- Location: Western NY, USA
Re: Volume too low.
Bingo!!Bogomips wrote:Try running under root,
Code: Select all
guest@porteus:~$ su
Password:
root@porteus:/home/guest# alsactl store
root@porteus:/home/guest#