Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Jan 21st, 2006, 6:00 AM   #81
coldDeath
Expert Programmer
 
coldDeath's Avatar
 
Join Date: Aug 2005
Location: UK
Posts: 862
Rep Power: 3 coldDeath is on a distinguished road
Send a message via AIM to coldDeath Send a message via Yahoo to coldDeath
Ok thats no problem, firstly you can list you hard drives and see what their names are using this:

 fdisk -l

Cfdisk is just a menu version of fdisk, and the -l option means "list".

You'll be able to see any hard drives that you have from that list. Look through and find the one that you want to install onto.

Then run this:
cfdisk /dev/hd[letter]
Where you change [letter] to the letter fo your harddrive, for example /dev/hda.

Tell me how it goes :-)
__________________
Join us at #programmingforums @ irc.freenode.net!

My software never has bugs. It just develops random features.
coldDeath is offline   Reply With Quote
Old Jan 21st, 2006, 12:01 PM   #82
darkone916
Hobbyist Programmer
 
darkone916's Avatar
 
Join Date: Jul 2005
Location: Oman
Posts: 125
Rep Power: 3 darkone916 is on a distinguished road
Send a message via MSN to darkone916
Thanks colddeath, that worked for me...
I finally istalled slack... by the way... thank you for the tutorial
__________________
From the bottom of the stone steps...
...i'm calling still.
darkone916 is offline   Reply With Quote
Old Jan 21st, 2006, 1:25 PM   #83
coldDeath
Expert Programmer
 
coldDeath's Avatar
 
Join Date: Aug 2005
Location: UK
Posts: 862
Rep Power: 3 coldDeath is on a distinguished road
Send a message via AIM to coldDeath Send a message via Yahoo to coldDeath
Awesome! :-D
__________________
Join us at #programmingforums @ irc.freenode.net!

My software never has bugs. It just develops random features.
coldDeath is offline   Reply With Quote
Old Jan 22nd, 2006, 12:00 PM   #84
darkone916
Hobbyist Programmer
 
darkone916's Avatar
 
Join Date: Jul 2005
Location: Oman
Posts: 125
Rep Power: 3 darkone916 is on a distinguished road
Send a message via MSN to darkone916
I installed Slack and i really like it.(Thanks colddeath)
Anyway, i have a wireless 3com usb device (3crusb 10075), so i downloaded the Linux driver from their website (linux_3CRUSB10075_drv_1_2_0_0[1].tar.gz). I decompress it and found that it was C source files. I tried to compile them, but i get errors and stuff, can someone please explain to me how to get around this? Cause if i can't get it to work i will be forced to leave Linux because i can't use the internet (which is very annoying)...

Thank you, and sorry if i'm asking for too much. :o
__________________
From the bottom of the stone steps...
...i'm calling still.
darkone916 is offline   Reply With Quote
Old Jan 22nd, 2006, 12:20 PM   #85
InfoGeek
Professional Programmer
 
InfoGeek's Avatar
 
Join Date: Jun 2005
Location: India, The great.
Posts: 435
Rep Power: 3 InfoGeek is on a distinguished road
Most of the Open Source software that require you to compile from source have a configuration script and a makefile. The configuration script is used to detect libraries and compilers etc. and the makefile is used to compile the source files. I've not used the said driver but i think it uses similar process. If yes, then do the following:

1) Open a terminal window.
2) switch to root user(using the su command).
3) change to the directory where you unzipped the files.
4) type ./configure.
5) type make.
6) follow the on screen instructions(if any).

HTH.
__________________
PFO - My daily dose of technology.
InfoGeek is offline   Reply With Quote
Old Jan 22nd, 2006, 1:01 PM   #86
coldDeath
Expert Programmer
 
coldDeath's Avatar
 
Join Date: Aug 2005
Location: UK
Posts: 862
Rep Power: 3 coldDeath is on a distinguished road
Send a message via AIM to coldDeath Send a message via Yahoo to coldDeath
Yup what he said.

su - ~get root access
cd path/to/download ~go into folder where it is
tar zxvf linux_3CRUSB10075_drv_1_2_0_0[1].tar.gz ~untar it
cd linux_3CRUSB10075_drv_1_2_0_0[1] ~go into the new folder
./configure ~configure the makefile for your PC
make ~compiel the source
make install ~install it
exit ~logout from root
__________________
Join us at #programmingforums @ irc.freenode.net!

My software never has bugs. It just develops random features.
coldDeath is offline   Reply With Quote
Old Jan 22nd, 2006, 1:28 PM   #87
darkone916
Hobbyist Programmer
 
darkone916's Avatar
 
Join Date: Jul 2005
Location: Oman
Posts: 125
Rep Power: 3 darkone916 is on a distinguished road
Send a message via MSN to darkone916
I dunno... but when i type "./configure" it just says:"Command not found". So i just skipped to "make", it looks as if its compiling, but then i get an error...
__________________
From the bottom of the stone steps...
...i'm calling still.
darkone916 is offline   Reply With Quote
Old Jan 23rd, 2006, 5:03 PM   #88
teencoder
Hobbyist Programmer
 
teencoder's Avatar
 
Join Date: Jul 2005
Posts: 158
Rep Power: 0 teencoder is an unknown quantity at this point
I have a problem with sound. When I enter alsaconfig it tells me command not found.
__________________
Geeks may not be cool now but in the long run they prosper.
teencoder is offline   Reply With Quote
Old Jan 24th, 2006, 1:11 AM   #89
darkone916
Hobbyist Programmer
 
darkone916's Avatar
 
Join Date: Jul 2005
Location: Oman
Posts: 125
Rep Power: 3 darkone916 is on a distinguished road
Send a message via MSN to darkone916
I got the same problem too.
What you should do is just type: "alsamixer",
set the volume (press 'm' to un-mute).

I have another problem with sound, my mp3 sounds really bad. I just here the background music but i don't here the words... how can i get around this?
__________________
From the bottom of the stone steps...
...i'm calling still.
darkone916 is offline   Reply With Quote
Old Jan 24th, 2006, 1:28 AM   #90
coldDeath
Expert Programmer
 
coldDeath's Avatar
 
Join Date: Aug 2005
Location: UK
Posts: 862
Rep Power: 3 coldDeath is on a distinguished road
Send a message via AIM to coldDeath Send a message via Yahoo to coldDeath
I think you've changed something on alsamixer, try changing the "balance" slider to the far left or right.

You have to run alsaconfig as root by using the command "su -".
__________________
Join us at #programmingforums @ irc.freenode.net!

My software never has bugs. It just develops random features.
coldDeath is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 6:10 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC