Ubuntu users
Moderator: Wiz Feinberg
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
as far as the commands I sent you for cd and dvd playback, what you do is save the series of commands to a file, then move the file to your /bin directory. Ill post more tomorrow as I dont have much time at the moment.
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
Code: Select all
asoundconf -listposting this so I can find it later
http://crunchbanglinux.org/forums/topic ... with-hdmi/
http://www.linuxquestions.org/questions ... tu-499520/
http://bbs.archlinux.org/viewtopic.php?id=38841
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
sorry for the delay
david@david-desktop:~$ asoundconf -list
Usage:
asoundconf is-active
asoundconf get|delete PARAMETER
asoundconf set PARAMETER VALUE
asoundconf list
Convenience macro functions:
asoundconf set-default-card PARAMETER
asoundconf reset-default-card
asoundconf set-pulseaudio
asoundconf unset-pulseaudio
asoundconf set-oss PARAMETER
asoundconf unset-oss
david@david-desktop:~$
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
do that without the minus sign
Code: Select all
asoundconf listmine is:
Code: Select all
inoculos@inoculos-desktop:~yes master?$ asoundconf list
Names of available sound cards:
CA0106
If that is the case, then do this
Code: Select all
sudo asoundconf set-default-card CA0106That should do it.
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
fromI had the same problem with 5.1 sound.
there are options in the volume controll preferences. I think there are "switches" and "options" or so you have to enable.
I simply checked every checkbox I could see.
And now I can controll the different channels individually which was not(!) possible under windows.
http://crunchbanglinux.org/forums/topic ... questions/
If that doesnt work try:
Code: Select all
alsamixer -c 0
Use the arrow keys to navigate the mixer (left right to select a channel, up down for volume levels), tab to switch pages within the mixer, and the m key to mute unmute.
Hopefully this will do it. If not we will have to add modules or alter a configuration file.[/quote]
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
We need to create a configuration tool for your sound driver. We will create a file called .asoundrc, and tell it to divide the sound 5 ways.
In a terminal do this
Code: Select all
sudo gedit ~/.asoundrcCode: Select all
pcm.card0 {
type hw
card 0
mmap_emulation true
}
pcm.!output {
type dmix
ipc_key 1234
ipc_key_add_uid 1
slave {
pcm "card0"
period_time 0
period_size 1024
buffer_size 8192
rate 44100
}
bindings {
0 0
1 1
}
}
#
# DSNOOP output device
#
pcm.!input {
type dsnoop
ipc_key 4321
ipc_key_add_uid 1
slave {
pcm "card0"
period_time 0
period_size 1024
rate 44100
}
}
#
# ASYM duplex device
#
pcm.!duplex {
type asym
playback.pcm "output"
capture.pcm "input"
}
#
# Make the duplex device default
#
pcm.!default {
type plug
slave.pcm "duplex"
}
#
# OSS Compability
pcm.!dsp0 {
type plug
slave.pcm "duplex"
}
ctl.!mixer0 {
type hw
card 0
}
# line added to default to attempt surround sound fix
pcm.shared_surround {
type plug
slave.pcm "surround51"
slave.channels 6
route_policy duplicate
}
If you get no sound or something weird we will just delete it and try something else.
These config files are the way linux users customize their systems, and that is where the learning curve really pays off. There is not much you cant do once you get the hang of these. Unfortunately it takes a lot of poking around to get it right.
need to find these later:
http://ubuntuforums.org/showthread.php?t=595412
http://www.cse.ohio-state.edu/~bondhugu/alsamch.shtml
http://ubuntuforums.org/showthread.php?t=586411
http://www.phaeronix.net/asoundrc
http://forums.gentoo.org/viewtopic-p-45 ... ml#4528619
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
re-open .asoundrc
Code: Select all
sudo gedit ~/.asoundrcpaste this in
Code: Select all
pcm.!default {
type plug
slave.pcm "surround51"
slave.channels 6
route_policy duplicate
}reboot and see what happens
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
http://www.ihighfive.com/
youll want to either use your file browser (WINDOWS + F) and chose your cd drive, or open the photo viewer. right click your desktop and it will be in graphics. gpicview I think
Personally I like a program called gthumb
Code: Select all
sudo apt-get update && sudo apt-get install gthumbCode: Select all
gthumb-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
after figuring out that the wrong sound card was used as default we did the following:
- 1. found all sound cards
2. set the proper one as default
3. made a configuration file
dont forget to periodically run your updates!
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
-
David Wright
- Posts: 5363
- Joined: 4 Aug 1998 11:00 pm
- Location: Pilot Point ,Tx USA.
- State/Province: -
- Country: United States
-
Steve Norman
- Posts: 1696
- Joined: 12 Oct 2007 6:28 am
- Location: Seattle Washington, USA
- State/Province: Washington
- Country: United States
Code: Select all
sudo /etc/init.d/alsa-utils restart2. restart the desktop like this:
Code: Select all
alt>printscreen>k
log back in and see if there is sound
3. If sound didnt return,
this is the command to set the sound card
Code: Select all
sudo asoundconf set-default-card CA0106