LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-07-2010, 04:09 PM   #106
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled

Yes, that's it. But I can't see what's wrong. No idea about any solution.
 
Old 12-07-2010, 04:19 PM   #107
hexeta
Member
 
Registered: Dec 2010
Location: Northwest UK
Distribution: Currently; Mint 9 Lxde
Posts: 89

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by brianL View Post
Yes, that's it. But I can't see what's wrong. No idea about any solution.
Well what ever has altered, it has now denied access to the sound card.
do I have to do a re-install to get back to the point where I did have an occasional, sporadic connection to it?
 
Old 12-07-2010, 05:11 PM   #108
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
No, re-installation wouldn't solve anything. Might need even more drastic action: possibly choosing another distro, one that's more tolerant of old hardware.
 
Old 12-08-2010, 06:39 AM   #109
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
Do a search here for "distros for old computers?", it is a question that crops up regularly.
 
Old 12-08-2010, 07:30 AM   #110
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
You could try updating alsa to the latest release and see if that helps.

http://monespaceperso.org/blog-en/20...id-lynx-10-04/

I would make one change to the above. Install checkinstall and use that in place of make install.

Code:
sudo apt-get install checkinstall
And then replace each instance of make install with checkinstall, ie, if it says
Code:
./configure
make
sudo make install
do instead
Code:
./configure
make
sudo checkinstall
EDIT: Also for some reason they have you running ./configure and make with "sudo". Do not do that. You should configure and compile it as your user and just install with sudo.

Last edited by reed9; 12-08-2010 at 07:32 AM.
 
Old 12-08-2010, 07:38 AM   #111
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
Actually, those instructions kind of suck. Don't make a directory in /usr/src either.

Instead of this (everything before this section still do)
Code:
cd ~
rm -rf ~/alsa* ~/.pulse*
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.23.tar.bz2
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.23.tar.bz2
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.23.tar.bz2
Do
Code:
rm -rf ~/.pulse
mkdir ~/alsa-build
cd ~/alsa-build
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.23.tar.bz2
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.23.tar.bz2
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.23.tar.bz2
tar xjf alsa-driver*
tar xjf alsa-lib*
tar xjf alsa-utils*
cd alsa-driver*
./configure
make
sudo checkinstall
cd ../alsa-lib*
./configure
make
sudo checkinstall
cd ../alsa-utils*
./configure
make
sudo checkinstall
 
Old 12-08-2010, 07:43 AM   #112
hexeta
Member
 
Registered: Dec 2010
Location: Northwest UK
Distribution: Currently; Mint 9 Lxde
Posts: 89

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by brianL View Post
Do a search here for "distros for old computers?", it is a question that crops up regularly.
Hi Brian, I'm beginning to think that my forray into "Linux Land" is reaching it's end!
I don't really have the skills to manage one of the distros that doesn't just "work" out of the box!
I've tried AntiX, but it put me in mind of Kruschev's USSR.......spartan shall we say, not to mention depressing!

I was aware quite early on that I had been poorly advised to try Mint 9 LXDE on this machine, but if I could just get the sound to work again, and find the key to making it survive a re-boot, I would be happy with it on this machine, even though it's as slow as XP Pro was, it's so close to being useable!

