LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-14-2004, 07:02 PM   #1
SelaAragon
Member
 
Registered: Mar 2004
Location: Cary, NC
Distribution: Gentoo 1.4, Free BSD 5.2.1
Posts: 32

Rep: Reputation: 16
Unhappy Going Nuts


I cannot install my chipset drivers from intel because evidently Linux Doesn't seem to like the simple .exe way of doing things. I downloaded the Linux Drivers from intel's site and it opens the file but I have no clue what to do with it. Also my sound isnt working and I cannot pull the drivers for it off of my Dell disk to even install those. I have 6 GB of files on another hard drive that I cannot access either despite installing the NTFS driver. I really don't want to switch back to Windows but this is getting frustrating when I cannot even get Linux to perform simple tasks such as moving files from one disk to another or even playing my DVD's or CD's.

Linux has reduced my 75k$ machine to a simple port scanner. NMap at least does work. :-)

Last edited by SelaAragon; 03-14-2004 at 07:04 PM.
 
Old 03-14-2004, 07:11 PM   #2
Komakino
Senior Member
 
Registered: Feb 2004
Location: Somerset, England
Distribution: Slackware 10.2, Slackware 10.0, Ubuntu 9.10
Posts: 1,938

Rep: Reputation: 55
Have you mounted the other disk that you want to access? If not, first create a directory on which to mount it (for example /c) then, assuming it is a windows ntfs disk) do:
Code:
mount -t ntfs /dev/hda1 /c
That assumes the windows disk is your primary master. Play with the /dev/hda1 part of it until it works...try different numbers and letters for the a and 1 at the end of /dev/hda1. hda1 refers to the primary partition on your primary master disk.
 
Old 03-14-2004, 07:30 PM   #3
SelaAragon
Member
 
Registered: Mar 2004
Location: Cary, NC
Distribution: Gentoo 1.4, Free BSD 5.2.1
Posts: 32

Original Poster
Rep: Reputation: 16
I would but I am totally new to Linux...Thats the problem. I don't even know how to pull up a shell to execute commands :-(
 
Old 03-14-2004, 07:57 PM   #4
SelaAragon
Member
 
Registered: Mar 2004
Location: Cary, NC
Distribution: Gentoo 1.4, Free BSD 5.2.1
Posts: 32

Original Poster
Rep: Reputation: 16
Another issue is how do I even create the directory to begin with?
I am looking for some FAQ's. Maybe they will help.
 
Old 03-14-2004, 08:42 PM   #5
Cerbere
Member
 
Registered: Dec 2002
Location: California
Distribution: Slackware & LFS
Posts: 799

Rep: Reputation: 33
You might want to read some of the How-To's at the Linux Documentation Project. And also get the Rute User's Tutorial and Exposition.

Enjoy!
--- Cerbere
 
Old 03-14-2004, 09:25 PM   #6
SelaAragon
Member
 
Registered: Mar 2004
Location: Cary, NC
Distribution: Gentoo 1.4, Free BSD 5.2.1
Posts: 32

Original Poster
Rep: Reputation: 16
OK. I've gotten this far. I have edited /etc/ftab to include the drive as follows:

LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/hda3 swap swap defaults 0 0
/dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0
/dev/hdb1 /mnt/hdb1 ntfs sw 0 0



Note: The drive is a secondary master.

I created a directory to mount it to: mkdir /mnt/hdb1


now I try to mount it like:

mount -t ntfs /dev/hdb1 /c and all i am getting is "mount point /c does not exist.

Now I am thinking I should have placed the name of my new directory there instead so I tried:

mount -t ntfs/dev/hdb1 /hdb1

and I get the same error. :-( Help please :-)

Last edited by SelaAragon; 03-14-2004 at 09:41 PM.
 
Old 03-14-2004, 10:10 PM   #7
SelaAragon
Member
 
Registered: Mar 2004
Location: Cary, NC
Distribution: Gentoo 1.4, Free BSD 5.2.1
Posts: 32

Original Poster
Rep: Reputation: 16
OK heres what I am getting. "File Type NTFS Not supported by kernel".
Hmm I have installed the NTFS Driver so I am at a loss. Can someone please tell me where I can find the exact version number of my kernel so I can be sure I have installed the proper driver? Also I am running Quad processors and I need to know how to update to the correct kernel for that as well. Thanks
 
