LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 05-28-2019, 04:28 AM   #61
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434

Quote:
Originally Posted by orbea View Post
Not everyone has a $100 sound card or even a dedicated sound card, there are a lot of people who use the onboard audio on their motherboard.
Excuse me? I have said repeatedly that I understand what value PA has to some and even recommended in this thread and others that they use, or at least try it. I don't hate PA or at least what it tries to accomplish. I just hate that it is a hard dependency forcing those of us who find it a major penalty to be stuck with it and jumping through hoops to work with it or without it. I've chosen and been using Slackware just shy of 20 years exactly because Pat V has stated and lived by the directive of not assuming use case. I completely understand why he had to submit when Bluetooth required it and I applaud him for providing a way out when that dependency ceased.

I'm completely comfortable with those who prefer PA. Why are some apparently uncomfortable with those like me who are not? It's all about Freedom and Liberty for ALL, right?

Last edited by enorbet; 05-28-2019 at 04:42 AM.
 
Old 05-28-2019, 04:37 AM   #62
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
Quote:
Originally Posted by gus3 View Post
I've seen lots of discussion about fixing the sound on hazel's computer. Granted, the fix that worked was to remove /etc/asound.conf.

That advice was the wrong way to think about system administration.

The system is up and running, but parts of it aren't working right (or at least, the way you want). As you go poking around, bear in mind that you might poke something the wrong way, and everything comes crashing down.

The #1 priority of a sysadmin is "don't do anything you can't undo". I didn't see where anyone suggested hazel keep a copy of /etc/asound.conf.

The simplest, safest approach is to move said file into a user-home directory, e.g.
Code:
# mv /etc/asound.conf ~hazel/
Followed by testing, testing, and testing again, maybe even with a system reboot mixed in for good measure. If any stage of testing shows that this action was not a good idea, at least hazel still has the file! It's a simple matter of returning the file to its original location (and reboot, if needed), to get the system back to a semi-working state.

Don't delete anything until you're absolutely sure you don't need it.
Some here know hazel is a keyboard veteran from the dawn of computing and surely knows how to eliminate a file's action without painting herself into any corners. Your advice is excellent but I'm betting she knows that well. Also, a simple "upgradepkg --install-new" fpr PA should reinstall "/etc/asound.conf" since AFAIK the reason eliminating it's action works is because PA replaces it with one directing action to PA instead of ALSA.

Additionally, since Current and apparently the next full release will have both options, PA or Pure-ALSA, including scripts to enable either, the point will become a non-issue and provides at the very least a guide if not an actual example and script to switch from one to the other.
 
2 members found this post helpful.
Old 05-28-2019, 05:14 AM   #63
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Just a precision: asound.conf is shipped in the alsa-lib package in Slackware version 14.2.
 
Old 05-28-2019, 08:23 AM   #64
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Quote:
Originally Posted by enorbet View Post
Excuse me? I have said repeatedly that I understand what value PA has to some and even recommended in this thread and others that they use, or at least try it. I don't hate PA or at least what it tries to accomplish. I just hate that it is a hard dependency forcing those of us who find it a major penalty to be stuck with it and jumping through hoops to work with it or without it. I've chosen and been using Slackware just shy of 20 years exactly because Pat V has stated and lived by the directive of not assuming use case. I completely understand why he had to submit when Bluetooth required it and I applaud him for providing a way out when that dependency ceased.

I'm completely comfortable with those who prefer PA. Why are some apparently uncomfortable with those like me who are not? It's all about Freedom and Liberty for ALL, right?
I have no idea what you are talking about, I removed pulseaudio from my system the day it was added to current.
 
1 members found this post helpful.
Old 05-28-2019, 09:54 AM   #65
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,572

Original Poster
Blog Entries: 19

Rep: Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452Reputation: 4452
Quote:
Originally Posted by gus3 View Post
I've seen lots of discussion about fixing the sound on hazel's computer. Granted, the fix that worked was to remove /etc/asound.conf.

That advice was the wrong way to think about system administration.
I didn't see where anyone suggested hazel keep a copy of /etc/asound.conf.

The simplest, safest approach is to move said file into a user-home directory, e.g.
Code:
# mv /etc/asound.conf ~hazel/
You'll laugh! That's precisely what I did, except that I stored the backup in /root. Storing a thing like that in $HOME isn't safe, because after a few weeks, you think "what's that doing there?" and delete it. Remember I'm old and my memory isn't what it once was. Anything stored in root's home is clearly important and worth keeping.

In fact I never just delete system config files. I always copy them to root first. And if I edit a system file, I make a copy of the original with a .orig suffix. Belt and braces.
 
2 members found this post helpful.
Old 05-28-2019, 10:34 AM   #66
ZhaoLin1457
Senior Member
 
Registered: Jan 2018
Posts: 1,022

Rep: Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208
Quote:
Originally Posted by enorbet View Post
Excuse me? I have said repeatedly that I understand what value PA has to some and even recommended in this thread and others that they use, or at least try it.
Some?

Probably is better to say "almost all" Slackware users.

I do not believe that in the wild are more than few music creators who uses Slackware, like you do.

And I believe that even you do not believe on those stories, otherwise you haven't feel the need to abuse the word "audiophile" which by excellence describe the educated listeners, but not also the music creators.

https://en.wikipedia.org/wiki/Audiophile

