Skip to main content

View Full Version : Gateway Laptop Intel 8280 chipset no sound


racin
January 7th, 2006, 05:37 PM
Hi Guys,
Well the wireless is fixed so now on to the sound issue. I have followed the sound problem wiki and I still don't have any sound. Both playback and recording have been set to alsa. PC speaker is activated and sound is turned all the way up. What should I check next? This is on a gateway laptop with on board sound, pentium 4 with the intel 8280 chipset.
Thanks for any help in advance!

stratotak
January 7th, 2006, 06:23 PM
im assuming that the fact you read wiki sound ..you have correct modules for sound loading..tha you have choosen alsa as sound preferences under prefernce??when you click to test dose it work??if all that seems to check out then i would move on to the mixer part..possibly something is muted or turned down low..like pcm sound..i use gnome-aslasmixer to adjust my sound card settings..have you tried that??

racin
January 7th, 2006, 06:52 PM
Yes preferences are correct. They are both set to alsa. In mixer there is a IEC958 P that will not close. I'm thinking this is where the problem lies but I don't know how to force it closed. Thanks for the help.

racin
January 7th, 2006, 06:56 PM
When I test the alsa preference settings I don't hear any sound.

racin
January 8th, 2006, 09:18 AM
Sweet!! It's fixed! Although the actions to fix it are very bizzarre. I went through the sound problem tutorials and did just about everything in them. Still no sound. Then I read stratotak's reply above and thought I would give it one more look! Thanks for your time stratotak! So in alsamixer prefs I turned on external amp for whatever reason I don't know but I did that anyhow. I then backed out to the mixer control settings and using keyboard m turned off the external amp and when I did the computer made noise! It scared me I was like huh??? What the?? And then I figured it out! Holy Cow I got sound! Yahoo!:razz:

pakux
January 8th, 2006, 11:29 PM
YYYYYYYEEEEEEEEESSSSSSSSSS !!!!!!!! :cool:

wow, it took a lot but finally you show me the way... thanks a lot, i've tried everything but the "external amp" tip was the winner (by the way, did anybody figure out why is this active by default?)

again, thank you all very much.

racin
January 9th, 2006, 09:29 PM
Wow! That is crazy wierd that the same procedure worked for you! I thought the external amp thing was a fluke! Oh well glad I was able to help! Enjoy your new found sound!:eek:

Comments

Popular posts from this blog

Sqlite database is locked

sqlite는 embedded system에서 널리 사용되는 무료 dbms?(dbms라고 말하긴 좀 그렇지만, dbms라 불러주자 ㅎ) 이다. 특히 memory db 기능이 아주 유용하다. 그 밖의 dbms에서도 이 기능이 있으나, 이 기능이 지원되는 버전은 대부분 고가이다. 따라서, 무료인 sqlite를 많이들 애용하는 것 같다. 멀티쓰레드를 sqlite DB를 구현하고 롱런테스트를 하다보면, pthread_mutex_lock으로 쓰레드 간의 교착상태를 막아줘도, sqlite lock 에러가 간헐적으로 발생할 것이다. 이에 대해 본인은 다음과 같은 에러 처리 구문을 준비하여 사용하고 있다. sqlite Error가 발생하면, sqlite3_exception함수를 호출한다. 이 함수에서 sqlite error code를 구분하여, 만약, busy 또는 locked이면 최대 2초간 sleep 상태로 만드는 sqlite3_busy_timeout, busy handler를 호출한다. 그 다음, goto 구문으로 재차 sqlite3_exec를 실행한다. 단, sqlite3_exec는 transaction의 begin과 commit 또는 rollback 구문 사이에서 실행한다. 대부분 lock 에러가 발생하더라도 1~2번 실패 후에, 처리된다는 것이 본인의 테스트 결과이다. 단, journal를 WAL로 변경하였음. 기존 journal은 멀티쓰레드 지향적이지 않다는 점을 잊지마시길.... Error Code SQLITE_LOCKED (6): Database Is Locked This error code occurs when you try to do two incompatible things with a database at the same time from the same database connection. For example, if you are in the middle of a SELECT statement and y...

맥OS 사전에 사전 파일 추가하기

1. http://code.google.com/p/mac-dictionary-kit/에서 sdconv를 다운로드 받는다. 2. e4u 등과 같은 사전 파일(stardict 형식)을 다운받는다. 3. 사전 파일의 압축을 풀면, e4u.ifo, e4u.dict.dz, e4u.idx와 같은 파일이 보인다. 4. sdconv 디렉터리 내의 convert 실행 파일로 convert e4u.ifo를 실행한다. 5. 위 과정이 완료되면 아래와 같이 사전에 e4u가 추가된 점을 확인할 수 있다. 6. 순서를 조절하여 사용하면 된다.

nginx로 다중 포트 설정 및 다중 react app 설정

nginx에 다중 포트 설정하기 react로 여러 webapp를 개발하고, 동일한 서버에 실행시킬 필요가 있다. 이때 간단히 nginx에서 다중포트로 여러 webapp를 동일한 서버에서 실행시킬 수 있다. /etc/nginx/sites-available/에 default 파일이 있다. 보통 port 80로 설정되어 있다. 이 파일을 복사해서 sub로 명명한다.   아래와 같이 포트 8080으로 정하고, react app를 build한 디렉터리를 root <dir>로 지정하고, $> sudo service nginx restart 하면 된다. $>sudo systemctl status nginx.service 로 nginx 상태 확인이 가능하면, $> netstat -ano | grep 8080 으로 8080 포트가 살아있는 또는 외부PC에서  $>telnet ip 8080으로 telnet 접속이 되는지 확인하면 된다. 종종 Nginx 500 Interval Server Error가 발생하는데, 이는 1) root <dir>에서 <dir> 주소가 정확하지 않거나, 2) 파일 권한이 없거나이다. chmod 755 <dir>하면 대부분 해결될 것이다. 그럼 오늘도 유익한 하루 되시길..