Old 03-14-2004, 10:20 PM   #8
TheOneAndOnlySM
Member
 
Registered: Jul 2003
Location: Dallas, TX
Distribution: Ubuntu 10.04 LTS
Posts: 987

Rep: Reputation: 30
well, the best thing for you to do is to do a bit of reading so you understand how a gnu/linux os handles business (not that it is difficult, but the fact that it is different from windows often makes it seem hard)

for example, you do not necessarily install binaries (such as rpms) by double-clicking, but by simply going into a terminal and issuing
rpm -Uvh name.rpm

anyway, to the point: to open a place to type commands, you need to open a console
in redhat, you can open a gui console called a terminal from the redhat system menu or by right clicking the desktop and clicking "new terminal"

from there, you can learn the concept of basic commands like mkdir, cd, dir, ls, etc.

to mount your ntfs partition, first ensure that you have your ntfs module loaded; do lsmod in the terminal and ensure that ntfs is listed

now, make sure you are mounting the correct partition; do
su (enter root password)
fdisk -l

and find the /dev/hdx# for the ntfs partition

now, still logged in as su, do
mkdir /mnt/windows (this is where the filesystem for ntfs will be "mounted" and it will act as a "gate" for you to view your files)
mount -t ntfs /dev/hdx# /mnt/windows

now you can use your terminal and do
cd /mnt/windows (cd is the change directory command)
dir (or ls)

this will allow you to view your files

to make an fstab entry to do all this automatically, do (as su)
gedit /etc/fstab

and add this line
/dev/hdx# /mnt/windows ntfs auto,user,umask=000 0 0

the umask command will allow you to view your files as a normal user using your gui file manager (nautilus)
 
Old 03-14-2004, 10:24 PM   #9
TheOneAndOnlySM
Member
 
Registered: Jul 2003
Location: Dallas, TX
Distribution: Ubuntu 10.04 LTS
Posts: 987

Rep: Reputation: 30
*excuse the double-post

in response to the latest question:
do uname -r

this will tell you your exact kernel version

http://linux-ntfs.sourceforge.net/rpm/redhat9.html
go here and download the rpm for that version; save it in your home directory to make it easily accessible

in a terminal, do
su
rpm -Uvh packagename.rpm

get familiar with tabbed autocompletion; type the first few letters of the file, then hit TAB to automatically type the rest of the filename (very useful for files that are long and have lots of numbers in them)

then just do modprobe ntfs

that is my short version, and i may have taken some things for granted; check the more complete install instructions if you need more help
http://linux-ntfs.sourceforge.net/rp...s.html#install
 
Old 03-14-2004, 10:42 PM   #10
SelaAragon
Member
 
Registered: Mar 2004
Location: Cary, NC
Distribution: Gentoo 1.4, Free BSD 5.2.1
Posts: 32

Original Poster
Rep: Reputation: 16
Thanks I am off to try it now. Perhaps with a little time this won't seem so bad. I am just so sick of microsoft that I HAD to switch no matter the hassles involved.
 
Old 03-14-2004, 10:51 PM   #11
SelaAragon
Member
 
Registered: Mar 2004
Location: Cary, NC
Distribution: Gentoo 1.4, Free BSD 5.2.1
Posts: 32

Original Poster
Rep: Reputation: 16
OK I have my files :-). I want to thank all you guys for the help today. I know I will be happy with Linux after I get out of this "Windows" mode of thinking. I will be reading FAQ's and learning what I can in these forums in the meantime. Thanks a MILLION!!



Last edited by SelaAragon; 03-14-2004 at 11:27 PM.
 
  


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
Mouse going nuts on me! Quade Linux - Newbie 7 11-20-2004 08:55 AM
harddrive going nuts siphi Linux - Newbie 1 03-16-2004 06:51 PM
driving me nuts!!! ihatebillgates Linux - Newbie 6 12-12-2003 07:03 AM
I'm going nuts! phonecian Red Hat 3 08-29-2003 09:03 PM
Please help me!!! I'm going nuts!!!!! mguzman Linux - Newbie 2 03-30-2002 01:16 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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