For the winter nights, I harvest PC bits using Freecycle and then try to make useable PC's from them to give away.
They are usually P2 or P3 CPU's and generally have 256MB of RAM, but they easily cope with a bit of surfing and emailing far flung friends and family, which is all that the folks I give them to are wanting.
I sometimes cannot find any serial number to get a "valid" install of XP, so I wondered if Mint 9 Lxde would suit these machines?
(I have enough bits for about 7 machines in my garage at the moment, but lasck enough HDD's and DDR to make many!)

Besides "The Beast in the Corner", which I'm using now, I have an old Lappy (not as old as the Thinkpad) about 2003/4, it's a Clevo D22ES which runs a desktop Celeron 2GHz CPU and has 1GB RAM of which 32MB is assigned to Video.
When I got it, I put in a new 120GB HDD and did a clean install of XP Home.
I'd really like to dual boot it with a Linux Distro, what would you recommend?
 
Old 12-08-2010, 07:52 AM   #113
hexeta
Member
 
Registered: Dec 2010
Location: Northwest UK
Distribution: Currently; Mint 9 Lxde
Posts: 89

Original Poster
Rep: Reputation: 0
reed9:
Oooh! you've totally lost me here!
Are you saying ignore your post#110 and follow #111 ?
Or ignore some of the instruction in your link?
I'm really out of my depth here!
 
Old 12-08-2010, 08:01 AM   #114
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
Vector Linux might work on your old Thinkpad.
As far as choosing a distro goes, I usually say: try a few. Do a bit of distrohopping 'til you find one that suits you.
 
Old 12-08-2010, 08:13 AM   #115
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
Quote:
Originally Posted by hexeta View Post
reed9:
Oooh! you've totally lost me here!
Are you saying ignore your post#110 and follow #111 ?
Or ignore some of the instruction in your link?
I'm really out of my depth here!
Sorry, complete instructions as so
Code:
sudo apt-get install build-essential ncurses-dev gettext xmlto libasound2-dev linux-headers-`uname -r` libncursesw5-dev checkinstall
rm -rf ~/.pulse
mkdir ~/alsa-build
cd ~/alsa-build
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.23.tar.bz2
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.23.tar.bz2
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.23.tar.bz2
tar xjf alsa-driver*
tar xjf alsa-lib*
tar xjf alsa-utils*
cd alsa-driver*
./configure
make
sudo checkinstall
cd ../alsa-lib*
./configure
make
sudo checkinstall
cd ../alsa-utils*
./configure
make
sudo checkinstall
Reboot.

Now run
Code:
sudo alsaconf
Linux Mint is generally good for new users and the LXDE version for older computers. Assuming of course, things don't go wrong. Sound, unfortunately, is often one of the more difficult issues to troubleshoot.
 
Old 12-08-2010, 08:13 AM   #116
hexeta
Member
 
Registered: Dec 2010
Location: Northwest UK
Distribution: Currently; Mint 9 Lxde
Posts: 89

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by brianL View Post
Vector Linux might work on your old Thinkpad.
As far as choosing a distro goes, I usually say: try a few. Do a bit of distrohopping 'til you find one that suits you.
Thanks brian, I'll keep that recommendation in reserve though I have no way of evaluating the 5 flavours on offer, but presume my choice should be between "VL6 LiteLive" and "VL6 Lite".

Still hoping to master Mint, and reed9 seems to have a plan...as Baldrick would say!
 
Old 12-08-2010, 08:23 AM   #117
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
I think Mint should be OK for some of those you are recycling.
You might be underestimating yourself when you say you "don't really have the skills to manage one of the distros that doesn't just "work" out of the box" or you're "out of your depth".
 
Old 12-08-2010, 09:19 AM   #118
reed9
Member
 
Registered: Jan 2009
Location: Boston, MA
Distribution: Arch Linux
Posts: 653

Rep: Reputation: 142Reputation: 142
Quote:
Originally Posted by hexeta View Post
Thanks brian, I'll keep that recommendation in reserve though I have no way of evaluating the 5 flavours on offer, but presume my choice should be between "VL6 LiteLive" and "VL6 Lite".

Still hoping to master Mint, and reed9 seems to have a plan...as Baldrick would say!
A plan so cunning you could brush your teeth with it.
 
Old 12-08-2010, 09:21 AM   #119
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
If nothing else, you have learned more about Linux in this thread than a lot of people learn in a year. Best of luck, sorry I wasn't more helpful!
 
Old 12-08-2010, 10:11 AM   #120
hexeta
Member
 
Registered: Dec 2010
Location: Northwest UK
Distribution: Currently; Mint 9 Lxde
Posts: 89

Original Poster
Rep: Reputation: 0
Thanks for catering for my simple brain reed9 much appreciated.
Since I'm still on "The Beast in The Corner", I can't try it just yet but I will this evening and let you know how it goes!
I have to go out into the arctic weather late this afternoon (the worst time) so I've had to give my car a bit of CPR!
My fingers are still numb!
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
No Sound on ThinkPad T22 Running Ubuntu 10.04 s giustizia Ubuntu 3 09-11-2010 02:02 AM
not sound on toshiba laptop running linux MINT kszabo Linux - Hardware 0 08-19-2009 02:06 PM
Sound Problem on Older Computer Running Linux Mint j1nxy06 Linux - Newbie 0 02-22-2009 11:02 AM
IBM ThinkPad, the sound works on boot, but then stops. larwana Linux - Laptop and Netbook 0 03-16-2004 12:36 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:13 PM.

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