LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
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 08-17-2005, 12:56 AM   #1
justanothersteve
Member
 
Registered: Aug 2005
Location: Missouri, USA
Distribution: Gentoo
Posts: 161

Rep: Reputation: 30
Newbie here...my experiance thus far and a few ?


Hi, I had played with linux a bit over year ago (RH, Mandrake, Debian) for nothing more than to learn something new. I really enjoyed the control I had over my computer (for better and worse lol). But I gave it up because I was big on some pretty heavy games that could only be played on w1ndow$. From my previous experiance, the only thing linux couldn't offer me was the ability to play my games. Now that I'm running two desktops and a laptop, I decided to 'penguinfy' my laptop. The next section is my specs, the second section my brief experiance, and the last section is my questions.

### My Laptop Specs ###
HP Pavilion ze4900
Celeron M 1.3
256Mb Ram
-----lspci-----
00:00.0 Host bridge: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
00:00.1 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
00:00.3 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to I/O Controller (rev 02)
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
00:02.1 Display controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 83)
00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC Interface Bridge (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801DBM (ICH4-M) IDE Controller (rev 03)
00:1f.3 SMBus: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 03)
00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03)
00:1f.6 Modem: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 03)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
02:05.0 CardBus bridge: Texas Instruments PCI1410 PC card Cardbus Controller (rev 02)
02:06.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller (rev 03)
#######

### My Experiance ###
I faced the normal newbie fear of "which distro". Since I have tried linux before my only concern was simply "Which distro is best for my laptop". I read many forums, articles, complaints, praises, etc... I downloaded a Knoppix LiveCD to test my laptop (no complaints) and I finally decided on Fedora C4 because I was able to get all 5 discs with one torrent. The installation went smoothly. The timer list 35 mins for about 45 mins, but it installed with no real headaches (interruption-wise). So I'm now running linux on my laptop and I have only a few concerns.....
#######

### My Questions ###

1. I connect to the internet through a home network using a WAP and my laptop's integrated wireless. I have successfully gotten my wireless connection to work but my only concern is that everytime I reboot I have to type 'modprobe ndiswrapper' then 'dhclient wlan0' in terminal in order to access the internet. How can I have those commands automated upon startup so I don't have to type them everytime my laptop comes up.

2. I can't get my sound to work. I've read topics on this issue but I can't seem to get any solution to work. In Gnome, when I click the "Test" button, it freezes and I have to Xkill the window. I tried to blacklist snd_intel8x0m but it didn't help. Any help would be appreciated.

3. This REALLY ticks me off....I'm using a touchpad and it keeps taking me back a few pages in firefox. I can't move my mouse without going back about 8 pages. simply aggravating. I figure its a type of mouse-shortcut but I searched and can't find how to stop it from doing this.

####

Thanks for reading and thanks for any help you may be able to offer
 
Old 08-17-2005, 01:20 AM   #2
ksgill
Senior Member
 
Registered: Apr 2003
Location: Toronto, Canada
Distribution: Ubuntu Jaunty (9.04)
Posts: 1,044

Rep: Reputation: 45
1) Put all those commands in one file like this:
modprobe ndiswrapper
dhclient wlan0
....and so on

Make that file executable like this: chmod +x wireless.sh (or whatever the name of the file is). You can manually run that file when you log in or add it to your startup execution path (/etc/rc.d/rc.local).. I think.

2) What happens when you try "alsamixer" command as root.. does it detect a soundcard? I had an AC97' soundcard in one of my machines.. and Ubuntu picked it up perfectly.. download that distro and install it if you cant fix that.

3) Not sure what you mean there.. please rephrase that.

Good Luck

Last edited by ksgill; 08-17-2005 at 01:22 AM.
 
Old 08-17-2005, 02:01 AM   #3
andygo
Member
 
Registered: May 2005
Location: Ukraine, Kiev
Distribution: SLES, Raspbian, Ubuntu-Mate, LineageOS
Posts: 114

Rep: Reputation: 15
answer N2
lspci -v | grep AUDIO # tells which driver your card uses bu default
grep sound-slot /etc/modules.conf # tells which driver is used NOW
/sbin/lsmod # check if THE driver loaded
chkconfig --list sound &
chkconfig --list alsa #tells a few thing about alsa
aumix -q #checks if the sound ON
fuser -v /dev/dsp # tells which programme USES your sound card
N1
there are many ways to ran progs automatically
whith RedHat-like distros you can write a script with your commands and put it in /etc/rc.d/init.d/your_script
and then
ln -s /etc/init.d/your_script /etc/rc.d/rc5.d/S99your_script
(hope your def.run.level is 5
N3 - sorry no answer yet - I've never used a touchpad
 
  


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
security newbie, but not Linux newbie. advice on secure delete tools mattie_linux Linux - Security 19 08-15-2005 01:50 AM
Anyone have any experiance connecting Dell Axim X30 w/ Debian? microsoft/linux Linux - Laptop and Netbook 1 05-12-2005 09:19 AM
Linux semi-newbie and Wine vary newbie geovolt_os1 Linux - Software 4 04-19-2005 11:03 AM
newbie;I am a linux newbie who has installed slackware and have run into a few proble MollyJolly Slackware - Installation 6 06-01-2004 11:21 AM
Any1 Help A Totaly Newbie With No Linux Experiance Wot So Ever! bradsickskater Linux - Newbie 4 12-31-2002 02:09 AM

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

All times are GMT -5. The time now is 10:43 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