Quote:
An audiophile is a person who is enthusiastic about high-fidelity sound reproduction.
Please note the words "sound reproduction" which are on exactly other side of the chain starting with "music production"

And please, please do not argument with whatever present or past poll from this forum, because I believe that those who use Slackware are in a substantially much higher number than those around 100 who usually vote here polls.

Only myself I know personally over 30 Slackware users of various knowledge levels, and no one of them posted here, at least until now.

Please take no offense, I have all respect for the music creators, as I have broken The Great Firewall firstly to grab new Eminem songs, but you are really few, we we are really many.

Last edited by ZhaoLin1457; 05-28-2019 at 02:13 PM.
 
2 members found this post helpful.
Old 05-28-2019, 06:39 PM   #67
ttk
Senior Member
 
Registered: May 2012
Location: Sebastopol, CA
Distribution: Slackware64
Posts: 1,038
Blog Entries: 27

Rep: Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484
Quote:
Originally Posted by hazel View Post
Belt and braces.
:-) Love it! Over here the phrase is "belt and suspenders", and my wife made me promise to stop saying it. Guess I was using it too frequently.
 
Old 05-28-2019, 08:14 PM   #68
gus3
Member
 
Registered: Jun 2014
Distribution: Slackware
Posts: 490

Rep: Reputation: Disabled
Okay, point taken re: hazel, but I'm also concerned that someone might come here from a web search, a neophyte who might not grasp the implications of a command.

I'll slither back into my corner now.
 
Old 05-28-2019, 08:45 PM   #69
ChuangTzu
Senior Member
 
Registered: May 2015
Location: Where ever needed
Distribution: Slackware/Salix while testing others
Posts: 1,718

Rep: Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857
Then the neophyte will learn to RTFM (or thread) in full and not just copy/paste commands.
 
1 members found this post helpful.
Old 05-28-2019, 10:15 PM   #70
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
Quote:
Originally Posted by ttk View Post
:-) Love it! Over here the phrase is "belt and suspenders", and my wife made me promise to stop saying it. [..]
No wonder. The proper phrase is "suspenders and belt".
 
Old 05-29-2019, 03:28 AM   #71
Lysander666
Senior Member
 
Registered: Apr 2017
Location: The Underearth
Distribution: Ubuntu, Debian, Slackware
Posts: 2,178
Blog Entries: 6

Rep: Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470Reputation: 2470
Quote:
Originally Posted by Richard Cranium View Post
No wonder. The proper phrase is "suspenders and belt".
Has this got anything to do with suspender belts? I have no idea what's going on in this topic anymore.
 
Old 05-29-2019, 04:43 AM   #72
Fat_Elvis
Member
 
Registered: Oct 2016
Distribution: FreeDOS 1.2
Posts: 309

Rep: Reputation: 92
Quote:
Originally Posted by enorbet View Post
I expect soon I will need to bite the bullet and go to something from RME similar to what is shown in the following linked video.
Just so you know: RME USB interfaces, in class compliant mode, do not have full input monitoring capabilities. If you need real time monitoring for recording, it works in a way, but hard panned to either the left or the right channel.
 
Old 05-29-2019, 06:49 AM   #73
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
Quote:
Originally Posted by orbea View Post
I have no idea what you are talking about, I removed pulseaudio from my system the day it was added to current.
Although I have a few test partitions and one of them has Slackware Current on it (for which I totally agree) my main is a mildly modified 14.2 Multilib. I can't use Current as a Work platform, or at least don't choose to. That requires a fixed full release.
 
Old 05-29-2019, 07:07 AM   #74
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
ZhaoLin1457. Regarding your post #66 about the percentage of Slackware users who for whatever reason prefer to not run PA (and there are quite a few posts of those here) I have to ask, "So what? Why rule out anyone if it is not required to do so?"

I think my point still stands that PA unnecessarily tried to coerce it's use and preyed on convenience to make it so, somewhat in opposition to the philosophy of Slackware. A bit of evidence supporting that concept is Pat Vs decision to produce an alternative as soon as the Bluetooth stranglehold was removed.

Just for fun.....

Quote:
Originally Posted by Eminem
They say music can alter moods and talk to you
Well can it load a gun up for you, and cock it too?
Well if it can, then the next time you assault a dude
Just tell the judge it was my fault and I'll get sued
 
2 members found this post helpful.
Old 05-29-2019, 07:10 AM   #75
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
Quote:
Originally Posted by Didier Spaier View Post
Just a precision: asound.conf is shipped in the alsa-lib package in Slackware version 14.2.
Thanks. I wasn't certain since all I know is default install of 14.2 has PA replacing lines in asound.conf and didn't know if it overwrote with it's own version or just "sed" it
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
A little disappointed, has anyone built the SVN version of LFS? z3r0.0v3rrid3 Linux From Scratch 5 06-29-2007 06:28 AM
Kinda disappointed in my New Monitor experience... tcv Linux - Newbie 3 01-08-2005 11:34 PM
Disappointed in Distro's UltimaGuy General 24 01-24-2004 07:46 PM
Confused-Lost-disappointed!! maestro52 Linux - Hardware 7 11-30-2003 12:43 PM
Disappointed Newbie wants Help! emmanuelmathew Linux - Newbie 1 03-26-2003 11:31 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:30 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration